Commit 5a0787b6 authored by Ari Trachtenberg's avatar Ari Trachtenberg
Browse files

fixed up includes

parent d2757e7b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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:
+1 −1
Original line number Diff line number Diff line
@@ -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
+3 −3
Original line number Diff line number Diff line
@@ -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
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
// Created by Ari on 2/9/26.
//

#include "Enums.h"
#include "../include/Enums.h"

#include <ostream>
using namespace std;