blob: a55a101239608364c111893105fa6aaa8acc3ffb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef STEPS_H
#define STEPS_H
#include "pruning.h"
#define NSTEPS 50
extern Step * steps[NSTEPS];
void copy_estimatedata(EstimateData *s, EstimateData *d);
void free_estimatedata(EstimateData *ed);
void invert_estimatedata(EstimateData *ed);
EstimateData * new_estimatedata();
void prepare_step(Step *step, SolveOptions *opts);
#endif
|