Skip to content

Commit a7926c3

Browse files
committed
Bump versioN
1 parent ae0836d commit a7926c3

File tree

5 files changed

+4
-7
lines changed

5 files changed

+4
-7
lines changed

benchmark/Dynamics/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ include_directories(../../src/dsf)
3030
include_directories(../../src/dsf/utility/)
3131

3232
file(GLOB SOURCES "../../src/dsf/base/*.cpp" "../../src/dsf/mobility/*.cpp" "../../src/dsf/utility/*.cpp" "../../src/dsf/geometry/*.cpp")
33-
list(FILTER SOURCES EXCLUDE REGEX ".*binding.*\\.cpp$")
3433

3534
# Compile
3635
add_executable(bench_dynamics.out BenchDynamics.cpp ${SOURCES})

benchmark/Graph/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ include_directories(../../src/dsf)
1717
include_directories(../../src/dsf/utility/)
1818

1919
file(GLOB SOURCES "../../src/dsf/base/*.cpp" "../../src/dsf/mobility/*.cpp" "../../src/dsf/utility/*.cpp" "../../src/dsf/geometry/*.cpp")
20-
list(FILTER SOURCES EXCLUDE REGEX ".*binding.*\\.cpp$")
2120

2221
# Compile
2322
add_executable(bench_graph.out BenchGraph.cpp ${SOURCES})

benchmark/Street/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ include_directories(../../src/dsf)
1717
include_directories(../../src/dsf/utility/)
1818

1919
file(GLOB SOURCES "../../src/dsf/base/*.cpp" "../../src/dsf/mobility/*.cpp" "../../src/dsf/utility/*.cpp" "../../src/dsf/geometry/*.cpp")
20-
list(FILTER SOURCES EXCLUDE REGEX ".*binding.*\\.cpp$")
2120

2221
# Compile
2322
add_executable(bench_street.out BenchStreet.cpp ${SOURCES})

src/dsf/dsf.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
#include <cstdint>
55
#include <format>
66

7-
static constexpr uint8_t DSF_VERSION_MAJOR = 3;
8-
static constexpr uint8_t DSF_VERSION_MINOR = 14;
9-
static constexpr uint8_t DSF_VERSION_PATCH = 1;
7+
static constexpr uint8_t DSF_VERSION_MAJOR = 4;
8+
static constexpr uint8_t DSF_VERSION_MINOR = 0;
9+
static constexpr uint8_t DSF_VERSION_PATCH = 0;
1010

1111
static auto const DSF_VERSION =
1212
std::format("{}.{}.{}", DSF_VERSION_MAJOR, DSF_VERSION_MINOR, DSF_VERSION_PATCH);

test/mobility/Test_agent.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ TEST_CASE("Agent") {
4242
}
4343
}
4444
}
45-
GIVEN("An agent it") {
45+
GIVEN("No initinerary ids and no source node id") {
4646
WHEN("The agent is constructed") {
4747
auto randomAgent = Agent{0};
4848
THEN("The agent is a random agent") { CHECK(randomAgent.isRandom()); }

0 commit comments

Comments
 (0)