diff --git a/exorList.cpp b/exorList.cpp index e3e1cbc..34f2f4a 100644 --- a/exorList.cpp +++ b/exorList.cpp @@ -127,9 +127,9 @@ int IteratorCubePairNext(); //////////////////////////////////////////////////////////////////////// // the cube storage -// cube storage allocation/delocation +// cube storage allocation/deallocation int AllocateCubeSets( int nVarsIn, int nVarsOut ); -void DelocateCubeSets(); +void DeallocateCubeSets(); // insert/extract a cube into/from the storage void CubeInsert( Cube* p ); @@ -146,9 +146,9 @@ Cube* IterCubeSetNext(); //////////////////////////////////////////////////////////////////////// // cube adjacency queques -// adjacency queque allocation/delocation procedures +// adjacency queque allocation/deallocation procedures int AllocateQueques( int nPlaces ); -void DelocateQueques(); +void DeallocateQueques(); // conditional adding cube pairs to queques // reset temporarily stored new range of cube pairs @@ -786,7 +786,7 @@ void UndoRecentChanges() //static Cube* s_List; /////////////////////////////////////////////////////////////////// -/// Memory Allocation/Delocation /// +/// Memory Allocation/deallocation /// /////////////////////////////////////////////////////////////////// int AllocateCubeSets( int nVarsIn, int nVarsOut ) @@ -813,7 +813,7 @@ int AllocateCubeSets( int nVarsIn, int nVarsOut ) return 4; } -void DelocateCubeSets() +void DeallocateCubeSets() { } @@ -1106,7 +1106,7 @@ int IteratorCubePairNext() } ////////////////////////////////////////////////////////////////////// -// Allocation/Delocation // +// Allocation/deallocation // ////////////////////////////////////////////////////////////////////// int AllocateQueques( int nPlaces ) @@ -1136,7 +1136,7 @@ int AllocateQueques( int nPlaces ) return nPlaces * (sizeof(Cube*) + sizeof(Cube*) + 2*sizeof(byte) ); } -void DelocateQueques() +void DeallocateQueques() { int i; for ( i = 0; i < 3; i++ )