diff options
| author | Andrew Guschin <guschin.drew@gmail.com> | 2022-06-07 23:28:05 +0400 |
|---|---|---|
| committer | Andrew Guschin <guschin.drew@gmail.com> | 2022-06-07 23:28:05 +0400 |
| commit | e87a8c64bc365cefcbe2876cc00b909299765226 (patch) | |
| tree | 5f45bb68ceaf86ea44d31d45250358f295498d6e /src/main.rs | |
| parent | b05b068e45ff31a509e27473ae20ca006b7a3d68 (diff) | |
First version of report
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 41a5f5b..a6416e6 100644 --- a/src/main.rs +++ b/src/main.rs @@ -494,26 +494,32 @@ fn main() { if theorem15(&g, toughness, min_degree) { counters.t15_hamiltonian += 1; + println!("g6:bigalke-jung:{}", line); } if theorem25(&g, toughness, min_degree) { counters.t25_hamiltonian += 1; + println!("g6:bauer:{}", line); } if dirac_theorem(&g) { counters.dirac_hamiltonian += 1; + println!("g6:dirac:{}", line); } if ore_theorem(&g) { counters.ore_hamiltonian += 1; + println!("g6:ore:{}", line); } if posa_theorem(&g) { counters.posa_hamiltonian += 1; + println!("g6:posa:{}", line); } if is_complete { counters.bch_hamiltonian += 1; + println!("g6:bondy-chvatal:{}", line); } if is_complete && false { |