kit-algo / ULTRA

UnLimited TRAnsfers for Efficient Multimodal Journey Planning
MIT License
60 stars 125 forks source link

Network functionality #20

Closed IAMHAADICOOL closed 3 months ago

IAMHAADICOOL commented 7 months ago

[Hey,](Screenshot from 2024-03-22 12-39-10) can you please tell how to make the Network application work?

PatrickSteil commented 7 months ago

Hello, you must first compile the Network file by using the Makefile (the command in the console is make all). This will give you the executable ULTRA, Network, DelayExperiments and ULTRAPHAST. If you now want to execute a script with your commands, you must execute the corresponding file (e.g. ./Netwok) and then execute runScript FILENAME in the console of this file. Please note that not every file knows all commands. If you receive an error that a command is not known, you can use help to see which commands can be executed in the current file. The idea behind the separation of the files Network and the other files is that Network processes the input data, i.e. loads graphs / data, processes them and saves them in such a way that the other files can work with them. This is why the file Network supports commands such as parseGTFS or loadDimacsGraph.

IAMHAADICOOL commented 7 months ago

Yeah, I got that, thank you so much for it!