File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 1+ Node A
2+ {
3+ logic = A;
4+ rate_up = @logic ? 1.0 : 0.0;
5+ rate_down = 0.0 ;
6+ }
7+
8+ Node B
9+ {
10+ logic = A & !C;
11+ rate_up = @logic ? 2.0 : 0.0;
12+ rate_down = 0.0;
13+ }
14+
15+ Node C
16+ {
17+ logic = A & !B;
18+ rate_up = @logic ? 1.0 : 0.0;
19+ rate_down = 0.0;
20+ }
21+
22+
23+
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ discrete_time = 0;
77use_physrandgen = FALSE;
88seed_pseudorandom = 100;
99sample_count = 100000;
10- max_time = 5;
11- time_tick = 0.01 ;
12- thread_count = 6 ;
10+ max_time = 5.1 ;
11+ time_tick = 0.05 ;
12+ thread_count = 16 ;
1313
Original file line number Diff line number Diff line change 1+ Node A
2+ {
3+ rate_up = 0.0;
4+ rate_down = 0.0 ;
5+ }
6+
7+ Node B
8+ {
9+ logic = A & !C;
10+ rate_up = @logic ? 2.0 : 0.0;
11+ rate_down = 0.0;
12+ }
13+
14+ Node C
15+ {
16+ logic = A & !B;
17+ rate_up = @logic ? 1.0 : 0.0;
18+ rate_down = 0.0;
19+ }
20+
21+ division
22+ {
23+ rate = A & !(B|C) ? 1.0 : 0.0;
24+ }
Original file line number Diff line number Diff line change 1+ A.istate =1;
2+ B.istate =0;
3+ C.istate =0;
4+
5+ init_pop = 1;
6+
7+ $DivRate =0.1;
8+
9+ discrete_time = 0;
10+ //use_physrandgen = FALSE;
11+ use_physrandgen = FALSE;
12+ seed_pseudorandom = 100;
13+ sample_count = 100000;
14+ max_time = 10;
15+ time_tick = 0.1;
16+ thread_count = 6;
17+
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ A.istate=1;
22B.istate =0;
33C.istate =0;
44
5- init_pop = 3 ;
5+ init_pop = 1 ;
66
77$DivRate =0.1;
88
Original file line number Diff line number Diff line change 1+ Node A
2+ {
3+ logic = A;
4+ rate_up = @logic ? 1.0 : 0.0;
5+ rate_down = 0.0 ;
6+ }
7+
8+ Node B
9+ {
10+ logic = A & !C;
11+ rate_up = @logic ? 2.0 : 0.0;
12+ rate_down = 0.0;
13+ }
14+
15+ Node C
16+ {
17+ logic = A & !B;
18+ rate_up = @logic ? 1.0 : 0.0;
19+ rate_down = 0.0;
20+ }
21+
22+ Node Division
23+ {
24+ rate_up = A & !(B|C) ? $DivRate : 0.0;
25+ rate_down = 0.0;
26+ }
Original file line number Diff line number Diff line change 1+ A.istate =1;
2+ B.istate =0;
3+ C.istate =0;
4+ Division.istate =0;
5+ $DivRate =1;
6+
7+ discrete_time = 0;
8+ //use_physrandgen = FALSE;
9+ use_physrandgen = FALSE;
10+ seed_pseudorandom = 100;
11+ sample_count = 100000;
12+ max_time = 0.1;
13+ time_tick = 0.01;
14+ thread_count = 6;
15+
You can’t perform that action at this time.
0 commit comments