summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Guschin <guschin.drew@gmail.com>2022-06-08 19:45:29 +0400
committerAndrew Guschin <guschin.drew@gmail.com>2023-04-09 17:58:57 +0400
commit96e61039afe641e08ec524ff4cffcc911339061d (patch)
treee285a4e56010ec24fbf21f21e0370f11cfef4545
parent9a5f88dc8bbd45ce1c427133bc05adf87c23e90c (diff)
Final changes
-rw-r--r--.gitignore1
-rw-r--r--report/SCWorks.cls2
-rw-r--r--report/coursework.pdfbin668458 -> 668187 bytes
-rw-r--r--report/coursework.tex2
-rw-r--r--report/preamble.sty2
-rw-r--r--report/sources.bib3
-rw-r--r--report/titlepage.tex2
-rw-r--r--src/main.rs12
8 files changed, 15 insertions, 9 deletions
diff --git a/.gitignore b/.gitignore
index 067fbd0..956d7f0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -15,4 +15,5 @@ venv
*.out
*.gz
*.toc
+*.dvi
_minted-*
diff --git a/report/SCWorks.cls b/report/SCWorks.cls
index 2ccc67f..1fcbb41 100644
--- a/report/SCWorks.cls
+++ b/report/SCWorks.cls
@@ -875,7 +875,7 @@ C\cyro\cyrd\cyre\cyrr\cyrzh\cyra\cyrn\cyri\cyre\ \cyrr\cyra\cyrb%
\vspace{14pt}
\vspace{1cm}
{\centering
-\textbf{\MakeUppercase{\@title}}
+\textbf{\@title}
\\[0.3cm]
{\@workname}
diff --git a/report/coursework.pdf b/report/coursework.pdf
index 4cda32c..6b3da27 100644
--- a/report/coursework.pdf
+++ b/report/coursework.pdf
Binary files differ
diff --git a/report/coursework.tex b/report/coursework.tex
index dd9d275..66edcfe 100644
--- a/report/coursework.tex
+++ b/report/coursework.tex
@@ -495,4 +495,4 @@ NP"=полной задачей.
\label{app:python}
\inputminted[fontsize=\small, breaklines=true, style=bw, linenos]{rust}{../checker.py}
-\end{document} \ No newline at end of file
+\end{document}
diff --git a/report/preamble.sty b/report/preamble.sty
index cf89494..fc984ce 100644
--- a/report/preamble.sty
+++ b/report/preamble.sty
@@ -40,4 +40,4 @@
\newtheorem*{lemma*}{Лемма}
\newtheorem*{example}{Пример}
-\setminted[rust]{fontsize=\small, breaklines=true, style=bw, linenos} \ No newline at end of file
+\setminted[rust]{fontsize=\small, breaklines=true, style=bw, linenos}
diff --git a/report/sources.bib b/report/sources.bib
index 8bb2d3b..54399c3 100644
--- a/report/sources.bib
+++ b/report/sources.bib
@@ -104,7 +104,8 @@
title={ },
author={, },
year={1973},
- publisher={" }
+ address={},
+ publisher={ <<>>}
}
@book{graph6,
diff --git a/report/titlepage.tex b/report/titlepage.tex
index 84cd471..8c88798 100644
--- a/report/titlepage.tex
+++ b/report/titlepage.tex
@@ -49,4 +49,4 @@
% Включение нумерации рисунков, формул и таблиц по разделам
% (по умолчанию - нумерация сквозная)
% (допускается оба вида нумерации)
-% \secNumbering \ No newline at end of file
+% \secNumbering
diff --git a/src/main.rs b/src/main.rs
index a6416e6..e09d15f 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -557,16 +557,20 @@ fn main() {
println!("Total count of graphs: {}", counters.graphs);
println!("Count of 1-tough graphs: {}", counters.tough_1);
println!("Count of 2-tough graphs: {}", counters.tough_2);
- println!( "Count of Dirac's Hamiltonian graphs: {}",
+ println!(
+ "Count of Dirac's Hamiltonian graphs: {}",
counters.dirac_hamiltonian
);
- println!( "Count of Ore's Hamiltonian graphs: {}",
+ println!(
+ "Count of Ore's Hamiltonian graphs: {}",
counters.ore_hamiltonian
);
- println!( "Count of Posa's Hamiltonian graphs: {}",
+ println!(
+ "Count of Posa's Hamiltonian graphs: {}",
counters.posa_hamiltonian
);
- println!( "Count of Bondy-Chvatal Hamiltonian graphs: {}",
+ println!(
+ "Count of Bondy-Chvatal Hamiltonian graphs: {}",
counters.bch_hamiltonian
);
println!(