\ No newline at end of file
diff --git a/rustdoc/map_model/pathfind/enum.Pathfinder.html b/rustdoc/map_model/pathfind/enum.Pathfinder.html
index f14e4c0c04..ad919977f6 100644
--- a/rustdoc/map_model/pathfind/enum.Pathfinder.html
+++ b/rustdoc/map_model/pathfind/enum.Pathfinder.html
@@ -7,7 +7,7 @@ explicitly opt into a slower (but preparation-free) pathfinder that just uses Di
maneuever.
Uses https://github.com/easbar/fast_paths. Slower creation during map importing, but very fast
diff --git a/rustdoc/sim/make/spawner/enum.TripSpec.html b/rustdoc/sim/make/spawner/enum.TripSpec.html
index b0a8e4653f..e4b35051a4 100644
--- a/rustdoc/sim/make/spawner/enum.TripSpec.html
+++ b/rustdoc/sim/make/spawner/enum.TripSpec.html
@@ -37,7 +37,7 @@
Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait. Read more
diff --git a/rustdoc/src/game/home/runner/work/abstreet/abstreet/target/debug/build/game-26b47b6c62d293fe/out/built.rs.html b/rustdoc/src/game/home/runner/work/abstreet/abstreet/target/debug/build/game-26b47b6c62d293fe/out/built.rs.html
index adad79bc44..6fbd3d50f9 100644
--- a/rustdoc/src/game/home/runner/work/abstreet/abstreet/target/debug/build/game-26b47b6c62d293fe/out/built.rs.html
+++ b/rustdoc/src/game/home/runner/work/abstreet/abstreet/target/debug/build/game-26b47b6c62d293fe/out/built.rs.html
@@ -112,7 +112,7 @@
/// The output of `rustdoc -V`pubconstRUSTDOC_VERSION: &str="rustdoc 1.47.0 (18bf6b4f0 2020-10-07)";
/// The built-time in RFC2822, UTC
-pubconstBUILT_TIME_UTC: &str="Wed, 18 Nov 2020 02:09:08 +0000";
+pubconstBUILT_TIME_UTC: &str="Wed, 18 Nov 2020 02:16:38 +0000";
/// The target architecture, given by `cfg!(target_arch)`.pubconstCFG_TARGET_ARCH: &str="x86_64";
/// The endianness, given by `cfg!(target_endian)`.
diff --git a/rustdoc/src/map_model/pathfind/mod.rs.html b/rustdoc/src/map_model/pathfind/mod.rs.html
index 559fcd63dd..2415fc0d73 100644
--- a/rustdoc/src/map_model/pathfind/mod.rs.html
+++ b/rustdoc/src/map_model/pathfind/mod.rs.html
@@ -633,6 +633,7 @@
632633634
+635
//! Everything related to pathfinding through a map for different types of agents.
@@ -1248,6 +1249,7 @@
dijkstra::pathfind_avoiding_lanes(req, avoid, map)
}
+ // TODO Consider returning the walking-only path in the failure case, to avoid wasting workpubfnshould_use_transit(
&self,
map: &Map,
diff --git a/rustdoc/src/sim/make/spawner.rs.html b/rustdoc/src/sim/make/spawner.rs.html
index 5c1ecc9064..dc78db9a80 100644
--- a/rustdoc/src/sim/make/spawner.rs.html
+++ b/rustdoc/src/sim/make/spawner.rs.html
@@ -397,6 +397,8 @@
396397398
+399
+400
//! Intermediate structures used to instantiate a Scenario. Badly needs simplification://! https://github.com/dabreegster/abstreet/issues/258
@@ -604,8 +606,10 @@
trips.new_trip(person.id, info, legs)
}
TripSpec::SpawningFailure { .. } => {
- // TODO Is it OK to have empty trip legs?
- letlegs=Vec::new();
+ // TODO The legs are a lie. Since the trip gets cancelled, this doesn't matter.
+ // I'm not going to bother doing better because I think TripLeg will get
+ // revamped soon anyway.
+ letlegs=vec![TripLeg::RideBus(BusRouteID(0), None)];
trips.new_trip(person.id, info, legs)
}
TripSpec::UsingParkedCar { car, goal, .. } => {