├── .gitignore ├── Algorithms ├── CH │ ├── CH.h │ ├── CHUtils.h │ ├── Preprocessing │ │ ├── BidirectionalWitnessSearch.h │ │ ├── CHBuilder.h │ │ ├── CHData.h │ │ ├── KeyFunction.h │ │ ├── Profiler.h │ │ ├── StopCriterion.h │ │ └── WitnessSearch.h │ ├── Query │ │ ├── BucketQuery.h │ │ └── CHQuery.h │ └── UPQuery │ │ ├── BucketBuilder.h │ │ ├── GroupedParetoUPQuery.h │ │ ├── SeparatedParetoUPQuery.h │ │ └── UPQuery.h ├── CSA │ ├── CSA.h │ ├── DijkstraCSA.h │ ├── HLCSA.h │ ├── OneToAllDijkstraCSA.h │ ├── Profiler.h │ ├── ULTRACSA.h │ └── UPCSA.h ├── DepthFirstSearch.h ├── Dijkstra │ └── Dijkstra.h ├── RAPTOR │ ├── Bounded │ │ ├── BackwardPruningRAPTOR.h │ │ ├── BoundedMcRAPTOR.h │ │ └── ForwardPruningRAPTOR.h │ ├── DijkstraRAPTOR.h │ ├── HLRAPTOR.h │ ├── InitialTransfers.h │ ├── MCR.h │ ├── McRAPTOR.h │ ├── MultimodalMCR.h │ ├── MultimodalULTRAMcRAPTOR.h │ ├── OneToAllDijkstraRAPTOR.h │ ├── Profiler.h │ ├── RAPTOR.h │ ├── ULTRA │ │ ├── Builder.h │ │ ├── McBuilder.h │ │ ├── McShortcutSearch.h │ │ ├── MultimodalMcBuilder.h │ │ ├── MultimodalMcShortcutSearch.h │ │ └── ShortcutSearch.h │ ├── ULTRABounded │ │ ├── BackwardPruningULTRARAPTOR.h │ │ ├── ForwardPruningULTRARAPTOR.h │ │ ├── MultimodalUBMHydRA.h │ │ ├── MultimodalUBMRAPTOR.h │ │ ├── UBMHydRA.h │ │ └── UBMRAPTOR.h │ ├── ULTRAMcRAPTOR.h │ ├── ULTRARAPTOR.h │ └── UPRAPTOR.h ├── StronglyConnectedComponents.h └── TripBased │ ├── BoundedMcQuery │ ├── BackwardPruningQuery.h │ ├── BoundedMcQuery.h │ ├── ForwardPruningQuery.h │ ├── ReachedIndexRounds.h │ ├── StopArrivalTimes.h │ └── TimestampedWalkingDistanceData.h │ ├── Preprocessing │ ├── DelayShortcutSearch.h │ ├── DelayULTRABuilder.h │ ├── DelayUpdater.h │ ├── McShortcutSearch.h │ ├── McULTRABuilder.h │ ├── MultimodalMcShortcutSearch.h │ ├── MultimodalMcULTRABuilder.h │ ├── ReplacementSearchBuilder.h │ ├── ReplacementShortcutSearch.h │ ├── ShortcutAugmenter.h │ ├── ShortcutSearch.h │ ├── StopEventGraphBuilder.h │ └── ULTRABuilder.h │ └── Query │ ├── McQuery.h │ ├── Profiler.h │ ├── Query.h │ ├── ReachedIndex.h │ ├── TransitiveQuery.h │ ├── UPQuery.h │ └── WalkingDistanceData.h ├── CMakeLists.txt ├── DataStructures ├── Attributes │ ├── Attribute.h │ ├── AttributeHandle.h │ ├── AttributeNames.h │ ├── AttributeRecord.h │ └── Attributes.h ├── CH │ └── UPGraphs.h ├── CSA │ ├── Data.h │ └── Entities │ │ ├── Connection.h │ │ ├── Journey.h │ │ ├── Stop.h │ │ └── Trip.h ├── Container │ ├── ExternalKHeap.h │ ├── IndexedSet.h │ └── Map.h ├── GTFS │ ├── Data.h │ └── Entities │ │ ├── Agency.h │ │ ├── Calendar.h │ │ ├── CalendarDate.h │ │ ├── Frequency.h │ │ ├── Route.h │ │ ├── Stop.h │ │ ├── StopTime.h │ │ ├── Transfer.h │ │ ├── Trip.h │ │ └── Vehicle.h ├── Geometry │ ├── CoordinateTree.h │ ├── Metric.h │ ├── Point.h │ └── Rectangle.h ├── Graph │ ├── Classes │ │ ├── DynamicGraph.h │ │ ├── EdgeList.h │ │ ├── GraphInterface.h │ │ └── StaticGraph.h │ ├── Graph.h │ └── Utils │ │ ├── Conversion.h │ │ ├── IO.h │ │ └── Utils.h ├── Intermediate │ ├── Data.h │ └── Entities │ │ ├── Stop.h │ │ ├── StopEvent.h │ │ ├── Transfer.h │ │ └── Trip.h ├── Queries │ └── Queries.h ├── RAPTOR │ ├── Data.h │ ├── Entities │ │ ├── ArrivalLabel.h │ │ ├── Bags.h │ │ ├── EarliestArrivalTime.h │ │ ├── Journey.h │ │ ├── Route.h │ │ ├── RouteSegment.h │ │ ├── Shortcut.h │ │ ├── Stop.h │ │ ├── StopEvent.h │ │ └── TripIterator.h │ ├── MultimodalData.h │ └── TransferModes.h └── TripBased │ ├── Data.h │ ├── Delay.h │ ├── DelayData.h │ ├── DelayInfo.h │ ├── DelayUpdateData.h │ ├── MultimodalData.h │ ├── RouteLabel.h │ ├── Shortcut.h │ └── ShortcutCollection.h ├── Helpers ├── Assert.h ├── Calendar.h ├── Console │ ├── CommandLineParser.h │ ├── Progress.h │ └── ProgressBar.h ├── ConstructorTags.h ├── FileSystem │ └── FileSystem.h ├── Helpers.h ├── HighlightText.h ├── IO │ ├── ParserCSV.h │ └── Serialization.h ├── Meta.h ├── MultiThreading.h ├── Ranges │ ├── ConcatenatedRange.h │ ├── DirectEdgeRange.h │ ├── IndexRange.h │ ├── IndirectEdgeRange.h │ ├── Range.h │ ├── ReverseRange.h │ ├── SimultaneousRange.h │ ├── SparseRange.h │ └── SubRange.h ├── String │ ├── Enumeration.h │ └── String.h ├── TaggedInteger.h ├── Timer.h ├── Types.h └── Vector │ ├── Permutation.h │ └── Vector.h ├── LICENSE ├── README.md ├── Runnables ├── BuildNetworkExample.script ├── Commands │ ├── BenchmarkMcULTRA.h │ ├── BenchmarkMultimodal.h │ ├── BenchmarkULTRA.h │ ├── BenchmarkULTRAPHAST.h │ ├── CH.h │ ├── DelayExperiments.h │ ├── NetworkIO.h │ ├── NetworkTools.h │ └── ULTRAPreprocessing.h ├── DelayExperiments.cpp ├── Network.cpp ├── ULTRA.cpp └── ULTRAPHAST.cpp └── Shell ├── BasicShell.h ├── Command.h ├── LineBuffer.h ├── ParameterizedCommand.h └── Shell.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/.gitignore -------------------------------------------------------------------------------- /Algorithms/CH/CH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/CH/CH.h -------------------------------------------------------------------------------- /Algorithms/CH/CHUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/CH/CHUtils.h -------------------------------------------------------------------------------- /Algorithms/CH/Preprocessing/BidirectionalWitnessSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/CH/Preprocessing/BidirectionalWitnessSearch.h -------------------------------------------------------------------------------- /Algorithms/CH/Preprocessing/CHBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/CH/Preprocessing/CHBuilder.h -------------------------------------------------------------------------------- /Algorithms/CH/Preprocessing/CHData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/CH/Preprocessing/CHData.h -------------------------------------------------------------------------------- /Algorithms/CH/Preprocessing/KeyFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/CH/Preprocessing/KeyFunction.h -------------------------------------------------------------------------------- /Algorithms/CH/Preprocessing/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/CH/Preprocessing/Profiler.h -------------------------------------------------------------------------------- /Algorithms/CH/Preprocessing/StopCriterion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/CH/Preprocessing/StopCriterion.h -------------------------------------------------------------------------------- /Algorithms/CH/Preprocessing/WitnessSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/CH/Preprocessing/WitnessSearch.h -------------------------------------------------------------------------------- /Algorithms/CH/Query/BucketQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/CH/Query/BucketQuery.h -------------------------------------------------------------------------------- /Algorithms/CH/Query/CHQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/CH/Query/CHQuery.h -------------------------------------------------------------------------------- /Algorithms/CH/UPQuery/BucketBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/CH/UPQuery/BucketBuilder.h -------------------------------------------------------------------------------- /Algorithms/CH/UPQuery/GroupedParetoUPQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/CH/UPQuery/GroupedParetoUPQuery.h -------------------------------------------------------------------------------- /Algorithms/CH/UPQuery/SeparatedParetoUPQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/CH/UPQuery/SeparatedParetoUPQuery.h -------------------------------------------------------------------------------- /Algorithms/CH/UPQuery/UPQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/CH/UPQuery/UPQuery.h -------------------------------------------------------------------------------- /Algorithms/CSA/CSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/CSA/CSA.h -------------------------------------------------------------------------------- /Algorithms/CSA/DijkstraCSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/CSA/DijkstraCSA.h -------------------------------------------------------------------------------- /Algorithms/CSA/HLCSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/CSA/HLCSA.h -------------------------------------------------------------------------------- /Algorithms/CSA/OneToAllDijkstraCSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/CSA/OneToAllDijkstraCSA.h -------------------------------------------------------------------------------- /Algorithms/CSA/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/CSA/Profiler.h -------------------------------------------------------------------------------- /Algorithms/CSA/ULTRACSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/CSA/ULTRACSA.h -------------------------------------------------------------------------------- /Algorithms/CSA/UPCSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/CSA/UPCSA.h -------------------------------------------------------------------------------- /Algorithms/DepthFirstSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/DepthFirstSearch.h -------------------------------------------------------------------------------- /Algorithms/Dijkstra/Dijkstra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/Dijkstra/Dijkstra.h -------------------------------------------------------------------------------- /Algorithms/RAPTOR/Bounded/BackwardPruningRAPTOR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/RAPTOR/Bounded/BackwardPruningRAPTOR.h -------------------------------------------------------------------------------- /Algorithms/RAPTOR/Bounded/BoundedMcRAPTOR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/RAPTOR/Bounded/BoundedMcRAPTOR.h -------------------------------------------------------------------------------- /Algorithms/RAPTOR/Bounded/ForwardPruningRAPTOR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/RAPTOR/Bounded/ForwardPruningRAPTOR.h -------------------------------------------------------------------------------- /Algorithms/RAPTOR/DijkstraRAPTOR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/RAPTOR/DijkstraRAPTOR.h -------------------------------------------------------------------------------- /Algorithms/RAPTOR/HLRAPTOR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/RAPTOR/HLRAPTOR.h -------------------------------------------------------------------------------- /Algorithms/RAPTOR/InitialTransfers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/RAPTOR/InitialTransfers.h -------------------------------------------------------------------------------- /Algorithms/RAPTOR/MCR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/RAPTOR/MCR.h -------------------------------------------------------------------------------- /Algorithms/RAPTOR/McRAPTOR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/RAPTOR/McRAPTOR.h -------------------------------------------------------------------------------- /Algorithms/RAPTOR/MultimodalMCR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/RAPTOR/MultimodalMCR.h -------------------------------------------------------------------------------- /Algorithms/RAPTOR/MultimodalULTRAMcRAPTOR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/RAPTOR/MultimodalULTRAMcRAPTOR.h -------------------------------------------------------------------------------- /Algorithms/RAPTOR/OneToAllDijkstraRAPTOR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/RAPTOR/OneToAllDijkstraRAPTOR.h -------------------------------------------------------------------------------- /Algorithms/RAPTOR/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/RAPTOR/Profiler.h -------------------------------------------------------------------------------- /Algorithms/RAPTOR/RAPTOR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/RAPTOR/RAPTOR.h -------------------------------------------------------------------------------- /Algorithms/RAPTOR/ULTRA/Builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/RAPTOR/ULTRA/Builder.h -------------------------------------------------------------------------------- /Algorithms/RAPTOR/ULTRA/McBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/RAPTOR/ULTRA/McBuilder.h -------------------------------------------------------------------------------- /Algorithms/RAPTOR/ULTRA/McShortcutSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/RAPTOR/ULTRA/McShortcutSearch.h -------------------------------------------------------------------------------- /Algorithms/RAPTOR/ULTRA/MultimodalMcBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/RAPTOR/ULTRA/MultimodalMcBuilder.h -------------------------------------------------------------------------------- /Algorithms/RAPTOR/ULTRA/MultimodalMcShortcutSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/RAPTOR/ULTRA/MultimodalMcShortcutSearch.h -------------------------------------------------------------------------------- /Algorithms/RAPTOR/ULTRA/ShortcutSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/RAPTOR/ULTRA/ShortcutSearch.h -------------------------------------------------------------------------------- /Algorithms/RAPTOR/ULTRABounded/BackwardPruningULTRARAPTOR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/RAPTOR/ULTRABounded/BackwardPruningULTRARAPTOR.h -------------------------------------------------------------------------------- /Algorithms/RAPTOR/ULTRABounded/ForwardPruningULTRARAPTOR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/RAPTOR/ULTRABounded/ForwardPruningULTRARAPTOR.h -------------------------------------------------------------------------------- /Algorithms/RAPTOR/ULTRABounded/MultimodalUBMHydRA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/RAPTOR/ULTRABounded/MultimodalUBMHydRA.h -------------------------------------------------------------------------------- /Algorithms/RAPTOR/ULTRABounded/MultimodalUBMRAPTOR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/RAPTOR/ULTRABounded/MultimodalUBMRAPTOR.h -------------------------------------------------------------------------------- /Algorithms/RAPTOR/ULTRABounded/UBMHydRA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/RAPTOR/ULTRABounded/UBMHydRA.h -------------------------------------------------------------------------------- /Algorithms/RAPTOR/ULTRABounded/UBMRAPTOR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/RAPTOR/ULTRABounded/UBMRAPTOR.h -------------------------------------------------------------------------------- /Algorithms/RAPTOR/ULTRAMcRAPTOR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/RAPTOR/ULTRAMcRAPTOR.h -------------------------------------------------------------------------------- /Algorithms/RAPTOR/ULTRARAPTOR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/RAPTOR/ULTRARAPTOR.h -------------------------------------------------------------------------------- /Algorithms/RAPTOR/UPRAPTOR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/RAPTOR/UPRAPTOR.h -------------------------------------------------------------------------------- /Algorithms/StronglyConnectedComponents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/StronglyConnectedComponents.h -------------------------------------------------------------------------------- /Algorithms/TripBased/BoundedMcQuery/BackwardPruningQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/TripBased/BoundedMcQuery/BackwardPruningQuery.h -------------------------------------------------------------------------------- /Algorithms/TripBased/BoundedMcQuery/BoundedMcQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/TripBased/BoundedMcQuery/BoundedMcQuery.h -------------------------------------------------------------------------------- /Algorithms/TripBased/BoundedMcQuery/ForwardPruningQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/TripBased/BoundedMcQuery/ForwardPruningQuery.h -------------------------------------------------------------------------------- /Algorithms/TripBased/BoundedMcQuery/ReachedIndexRounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/TripBased/BoundedMcQuery/ReachedIndexRounds.h -------------------------------------------------------------------------------- /Algorithms/TripBased/BoundedMcQuery/StopArrivalTimes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/TripBased/BoundedMcQuery/StopArrivalTimes.h -------------------------------------------------------------------------------- /Algorithms/TripBased/BoundedMcQuery/TimestampedWalkingDistanceData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/TripBased/BoundedMcQuery/TimestampedWalkingDistanceData.h -------------------------------------------------------------------------------- /Algorithms/TripBased/Preprocessing/DelayShortcutSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/TripBased/Preprocessing/DelayShortcutSearch.h -------------------------------------------------------------------------------- /Algorithms/TripBased/Preprocessing/DelayULTRABuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/TripBased/Preprocessing/DelayULTRABuilder.h -------------------------------------------------------------------------------- /Algorithms/TripBased/Preprocessing/DelayUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/TripBased/Preprocessing/DelayUpdater.h -------------------------------------------------------------------------------- /Algorithms/TripBased/Preprocessing/McShortcutSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/TripBased/Preprocessing/McShortcutSearch.h -------------------------------------------------------------------------------- /Algorithms/TripBased/Preprocessing/McULTRABuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/TripBased/Preprocessing/McULTRABuilder.h -------------------------------------------------------------------------------- /Algorithms/TripBased/Preprocessing/MultimodalMcShortcutSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/TripBased/Preprocessing/MultimodalMcShortcutSearch.h -------------------------------------------------------------------------------- /Algorithms/TripBased/Preprocessing/MultimodalMcULTRABuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/TripBased/Preprocessing/MultimodalMcULTRABuilder.h -------------------------------------------------------------------------------- /Algorithms/TripBased/Preprocessing/ReplacementSearchBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/TripBased/Preprocessing/ReplacementSearchBuilder.h -------------------------------------------------------------------------------- /Algorithms/TripBased/Preprocessing/ReplacementShortcutSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/TripBased/Preprocessing/ReplacementShortcutSearch.h -------------------------------------------------------------------------------- /Algorithms/TripBased/Preprocessing/ShortcutAugmenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/TripBased/Preprocessing/ShortcutAugmenter.h -------------------------------------------------------------------------------- /Algorithms/TripBased/Preprocessing/ShortcutSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/TripBased/Preprocessing/ShortcutSearch.h -------------------------------------------------------------------------------- /Algorithms/TripBased/Preprocessing/StopEventGraphBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/TripBased/Preprocessing/StopEventGraphBuilder.h -------------------------------------------------------------------------------- /Algorithms/TripBased/Preprocessing/ULTRABuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/TripBased/Preprocessing/ULTRABuilder.h -------------------------------------------------------------------------------- /Algorithms/TripBased/Query/McQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/TripBased/Query/McQuery.h -------------------------------------------------------------------------------- /Algorithms/TripBased/Query/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/TripBased/Query/Profiler.h -------------------------------------------------------------------------------- /Algorithms/TripBased/Query/Query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/TripBased/Query/Query.h -------------------------------------------------------------------------------- /Algorithms/TripBased/Query/ReachedIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/TripBased/Query/ReachedIndex.h -------------------------------------------------------------------------------- /Algorithms/TripBased/Query/TransitiveQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/TripBased/Query/TransitiveQuery.h -------------------------------------------------------------------------------- /Algorithms/TripBased/Query/UPQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/TripBased/Query/UPQuery.h -------------------------------------------------------------------------------- /Algorithms/TripBased/Query/WalkingDistanceData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Algorithms/TripBased/Query/WalkingDistanceData.h -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /DataStructures/Attributes/Attribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/Attributes/Attribute.h -------------------------------------------------------------------------------- /DataStructures/Attributes/AttributeHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/Attributes/AttributeHandle.h -------------------------------------------------------------------------------- /DataStructures/Attributes/AttributeNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/Attributes/AttributeNames.h -------------------------------------------------------------------------------- /DataStructures/Attributes/AttributeRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/Attributes/AttributeRecord.h -------------------------------------------------------------------------------- /DataStructures/Attributes/Attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/Attributes/Attributes.h -------------------------------------------------------------------------------- /DataStructures/CH/UPGraphs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/CH/UPGraphs.h -------------------------------------------------------------------------------- /DataStructures/CSA/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/CSA/Data.h -------------------------------------------------------------------------------- /DataStructures/CSA/Entities/Connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/CSA/Entities/Connection.h -------------------------------------------------------------------------------- /DataStructures/CSA/Entities/Journey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/CSA/Entities/Journey.h -------------------------------------------------------------------------------- /DataStructures/CSA/Entities/Stop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/CSA/Entities/Stop.h -------------------------------------------------------------------------------- /DataStructures/CSA/Entities/Trip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/CSA/Entities/Trip.h -------------------------------------------------------------------------------- /DataStructures/Container/ExternalKHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/Container/ExternalKHeap.h -------------------------------------------------------------------------------- /DataStructures/Container/IndexedSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/Container/IndexedSet.h -------------------------------------------------------------------------------- /DataStructures/Container/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/Container/Map.h -------------------------------------------------------------------------------- /DataStructures/GTFS/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/GTFS/Data.h -------------------------------------------------------------------------------- /DataStructures/GTFS/Entities/Agency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/GTFS/Entities/Agency.h -------------------------------------------------------------------------------- /DataStructures/GTFS/Entities/Calendar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/GTFS/Entities/Calendar.h -------------------------------------------------------------------------------- /DataStructures/GTFS/Entities/CalendarDate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/GTFS/Entities/CalendarDate.h -------------------------------------------------------------------------------- /DataStructures/GTFS/Entities/Frequency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/GTFS/Entities/Frequency.h -------------------------------------------------------------------------------- /DataStructures/GTFS/Entities/Route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/GTFS/Entities/Route.h -------------------------------------------------------------------------------- /DataStructures/GTFS/Entities/Stop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/GTFS/Entities/Stop.h -------------------------------------------------------------------------------- /DataStructures/GTFS/Entities/StopTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/GTFS/Entities/StopTime.h -------------------------------------------------------------------------------- /DataStructures/GTFS/Entities/Transfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/GTFS/Entities/Transfer.h -------------------------------------------------------------------------------- /DataStructures/GTFS/Entities/Trip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/GTFS/Entities/Trip.h -------------------------------------------------------------------------------- /DataStructures/GTFS/Entities/Vehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/GTFS/Entities/Vehicle.h -------------------------------------------------------------------------------- /DataStructures/Geometry/CoordinateTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/Geometry/CoordinateTree.h -------------------------------------------------------------------------------- /DataStructures/Geometry/Metric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/Geometry/Metric.h -------------------------------------------------------------------------------- /DataStructures/Geometry/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/Geometry/Point.h -------------------------------------------------------------------------------- /DataStructures/Geometry/Rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/Geometry/Rectangle.h -------------------------------------------------------------------------------- /DataStructures/Graph/Classes/DynamicGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/Graph/Classes/DynamicGraph.h -------------------------------------------------------------------------------- /DataStructures/Graph/Classes/EdgeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/Graph/Classes/EdgeList.h -------------------------------------------------------------------------------- /DataStructures/Graph/Classes/GraphInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/Graph/Classes/GraphInterface.h -------------------------------------------------------------------------------- /DataStructures/Graph/Classes/StaticGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/Graph/Classes/StaticGraph.h -------------------------------------------------------------------------------- /DataStructures/Graph/Graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/Graph/Graph.h -------------------------------------------------------------------------------- /DataStructures/Graph/Utils/Conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/Graph/Utils/Conversion.h -------------------------------------------------------------------------------- /DataStructures/Graph/Utils/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/Graph/Utils/IO.h -------------------------------------------------------------------------------- /DataStructures/Graph/Utils/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/Graph/Utils/Utils.h -------------------------------------------------------------------------------- /DataStructures/Intermediate/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/Intermediate/Data.h -------------------------------------------------------------------------------- /DataStructures/Intermediate/Entities/Stop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/Intermediate/Entities/Stop.h -------------------------------------------------------------------------------- /DataStructures/Intermediate/Entities/StopEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/Intermediate/Entities/StopEvent.h -------------------------------------------------------------------------------- /DataStructures/Intermediate/Entities/Transfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/Intermediate/Entities/Transfer.h -------------------------------------------------------------------------------- /DataStructures/Intermediate/Entities/Trip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/Intermediate/Entities/Trip.h -------------------------------------------------------------------------------- /DataStructures/Queries/Queries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/Queries/Queries.h -------------------------------------------------------------------------------- /DataStructures/RAPTOR/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/RAPTOR/Data.h -------------------------------------------------------------------------------- /DataStructures/RAPTOR/Entities/ArrivalLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/RAPTOR/Entities/ArrivalLabel.h -------------------------------------------------------------------------------- /DataStructures/RAPTOR/Entities/Bags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/RAPTOR/Entities/Bags.h -------------------------------------------------------------------------------- /DataStructures/RAPTOR/Entities/EarliestArrivalTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/RAPTOR/Entities/EarliestArrivalTime.h -------------------------------------------------------------------------------- /DataStructures/RAPTOR/Entities/Journey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/RAPTOR/Entities/Journey.h -------------------------------------------------------------------------------- /DataStructures/RAPTOR/Entities/Route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/RAPTOR/Entities/Route.h -------------------------------------------------------------------------------- /DataStructures/RAPTOR/Entities/RouteSegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/RAPTOR/Entities/RouteSegment.h -------------------------------------------------------------------------------- /DataStructures/RAPTOR/Entities/Shortcut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/RAPTOR/Entities/Shortcut.h -------------------------------------------------------------------------------- /DataStructures/RAPTOR/Entities/Stop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/RAPTOR/Entities/Stop.h -------------------------------------------------------------------------------- /DataStructures/RAPTOR/Entities/StopEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/RAPTOR/Entities/StopEvent.h -------------------------------------------------------------------------------- /DataStructures/RAPTOR/Entities/TripIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/RAPTOR/Entities/TripIterator.h -------------------------------------------------------------------------------- /DataStructures/RAPTOR/MultimodalData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/RAPTOR/MultimodalData.h -------------------------------------------------------------------------------- /DataStructures/RAPTOR/TransferModes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/RAPTOR/TransferModes.h -------------------------------------------------------------------------------- /DataStructures/TripBased/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/TripBased/Data.h -------------------------------------------------------------------------------- /DataStructures/TripBased/Delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/TripBased/Delay.h -------------------------------------------------------------------------------- /DataStructures/TripBased/DelayData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/TripBased/DelayData.h -------------------------------------------------------------------------------- /DataStructures/TripBased/DelayInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/TripBased/DelayInfo.h -------------------------------------------------------------------------------- /DataStructures/TripBased/DelayUpdateData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/TripBased/DelayUpdateData.h -------------------------------------------------------------------------------- /DataStructures/TripBased/MultimodalData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/TripBased/MultimodalData.h -------------------------------------------------------------------------------- /DataStructures/TripBased/RouteLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/TripBased/RouteLabel.h -------------------------------------------------------------------------------- /DataStructures/TripBased/Shortcut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/TripBased/Shortcut.h -------------------------------------------------------------------------------- /DataStructures/TripBased/ShortcutCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/DataStructures/TripBased/ShortcutCollection.h -------------------------------------------------------------------------------- /Helpers/Assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Helpers/Assert.h -------------------------------------------------------------------------------- /Helpers/Calendar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Helpers/Calendar.h -------------------------------------------------------------------------------- /Helpers/Console/CommandLineParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Helpers/Console/CommandLineParser.h -------------------------------------------------------------------------------- /Helpers/Console/Progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Helpers/Console/Progress.h -------------------------------------------------------------------------------- /Helpers/Console/ProgressBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Helpers/Console/ProgressBar.h -------------------------------------------------------------------------------- /Helpers/ConstructorTags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Helpers/ConstructorTags.h -------------------------------------------------------------------------------- /Helpers/FileSystem/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Helpers/FileSystem/FileSystem.h -------------------------------------------------------------------------------- /Helpers/Helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Helpers/Helpers.h -------------------------------------------------------------------------------- /Helpers/HighlightText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Helpers/HighlightText.h -------------------------------------------------------------------------------- /Helpers/IO/ParserCSV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Helpers/IO/ParserCSV.h -------------------------------------------------------------------------------- /Helpers/IO/Serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Helpers/IO/Serialization.h -------------------------------------------------------------------------------- /Helpers/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Helpers/Meta.h -------------------------------------------------------------------------------- /Helpers/MultiThreading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Helpers/MultiThreading.h -------------------------------------------------------------------------------- /Helpers/Ranges/ConcatenatedRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Helpers/Ranges/ConcatenatedRange.h -------------------------------------------------------------------------------- /Helpers/Ranges/DirectEdgeRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Helpers/Ranges/DirectEdgeRange.h -------------------------------------------------------------------------------- /Helpers/Ranges/IndexRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Helpers/Ranges/IndexRange.h -------------------------------------------------------------------------------- /Helpers/Ranges/IndirectEdgeRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Helpers/Ranges/IndirectEdgeRange.h -------------------------------------------------------------------------------- /Helpers/Ranges/Range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Helpers/Ranges/Range.h -------------------------------------------------------------------------------- /Helpers/Ranges/ReverseRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Helpers/Ranges/ReverseRange.h -------------------------------------------------------------------------------- /Helpers/Ranges/SimultaneousRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Helpers/Ranges/SimultaneousRange.h -------------------------------------------------------------------------------- /Helpers/Ranges/SparseRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Helpers/Ranges/SparseRange.h -------------------------------------------------------------------------------- /Helpers/Ranges/SubRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Helpers/Ranges/SubRange.h -------------------------------------------------------------------------------- /Helpers/String/Enumeration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Helpers/String/Enumeration.h -------------------------------------------------------------------------------- /Helpers/String/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Helpers/String/String.h -------------------------------------------------------------------------------- /Helpers/TaggedInteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Helpers/TaggedInteger.h -------------------------------------------------------------------------------- /Helpers/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Helpers/Timer.h -------------------------------------------------------------------------------- /Helpers/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Helpers/Types.h -------------------------------------------------------------------------------- /Helpers/Vector/Permutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Helpers/Vector/Permutation.h -------------------------------------------------------------------------------- /Helpers/Vector/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Helpers/Vector/Vector.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/README.md -------------------------------------------------------------------------------- /Runnables/BuildNetworkExample.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Runnables/BuildNetworkExample.script -------------------------------------------------------------------------------- /Runnables/Commands/BenchmarkMcULTRA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Runnables/Commands/BenchmarkMcULTRA.h -------------------------------------------------------------------------------- /Runnables/Commands/BenchmarkMultimodal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Runnables/Commands/BenchmarkMultimodal.h -------------------------------------------------------------------------------- /Runnables/Commands/BenchmarkULTRA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Runnables/Commands/BenchmarkULTRA.h -------------------------------------------------------------------------------- /Runnables/Commands/BenchmarkULTRAPHAST.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Runnables/Commands/BenchmarkULTRAPHAST.h -------------------------------------------------------------------------------- /Runnables/Commands/CH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Runnables/Commands/CH.h -------------------------------------------------------------------------------- /Runnables/Commands/DelayExperiments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Runnables/Commands/DelayExperiments.h -------------------------------------------------------------------------------- /Runnables/Commands/NetworkIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Runnables/Commands/NetworkIO.h -------------------------------------------------------------------------------- /Runnables/Commands/NetworkTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Runnables/Commands/NetworkTools.h -------------------------------------------------------------------------------- /Runnables/Commands/ULTRAPreprocessing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Runnables/Commands/ULTRAPreprocessing.h -------------------------------------------------------------------------------- /Runnables/DelayExperiments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Runnables/DelayExperiments.cpp -------------------------------------------------------------------------------- /Runnables/Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Runnables/Network.cpp -------------------------------------------------------------------------------- /Runnables/ULTRA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Runnables/ULTRA.cpp -------------------------------------------------------------------------------- /Runnables/ULTRAPHAST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Runnables/ULTRAPHAST.cpp -------------------------------------------------------------------------------- /Shell/BasicShell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Shell/BasicShell.h -------------------------------------------------------------------------------- /Shell/Command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Shell/Command.h -------------------------------------------------------------------------------- /Shell/LineBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Shell/LineBuffer.h -------------------------------------------------------------------------------- /Shell/ParameterizedCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Shell/ParameterizedCommand.h -------------------------------------------------------------------------------- /Shell/Shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kit-algo/ULTRA/HEAD/Shell/Shell.h --------------------------------------------------------------------------------