Files
SAPFOR/Sapfor/_src/Predictor/Lib/LoopLS.h
2025-03-12 12:37:19 +03:00

30 lines
639 B
C++

#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