Commit 94c5597 1 parent 741e09d commit 94c5597 Copy full SHA for 94c5597
File tree 1 file changed +8
-2
lines changed
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -332,8 +332,14 @@ cda_rail::sim::TrainTrajectory::convert_to_vss_format(
332
332
if (instance_r.get ().allow_reversing )
333
333
throw std::runtime_error (
334
334
" Converting solutions that allow reversing to VSS compatible solution "
335
- " is not yet supported, since position can't be easily represented in "
336
- " distance from starting point." );
335
+ " is not yet supported, since position can't be easily represented as "
336
+ " covered distance." );
337
+
338
+ if (instance_r.get ().get_max_train_speed () >
339
+ instance_r.get ().get_shortest_track ())
340
+ throw std::runtime_error (
341
+ " Max train speed is higher than smallest track size. "
342
+ " Trains can skip tracks which is not representable as a 'Route'." );
337
343
338
344
const Network& network_unidirec = instance_r.get ().network ;
339
345
You can’t perform that action at this time.
0 commit comments