diff options
author | Karel Kočí <cynerd@email.cz> | 2015-02-03 20:57:20 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2015-02-03 20:57:20 +0100 |
commit | ef85245f159402fd948ff045b56ad9095d22b39e (patch) | |
tree | cf5d0f0ce017ed4c29c2c46da0cb6311c88c2733 /scripts/iteration.py | |
parent | 9f07dd89b7cd2de6ce341afd1aed3e6bd0122a27 (diff) | |
download | linux-conf-perf-ef85245f159402fd948ff045b56ad9095d22b39e.tar.gz linux-conf-perf-ef85245f159402fd948ff045b56ad9095d22b39e.tar.bz2 linux-conf-perf-ef85245f159402fd948ff045b56ad9095d22b39e.zip |
Implementing main loop
These new scripts are part of main loop.
kernel is not finished!!
Divides kconfig_parser, sat_solution to better named modules.
Phasing and iteration is implemented for loop watching.
Diffstat (limited to 'scripts/iteration.py')
-rw-r--r-- | scripts/iteration.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/iteration.py b/scripts/iteration.py new file mode 100644 index 0000000..f885b37 --- /dev/null +++ b/scripts/iteration.py @@ -0,0 +1,12 @@ +from conf import conf + +def reset(): + with open(conf.iteration_file, 'w') as f: + f.write('0') + +def inc(): + with open(conf.iteration_file, 'r') as f: + it = int(f.read()) + it += 1 + with open(conf.iteration_file, 'w') as f: + f.write(str(it)) |