diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 0f2801694..37a78287d 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -145,7 +145,7 @@ set(yul_phaser_sources yulPhaser/Chromosome.cpp yulPhaser/Population.cpp yulPhaser/Program.cpp - yulPhaser/Random.cpp + yulPhaser/SimulationRNG.cpp # FIXME: yul-phaser is not a library so I can't just add it to target_link_libraries(). # My current workaround is just to include its source files here but this introduces @@ -153,7 +153,7 @@ set(yul_phaser_sources ../tools/yulPhaser/Chromosome.cpp ../tools/yulPhaser/Population.cpp ../tools/yulPhaser/Program.cpp - ../tools/yulPhaser/Random.cpp + ../tools/yulPhaser/SimulationRNG.cpp ) detect_stray_source_files("${yul_phaser_sources}" "yulPhaser/") diff --git a/test/yulPhaser/Chromosome.cpp b/test/yulPhaser/Chromosome.cpp index e8dbbe6c3..13f2f6811 100644 --- a/test/yulPhaser/Chromosome.cpp +++ b/test/yulPhaser/Chromosome.cpp @@ -18,7 +18,7 @@ #include #include -#include +#include #include #include diff --git a/test/yulPhaser/SimulationRNG.cpp b/test/yulPhaser/SimulationRNG.cpp index b9070303f..4722fcb65 100644 --- a/test/yulPhaser/SimulationRNG.cpp +++ b/test/yulPhaser/SimulationRNG.cpp @@ -15,7 +15,7 @@ along with solidity. If not, see . */ -#include +#include #include diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index a2aa807af..cd33c4006 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -21,8 +21,8 @@ add_executable(yul-phaser yulPhaser/Chromosome.cpp yulPhaser/Program.h yulPhaser/Program.cpp - yulPhaser/Random.h - yulPhaser/Random.cpp + yulPhaser/SimulationRNG.h + yulPhaser/SimulationRNG.cpp ) target_link_libraries(yul-phaser PRIVATE solidity Boost::program_options) diff --git a/tools/yulPhaser/Chromosome.cpp b/tools/yulPhaser/Chromosome.cpp index c75ad7612..ae30a87e9 100644 --- a/tools/yulPhaser/Chromosome.cpp +++ b/tools/yulPhaser/Chromosome.cpp @@ -17,7 +17,7 @@ #include -#include +#include #include #include diff --git a/tools/yulPhaser/Population.h b/tools/yulPhaser/Population.h index 4c8eff9fe..276db83ff 100644 --- a/tools/yulPhaser/Population.h +++ b/tools/yulPhaser/Population.h @@ -19,7 +19,7 @@ #include #include -#include +#include #include #include diff --git a/tools/yulPhaser/SimulationRNG.cpp b/tools/yulPhaser/SimulationRNG.cpp index 0e4118712..8f78c8a6a 100644 --- a/tools/yulPhaser/SimulationRNG.cpp +++ b/tools/yulPhaser/SimulationRNG.cpp @@ -15,7 +15,7 @@ along with solidity. If not, see . */ -#include +#include #include #include