-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement saving of configuration to a set of JSON files, one per ite…
…ration. To export (%d MUST be present): ./mkFit --json-save-iterations mkfit-iteration-%d.json To load a single file, e.g.: ./mkFit .... --json-patch mkfit-iteration-0-test.json To load a set of files use shell, --json-patch must be given for every file: ./mkFit .... `for a in {0..8}; do echo --json-patch mkfit-iteration-$a.json; done` From ./mkFit --help: JSON config patcher options: --json-patch <filename> patch iteration config from given JSON file (def: do not patch) can be specified multiple times for several files --json-save-iterations <fname-fmt> save per iteration json files %d in fname-fmt gets replaced with iteration number --json-patch-verbose print each patch assignment as it is being made (def: false) --json-patch-dump-before print iteration config before patching (def: false) --json-patch-dump-after print iteration config after patching (def: false)
- Loading branch information
Showing
5 changed files
with
213 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.