Hi there,
we are a student-group from Germany. We are currently trying to use FET over command-line.
We have already successfully created XML-Documents with activities, teachers, rooms, constraints and so on.
The next thing we want to implement is, that we want to create a progress bar to visualize the current progress of FET.
We found the txt-file "max_placed_activities.txt" in the logs-folder but it seems that there is only the result of the algorithm written (and not the progress, while the algorithm is running).
Is there a way to get a hold of these information at runtime of the algorithm?
If not: Where would we have to edit the source-code to write these information to a file by ourselves?
Thanks beforehand
HAW-AW
max_placed_activities.txt updates whenever FET manages to place one more activity than previous maximum. What do you mean it is only the result written? It is updated in real time.
Please try to run FET command line in a console. If you work on Windows, enable console output (I think in src.pro you need to add a {win32} CONFIG+=console - search please Qt documentation for adding support for console under Windows). Then, in the console, FET outputs the current operation.
Check please this output and we'll talk after that.
Or, see in src/engine/generate.cpp, function Generate::generate, what is with cout<<...something...added_act. This is the FET output to console.
Edited to correct: I think the correct way is: {win32 CONFIG+=console}. I am not sure, though.
Thank you very much.
We checked it again and there was an error on our side.
Thanks for your good work
HAWTeam-A