-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestcircuits_create_big.m
More file actions
33 lines (26 loc) · 892 Bytes
/
testcircuits_create_big.m
File metadata and controls
33 lines (26 loc) · 892 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
%#ok<*ASGLU>
dst_dir = fullfile('test_suites', 'big');
if exist(dst_dir,'dir')
rmdir(dst_dir, 's')
end
mkdir(dst_dir)
% mrewiens
name = 'o1';
[G, is_ext_node] = load_mrewiens(name);
save(fullfile(dst_dir, ['z' name]), 'G', 'is_ext_node');
name = 'r_network_int46k_ext8k_res67k_public';
[G, is_ext_node] = load_rommes(name);
save(fullfile(dst_dir, name), 'G', 'is_ext_node');
name = 'r_network_int48k_ext8k_res75k_public';
[G, is_ext_node] = load_rommes(name);
save(fullfile(dst_dir, name), 'G', 'is_ext_node');
name = 'r_network_int50k_ext4k_res94k_public';
[G, is_ext_node] = load_rommes(name);
save(fullfile(dst_dir, name), 'G', 'is_ext_node');
name = 'network_b';
[G, is_ext_node] = load_rommes2(name);
save(fullfile(dst_dir, name), 'G', 'is_ext_node');
name = 'network_c';
[G, is_ext_node] = load_rommes2(name);
save(fullfile(dst_dir, name), 'G', 'is_ext_node');
disp all_done