Changeset 1273
- Timestamp:
- 02/11/11 16:56:44 (14 years ago)
- Location:
- applications/robust
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
applications/robust/robustlib.cpp
r1272 r1273 2 2 3 3 void polyhedron::triangulate(bool should_integrate) 4 { 4 { 5 5 if(should_integrate) 6 6 { -
applications/robust/robustlib.h
r1272 r1273 8 8 #define ROBUST_H 9 9 10 #include <stat/exp_family.h> 10 //#include <stat/exp_family.h> 11 #include <itpp/itbase.h> 12 #include <map> 11 13 #include <limits> 12 14 #include <vector> … … 15 17 #include <algorithm> 16 18 17 using namespace bdm;19 //using namespace bdm; 18 20 using namespace std; 19 21 using namespace itpp; … … 176 178 177 179 178 void triangulate(bool should_integrate); 179 180 180 void triangulate(bool should_integrate); 181 181 }; 182 182 183 183 184 /// A class for representing 0-dimensional polyhedron - a vertex. It will be located in the bottom row of the Hasse … … 228 229 }; 229 230 231 230 232 /// A class representing a polyhedron in a top row of the complex. Such polyhedron has a condition that differitiates 231 233 /// it from polyhedrons in other rows. … … 255 257 }; 256 258 259 257 260 class condition 258 261 { … … 271 274 272 275 276 273 277 class c_statistic 274 278 { … … 417 421 } 418 422 }; 423 419 424 420 425 class my_ivec : public ivec … … 556 561 } 557 562 }; 563 564 558 565 559 566