moved
This commit is contained in:
29
Sapfor/_src/Predictor/Lib/LoopLS.h
Normal file
29
Sapfor/_src/Predictor/Lib/LoopLS.h
Normal file
@@ -0,0 +1,29 @@
|
||||
#ifndef LoopLSH
|
||||
#define LoopLSH
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// LoopLS.h: interface for the LoopLS class.
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
||||
class LoopLS {
|
||||
|
||||
public:
|
||||
|
||||
long Lower;
|
||||
long Upper;
|
||||
long Step;
|
||||
bool Invers;//====//
|
||||
|
||||
LoopLS();
|
||||
LoopLS(long ALower, long AUpper, long AStep);
|
||||
virtual ~LoopLS();
|
||||
|
||||
void transform(long A, long B, long plDimSize);
|
||||
long GetLoopLSSize();
|
||||
bool empty();
|
||||
friend bool operator==(const LoopLS& x, const LoopLS& y);
|
||||
friend bool operator<(const LoopLS& x, const LoopLS& y);
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user