Loading ci_cd/problem3a.yml +1 −1 Original line number Diff line number Diff line Loading @@ -21,7 +21,7 @@ compile_problem_3a: - job: prebuild_problem_3a artifacts: true script: - cp impl/Rubk.cpp hw2/tests/ - cp impl/Rubk.cpp hw2/tests/impl/ - cd hw2/tests - make problem3a artifacts: Loading ci_cd/problem3c.yml +1 −1 Original line number Diff line number Diff line Loading @@ -25,7 +25,7 @@ compile_problem_3c: - job: prebuild_problem_3c artifacts: true script: - cp impl/Rubk.cpp main.cpp hw2/tests/ - cp impl/Rubk.cpp main.cpp hw2/tests/impl/ - cd hw2/tests - make solver - make problem3c Loading tests/Makefile +3 −3 Original line number Diff line number Diff line Loading @@ -5,9 +5,9 @@ CXX = g++ -O2 CXXFLAGS = -Wall -std=c++17 # Source files PROBLEM3A_SRCS = testMoves.cpp Rubk.cpp Enums.cpp SOLVER_SRC = main.cpp Rubk.cpp Enums.cpp PROBLEM3C_SRCS = testUnscramble.cpp Rubk.cpp Enums.cpp PROBLEM3A_SRCS = testMoves.cpp impl/Rubk.cpp impl/Enums.cpp SOLVER_SRC = main.cpp impl/Rubk.cpp impl/Enums.cpp PROBLEM3C_SRCS = testUnscramble.cpp impl/Rubk.cpp impl/Enums.cpp SRCS = $(PROBLEM3A_SRCS) $(SOLVER_SRC) $(PROBLEM3C_SRCS) # Object files Loading tests/Enums.cpp→tests/impl/Enums.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -2,7 +2,7 @@ // Created by Ari on 2/9/26. // #include "Enums.h" #include "../include/Enums.h" #include <ostream> using namespace std; Loading Loading
ci_cd/problem3a.yml +1 −1 Original line number Diff line number Diff line Loading @@ -21,7 +21,7 @@ compile_problem_3a: - job: prebuild_problem_3a artifacts: true script: - cp impl/Rubk.cpp hw2/tests/ - cp impl/Rubk.cpp hw2/tests/impl/ - cd hw2/tests - make problem3a artifacts: Loading
ci_cd/problem3c.yml +1 −1 Original line number Diff line number Diff line Loading @@ -25,7 +25,7 @@ compile_problem_3c: - job: prebuild_problem_3c artifacts: true script: - cp impl/Rubk.cpp main.cpp hw2/tests/ - cp impl/Rubk.cpp main.cpp hw2/tests/impl/ - cd hw2/tests - make solver - make problem3c Loading
tests/Makefile +3 −3 Original line number Diff line number Diff line Loading @@ -5,9 +5,9 @@ CXX = g++ -O2 CXXFLAGS = -Wall -std=c++17 # Source files PROBLEM3A_SRCS = testMoves.cpp Rubk.cpp Enums.cpp SOLVER_SRC = main.cpp Rubk.cpp Enums.cpp PROBLEM3C_SRCS = testUnscramble.cpp Rubk.cpp Enums.cpp PROBLEM3A_SRCS = testMoves.cpp impl/Rubk.cpp impl/Enums.cpp SOLVER_SRC = main.cpp impl/Rubk.cpp impl/Enums.cpp PROBLEM3C_SRCS = testUnscramble.cpp impl/Rubk.cpp impl/Enums.cpp SRCS = $(PROBLEM3A_SRCS) $(SOLVER_SRC) $(PROBLEM3C_SRCS) # Object files Loading
tests/Enums.cpp→tests/impl/Enums.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -2,7 +2,7 @@ // Created by Ari on 2/9/26. // #include "Enums.h" #include "../include/Enums.h" #include <ostream> using namespace std; Loading