| Commit message (Collapse) | Author | Age |
| |
|
|
|
|
|
| |
Picosat is as default using 0 as seed for random generator. This lead
on same configuration every time.
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
Picosat output is parsed and automatically is resolved to dictionary
with configuration option name as key and boolean value. This makes all
configurations in script of same type. All are dictionaries this way.
|
|
|
|
|
|
|
| |
This caused that instead of multiple numbers was parsed only one number
including every single number character as separated number. Because of
this was generated wrong CNF file and sometimes if zero was in number
picosat failed with error.
|
|
|
|
|
|
| |
Managing configurations in files and in database could cause
inconsistence. Adding all generated configurations to database allow us
to clean project files without loosing data.
|
|
|
|
|
|
|
| |
If generating single throw NoSolution exception, randomly generated CNF
file is removed. But finally statement tries to remove it once again.
Solution is to not remove CNF file in exception handling, but only by
finally statement.
|
|
|
|
|
| |
measure_list containst ints. But method writelines can only be used with
strings.
|
|
|
|
|
| |
This fixes and ensures that every call generates configuration. Unless
False is returned.
|
|
|
|
|
| |
Configuration are generated with random assumptions. This should
generate different configuration for every SAT solver execution.
|
|
|
|
| |
Loading configuration load all configuration options as True.
|
| |
|
|
|
|
|
| |
When some generator tries to register already generated solution, it
shouldn't be registered.
|
|
|
|
| |
Type inserted to method is str, but threated as int.
|
|
|
|
|
|
| |
Previous method of calculating hash wasn't work (wouldn't give same
result for same configuration) if there would be added
new configuration options to hashconfigsort file.
|
|
|
|
| |
configuration per execution
|
|
|
|
| |
This identifier is for recognition what generator generated specified configuration as first.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Also initial implementation of multithread execution.
A lot of functionality changed.
Phases removed.
Output parsing is now part of measure (boot) process.
Utils cleared.
Add dot_measure file for inverted dot_config.
Configuration generating is now prepared for multiple generating types. Fist implemented is generating configurations with single selected configuration.
Test is modified to be compatible with new changes.
|
|
|
|
|
| |
Recently committed code wasn't tested, because most of the required infrastructure wasn't yet written.
So bugs must be fixed after more parts of system are reimplemented.
|
|
|
|
|
|
|
|
|
|
| |
THIS MAKES SCRIPT INCONSISTENT AND PROJECT IS NOT WORKING UNTIL OTHER COMMIT MESSAGE SAYS OTHERWISE.
Configurations are now generated to separated folder and have syntax compatible with linux configuration files.
This way applying new configuration is not necessary.
Also script is now communicating with database.
Functions are prepared for multiple different generating possibilities.
Also configuration generation is removed from initialize script.
|
|
New name more better resembles what script does.
|