Commit d23570d 1 parent 741e09d commit d23570d Copy full SHA for d23570d
File tree 1 file changed +10
-3
lines changed
1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -331,9 +331,16 @@ cda_rail::sim::TrainTrajectory::convert_to_vss_format(
331
331
const Network& network_bidirec) const {
332
332
if (instance_r.get ().allow_reversing )
333
333
throw std::runtime_error (
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." );
334
+ " Cannot export to VSS compatible solution. "
335
+ " Converting solutions that allow reversing is not yet supported. "
336
+ " Position can't be easily represented as 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
+ " Cannot export to VSS compatible solution. "
342
+ " Max train speed is higher than smallest track size. "
343
+ " Trains can skip tracks which is not representable as a 'Route'." );
337
344
338
345
const Network& network_unidirec = instance_r.get ().network ;
339
346
You can’t perform that action at this time.
0 commit comments