Skip to content

Commit 0861267

Browse files
committed
style: fix EPSILON initialization in Solution
1 parent 9d9c911 commit 0861267

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/vrp/solution.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ class Solution {
6666

6767
/* @brief copy constructor */
6868
Solution(const Solution &sol) :
69-
EPSILON(0.0001),
69+
EPSILON(sol.EPSILON),
7070
fleet(sol.fleet),
7171
trucks(sol.trucks)
7272
{};

0 commit comments

Comments
 (0)