-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
no output-file produced #2
Comments
I tried modifying the
It does indeed produce an output-file, but it contains only zeros.
|
Hi @willthbill, thank you for bringing this to my attention. The code was never set up to write the cover to a file, the command line option I have implemented this enhancement under the branch
All algorithms Finally, please note that the |
Hi Darren. Thanks a lot for fixing this quickly, I really appreciate it. I have a few comments on my experience so far:
Then the process does not stop, it just hangs. Is it on purpose, and what does it mean? The 10second timeout also does not kick in. It happened for different algorithms (also ReduVCC). With a fixed seed it sometimes happens and other times doesn't.
Other than what I mentioned above, I will say that it works really well and it is fast. I am very impressed! Thanks for all the help. |
Hi @willthbill , I will investigate the overwriting, but for the other issues I need example graphs to reproduce the issues. In particular, can you give:
For 2: it should mostly give the same results, however there can be some small variation caused by the time limit and busyness of the system: For example if the system is overloaded then not as many operations are run in the same wall time limit, and so it may not reach the same result in the time limit. As for reading standard output from C++: almost all statements (aside from some log output, which goes to standard error) are written to standard output. |
Hi Darren. The attached a graph that causes
I would say that at least every 10th time I run the above command it hangs. I did not have to look for a specific seed. It happened often also for other graphs. This is unfortunately the smallest one I could find, and I don't know how to find a minimal example, since I don't know what makes this particular graph hang. With the attached graph using |
Thank you for sending the instance. Apparently the search was not defaulting to 10s, it was defaulting to 0s, which was causing the I have committed a fix and made the default 10s. Please let me know if you continue to see the issue with |
Thank you. I ran I used input.txt as provided above. |
Hi @willthbill , Ah, I see. Based on your description, this "hanging" is expected in |
That makes sense. And before since the time limit didn't work, that made is hang "forever". |
Any attempt to detect if Note: If you run |
But I can't just stop the process while it is running right? Then it won't write to a file. |
So |
A breakdown:
|
This behavior can be easily integrated into |
This would be very useful. However, you shouldn't spend to much time on it, you already helped us a lot! |
I have added a new command-line argument: |
Very helpful! Thank you |
I am having trouble producing an output file.
Compilation:
scons program=vcc variant=optimized
Then when I run:
It produced the following standard output:
But, no output file is produced (output.txt).
It also does not produce the standard output file (tmppartition...) when I run with no output_filename parameter.
Am I doing something wrong?
Any chance you know what is going on?
The text was updated successfully, but these errors were encountered: