steps.h (492B)
1 #ifndef STEPS_H 2 #define STEPS_H 3 4 #include "pruning.h" 5 6 extern Step * steps[]; 7 8 /* Two steps used directly by two-phase solver */ 9 extern Step drany_HTM; 10 extern Step dranyfin_DR; 11 12 void copy_estimatedata(EstimateData *s, EstimateData *d); 13 void invert_estimatedata(EstimateData *ed); 14 void reset_estimatedata(EstimateData *ed); 15 void prepare_step(Step *step, SolveOptions *opts); 16 17 #endif