diff options
| author | ziejd2 | 2019-01-28 16:37:57 -0600 |
|---|---|---|
| committer | ziejd2 | 2019-01-28 16:37:57 -0600 |
| commit | 995f6673b5e725d6907ccd4f8e25033e8524f116 (patch) | |
| tree | 5df08d9503394eab1190a01a640f3c338e8c74d6 /sourcecodes/run_scripts/run_mod_edges | |
| parent | bb9d93322abf825368dedaafc2376ef8fdfc1e2f (diff) | |
| download | BNW-995f6673b5e725d6907ccd4f8e25033e8524f116.tar.gz | |
Deleting old versions of files
Diffstat (limited to 'sourcecodes/run_scripts/run_mod_edges')
| -rw-r--r-- | sourcecodes/run_scripts/run_mod_edges | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/sourcecodes/run_scripts/run_mod_edges b/sourcecodes/run_scripts/run_mod_edges new file mode 100644 index 00000000..30176e9c --- /dev/null +++ b/sourcecodes/run_scripts/run_mod_edges @@ -0,0 +1,24 @@ +#!/usr/bin/octave -qf +cd ./data +arg_list = argv(); +addpath("../bnt-master"); +addpath(genpathKPM("../bnt-master")); +addpath("../parameter_learning"); +modifyEdges(arg_list{1},arg_list{2}); + +fname1=strcat(arg_list{1},"continuous_input.txt"); +fname2=strcat(arg_list{2},"continuous_input.txt"); +copyfile(fname1,fname2); + +fname1=strcat(arg_list{1},"continuous_input_orig.txt"); +fname2=strcat(arg_list{2},"continuous_input_orig.txt"); +copyfile(fname1,fname2); + +fname1=strcat(arg_list{1},"nnode.txt"); +fname2=strcat(arg_list{2},"nnode.txt"); +copyfile(fname1,fname2); + +fname1=strcat(arg_list{1},"name.txt"); +fname2=strcat(arg_list{2},"name.txt"); +copyfile(fname1,fname2); + |
