Minotaur 0.4.1
Docs for developers
Iterate.h
1//
2// Minotaur -- It's only 1/2 bull
3//
4// (C)opyright 2008 - 2025 The Minotaur Team.
5//
6
7#ifndef MINOTAURITERATE_H
8#define MINOTAURITERATE_H
9
10// This is an iterate the countains the status, activities, and
11// variable values for the primal variables and multipliers. What
12// about solvers or
13// engines that do not compute multipliers, such as derivative-free
14// optimization methods?
15
16#include <vector>
17
18#include "Types.h"
19
20namespace Minotaur {
21 class Iterate {
22 public:
23 Iterate(std::vector<double> &x, std::vector<double> &l);
24 ~Iterate() { };
25
26 private:
27 std::vector<double> x_;
28 std::vector<double> l_;
29 };
30}
31
32#endif
33
Declare important 'types' used in Minotaur.
Definition: Iterate.h:21
Definition: ActiveNodeStore.h:20

Minotaur source code documented by Doxygen 1.9.4 on Thu Apr 24 2025