You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

140 lines
2.7 KiB

5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
  1. % Template for Exams
  2. %
  3. \input{util/version}
  4. \documentclass{article}
  5. \input{util/packages}
  6. \input{util/math_macros}
  7. \input{util/styling_macros}
  8. \input{util/constants}
  9. \input{util/chapter}
  10. \input{util/tcolorbox}
  11. \pagestyle{fancy}
  12. \fancyfoot[C]{}
  13. \fancyfoot[R]{Page \thepage\ of \pageref{LastPage}}
  14. \fancypagestyle{autoempty}{
  15. \fancyhf{}
  16. \fancyfoot[R]{Page \thepage\ of \pageref{LastPage}}
  17. \renewcommand{\footrulewidth}{.4pt}
  18. \renewcommand{\headrulewidth}{.4pt}
  19. }
  20. \renewcommand{\footrulewidth}{\headrulewidth}
  21. %\renewcommand{\headrule}{\ifthenelse{\isodd{\thepage}}{\hrule}{}}
  22. \makeatletter
  23. \def\cleardoublepage{\clearpage\if@twoside \ifodd\c@page\else
  24. \hbox{}
  25. \thispagestyle{autoempty}
  26. \newpage
  27. \if@twocolumn\hbox{}\newpage\fi\fi\fi}
  28. \makeatother
  29. \newcounter{beforeCounter}
  30. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  31. \begin{document}
  32. \begin{titlepage}
  33. \begin{center}
  34. {\Large {\bf{Questionnaire ``Logic and Computability''}}}
  35. \hspace{3cm}
  36. {\Large {\bf{Summer Term 2023}}}
  37. \tableofcontents
  38. \end{center}
  39. \end{titlepage}
  40. \thispagestyle{empty}
  41. \setcounter{page}{1}
  42. \clearpage
  43. \ifchapterproplogic
  44. \setsectionnum{0}
  45. \section{Propositional Logic}
  46. \input{propositional_logic/propositional_logic.tex}
  47. \pagebreak
  48. \fi
  49. \ifchaptersatsolver
  50. \setsectionnum{1}
  51. \section{SAT Solvers}
  52. \input{sat_solvers_dpll/sat_solvers_dpll.tex}
  53. \pagebreak
  54. \fi
  55. \ifchapterbdd
  56. \setsectionnum{2}
  57. \section{Binary Decision Diagrams}
  58. \input{bdds/bdds.tex}
  59. \pagebreak
  60. \fi
  61. \ifchapterndprop
  62. \setsectionnum{3}
  63. \section{Natural Deduction for Propositional Logic}
  64. \input{natural_deduction_propositional_logic/natural_deduction_prop_logic.tex}
  65. \pagebreak
  66. \fi
  67. \ifchaptereqchecking
  68. \setsectionnum{4}
  69. \section{Combinational Equivalence Checking}
  70. \input{equivalence_checking/equivalence_checking.tex}
  71. \pagebreak
  72. \fi
  73. \ifchaptersmtzthree
  74. \setsectionnum{5}
  75. \section{SMT Solvers and Z3}
  76. \input{smt_and_z3/smt_and_z3.tex}
  77. \pagebreak
  78. \fi
  79. \ifchapterpredlogic
  80. \setsectionnum{6}
  81. \section{Predicate Logic}
  82. \input{predicate_logic/predicate_logic.tex}
  83. \pagebreak
  84. \fi
  85. \ifchapterndpred
  86. \setsectionnum{5}
  87. \section{Natural Deduction for Predicate Logic}
  88. \input{natural_deduction_predicate_logic/natural_deduction_predicate_logic.tex}
  89. \pagebreak
  90. \fi
  91. \ifchaptersmt
  92. \setsectionnum{6}
  93. \section{Satisfiability Modulo Theories}
  94. \input{smt/smt.tex}
  95. \pagebreak
  96. \fi
  97. \ifchaptersymbenc
  98. \setsectionnum{9}
  99. \section{Symbolic Encoding}
  100. \input{symbolic_encoding/symbolic_encoding.tex}
  101. \pagebreak
  102. \fi
  103. \ifchaptertemporal
  104. \setsectionnum{10}
  105. \section{Temporal Logic}
  106. \input{temporal_logic/temporal_logic.tex}
  107. \pagebreak
  108. \fi
  109. %---------------------------------------------------------
  110. \end{document}