fix struct

This commit is contained in:
2026-01-25 09:28:09 +03:00
parent 3d7acb1d63
commit eb9bd9db1a
295 changed files with 154603 additions and 21 deletions

View File

@@ -0,0 +1,43 @@
#include "../Utils/UtilsTestAuto.h"
#include "../Sorting/SortTestAuto.h"
#include "../RandomTreap/DynamicSortedSequenceTestAuto.h"
#include "../HashTable/HashTableTestAuto.h"
#include "../Heaps/HeapTestAuto.h"
#include "../Graphs/GraphsTestAuto.h"
#include "../ExternalMemoryAlgorithms/ExternalMemoryAlgorithmsTestAuto.h"
#include "../StringAlgorithms/StringAlgorithmsTestAuto.h"
#include "../Compression/CompressionTestAuto.h"
#include "../MiscAlgs/MiscAlgsTestAuto.h"
#include "../Optimization/OptTestAuto.h"
#include "../LargeNumbers/LargeNumberTestAuto.h"
#include "../ComputationalGeometry/ComputationalGeometryTestAuto.h"
#include "../ErrorCorrectingCodes/ErrorCorrectingCodesTestAuto.h"
#include "../Cryptography/CryptographyTestAuto.h"
#include "../NumericalMethods/NumericalMethodsTestAuto.h"
#include "../FinancialCalculations/FinancialCalculationsTestAuto.h"
using namespace igmdk;
int main()
{
DEBUG("All Tests Auto");
testAllAutoUtils();
testAllAutoSort();
testAllAutoDynamicSortedSequence();
testAllAutoHashTable();
testAllAutoHeaps();
testAllAutoGraphs();
testAllAutoExternalMemoryAlgorithms();
testAllAutoStringAlgorithms();
testAllAutoCompression();
testAllAutoMiscAlgorithms();
testAllAutoOpt();
testAllAutoComputationalGeometry();
testAllAutoErrorCorrectingCodes();
testAllAutoCryptography();
testAllAutoNumericalMethods();
testAllAutoFinancialCalculations();
DEBUG("All Tests Auto passed");
return 0;
}