This commit is contained in:
2025-03-12 12:37:19 +03:00
parent 1c851baa7e
commit 6a4040be3e
426 changed files with 0 additions and 0 deletions

View 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