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