Paramotopy
parallel parameter homotopy through bertini
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
point.hpp
Go to the documentation of this file.
1 //contains the point class
2 #include <vector>
3 #include <map>
4 #include <iostream>
5 #include <string>
6 #include <sstream>
7 #include <fstream>
8 #include <cmath>
9 #include <stdio.h>
10 #include <unistd.h>
11 #include <stdlib.h>
12 #include <errno.h>
13 #include <sys/wait.h>
14 #include <sys/stat.h>
15 #include <sys/types.h>
16 
17 
18 #include <boost/filesystem/operations.hpp>
19 #include <boost/filesystem/path.hpp>
20 #include <boost/progress.hpp>
21 #include <boost/regex.hpp>
22 
23 #ifndef __POINT_H__
24 #define __POINT_H__
25 
26 
32 class point {
33 
34 
35 
36 public:
38  point (){};
39 
40 
41  //data members
42 
44  long long index;
46  std::vector< std::pair<double,double> > parameter_values;
48  std::map< std::string, std::string > collected_data;
49 
50 
51  //functions
52 
54  bool operator<(const point & p2 ) const { return this->index < p2.index; }
55 
56 
57 private:
58 
59 };//re: class point
60 
61 
62 #endif
63 
64 
65 
66 
point()
Definition: point.hpp:38
bool operator<(const point &p2) const
Definition: point.hpp:54
Class containing parameter values, index, and collected data.
Definition: point.hpp:32
std::map< std::string, std::string > collected_data
Definition: point.hpp:48
std::vector< std::pair< double, double > > parameter_values
Definition: point.hpp:46
long long index
Definition: point.hpp:38