blob: 682be8844fe18fc29ab319a06d0ea6dd616b8fe1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef STEPS_H
#define STEPS_H
#include "pruning.h"
extern Step * steps[];
/* Two steps used directly by two-phase solver */
extern Step drany_HTM;
extern Step dranyfin_DR;
/* Step used directly by the scramble command */
extern Step drudfin_drud;
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
|