From 0b03dc67fb0f12fa9ce6054370150c870397c774 Mon Sep 17 00:00:00 2001 From: David Allemang Date: Fri, 25 Feb 2022 18:07:31 -0500 Subject: [PATCH] WIP: Move old geometry solver to include/geo --- include/{ => geo}/combo.hpp | 0 include/{ => geo}/geometry.hpp | 0 include/{ => geo}/mirror.hpp | 2 +- include/{ => geo}/solver.hpp | 2 +- src/geometrytest.cpp | 6 +++--- 5 files changed, 5 insertions(+), 5 deletions(-) rename include/{ => geo}/combo.hpp (100%) rename include/{ => geo}/geometry.hpp (100%) rename include/{ => geo}/mirror.hpp (99%) rename include/{ => geo}/solver.hpp (99%) diff --git a/include/combo.hpp b/include/geo/combo.hpp similarity index 100% rename from include/combo.hpp rename to include/geo/combo.hpp diff --git a/include/geometry.hpp b/include/geo/geometry.hpp similarity index 100% rename from include/geometry.hpp rename to include/geo/geometry.hpp diff --git a/include/mirror.hpp b/include/geo/mirror.hpp similarity index 99% rename from include/mirror.hpp rename to include/geo/mirror.hpp index 7f563f7..1e7c1bb 100644 --- a/include/mirror.hpp +++ b/include/geo/mirror.hpp @@ -6,7 +6,7 @@ #include #include -#include +#include template float dot(int n, const V &a, const V &b) { diff --git a/include/solver.hpp b/include/geo/solver.hpp similarity index 99% rename from include/solver.hpp rename to include/geo/solver.hpp index 9074aaf..7c6c897 100644 --- a/include/solver.hpp +++ b/include/geo/solver.hpp @@ -6,7 +6,7 @@ #include #include -#include +#include #include "combo.hpp" diff --git a/src/geometrytest.cpp b/src/geometrytest.cpp index f48b872..acb611f 100644 --- a/src/geometrytest.cpp +++ b/src/geometrytest.cpp @@ -1,7 +1,7 @@ -#include #include -#include -#include +#include +#include +#include #include #include