Skip to content

Commit e996b35

Browse files
committed
move {SLP, NAG} to their subdirectory
1 parent 565c3d3 commit e996b35

13 files changed

Lines changed: 17 additions & 17 deletions

File tree

M2/Macaulay2/d/Makefile.files.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,9 +207,9 @@ interface.o : \
207207
@srcdir@/../e/basic-mutable-matrices/dmat-lu-qq.hpp \
208208
@srcdir@/../e/basic-mutable-matrices/dmat-qq-interface-flint.hpp \
209209
@srcdir@/../e/eigen.hpp \
210-
@srcdir@/../e/SLP-defs.hpp \
210+
@srcdir@/../e/SLP/SLP-defs.hpp \
211211
@srcdir@/../e/mutable-matrices/mutablemat-imp.hpp \
212-
@srcdir@/../e/SLP-imp.hpp \
212+
@srcdir@/../e/SLP/SLP-imp.hpp \
213213
@srcdir@/../e/timing.hpp \
214214
@srcdir@/../e/basic-rings/aring-ZZp.hpp \
215215
@srcdir@/../e/memory-status.hpp

M2/Macaulay2/e/CMakeLists.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ set(HPPONLYFILES
5353
NCAlgebras/Range.hpp
5454
VectorArithmetic.hpp
5555
timing.hpp
56-
SLP-defs.hpp
57-
SLP-imp.hpp
56+
SLP/SLP-defs.hpp
57+
SLP/SLP-imp.hpp
5858
basic-mutable-matrices/dmat-gf-flint-big.hpp
5959
basic-mutable-matrices/dmat-gf-flint.hpp
6060
basic-mutable-matrices/dmat-lu-inplace.hpp
@@ -177,8 +177,8 @@ set(SRCLIST
177177
monomial/monomial-collection
178178
Eschreyer
179179
LLL
180-
NAG # TODO: move raw* functions to e/interface
181-
SLP
180+
NAG/NAG # TODO: move raw* functions to e/interface
181+
SLP/SLP
182182
assprime
183183
betti
184184
buffer
@@ -510,7 +510,7 @@ if(BUILD_TESTING)
510510
endif()
511511

512512
target_compile_options(M2-unit-tests PRIVATE
513-
-Wno-cast-qual # FIXME: caused by NAG.hpp:559:37 and NAG.hpp:603:37
513+
-Wno-cast-qual # FIXME: caused by NAG/NAG.hpp:559:37 and NAG/NAG.hpp:603:37
514514
-Wno-sign-compare
515515
$<$<COMPILE_LANG_AND_ID:CXX,AppleClang,Clang>:-Wno-mismatched-tags> # FIXME
516516
)

M2/Macaulay2/e/Makefile.files.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ INTERFACE = \
101101
rings/tower \
102102
interreduce \
103103
finalize \
104-
NAG \
105-
SLP \
104+
NAG/NAG \
105+
SLP/SLP \
106106
monomial/overflow \
107107
memory-status \
108108
imonorder \
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
#include "interface/NAG.h"
2323
#include "matrices/matrix.hpp"
24-
#include "SLP.hpp"
24+
#include "SLP/SLP.hpp"
2525
#include "basic-rings/aring-CC.hpp"
2626
#include "basic-rings/aring-glue.hpp"
2727
#include "basic-rings/aring.hpp"
@@ -554,7 +554,7 @@ class StraightLineProgram : public SLP<ComplexField>
554554
Matrix* evaluate(const Matrix* vals);
555555
};
556556

557-
// enum SolutionStatus { ... defined in SLP-imp.hpp ... };
557+
// enum SolutionStatus { ... defined in SLP/SLP-imp.hpp ... };
558558
struct Solution
559559
{
560560
int n; /**< \brief number of coordinates */

M2/Macaulay2/e/interface/matrix.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
#include <M2/math-include.h>
66

7-
#include "NAG.hpp" // TODO: can this be removed?
8-
#include "SLP-defs.hpp"
7+
#include "NAG/NAG.hpp" // TODO: can this be removed?
8+
#include "SLP/SLP-defs.hpp"
99
#include "buffer.hpp"
1010
#include "basic-mutable-matrices/dmat.hpp"
1111
#include "error.h"

0 commit comments

Comments
 (0)