From 6dada530e104b3f161da81745ded6ff5c119f000 Mon Sep 17 00:00:00 2001 From: Mart Lubbers Date: Tue, 7 Oct 2014 10:47:26 +0200 Subject: [PATCH] Initial second commit with skeleton --- diagnosis.pl => pl-files/diagnosis.pl | 0 .../domain-template.pl | 0 .../instance-template.pl | 0 planner.pl => pl-files/planner.pl | 0 .../sample-blocks-domain.pl | 0 sample-blocks.pl => pl-files/sample-blocks.pl | 0 tp.pl => pl-files/tp.pl | 0 report/.gitignore | 4 ++++ report/Makefile | 6 +++++ report/report.tex | 23 +++++++++++++++++++ 10 files changed, 33 insertions(+) rename diagnosis.pl => pl-files/diagnosis.pl (100%) rename domain-template.pl => pl-files/domain-template.pl (100%) rename instance-template.pl => pl-files/instance-template.pl (100%) rename planner.pl => pl-files/planner.pl (100%) rename sample-blocks-domain.pl => pl-files/sample-blocks-domain.pl (100%) rename sample-blocks.pl => pl-files/sample-blocks.pl (100%) rename tp.pl => pl-files/tp.pl (100%) create mode 100644 report/.gitignore create mode 100644 report/Makefile create mode 100644 report/report.tex diff --git a/diagnosis.pl b/pl-files/diagnosis.pl similarity index 100% rename from diagnosis.pl rename to pl-files/diagnosis.pl diff --git a/domain-template.pl b/pl-files/domain-template.pl similarity index 100% rename from domain-template.pl rename to pl-files/domain-template.pl diff --git a/instance-template.pl b/pl-files/instance-template.pl similarity index 100% rename from instance-template.pl rename to pl-files/instance-template.pl diff --git a/planner.pl b/pl-files/planner.pl similarity index 100% rename from planner.pl rename to pl-files/planner.pl diff --git a/sample-blocks-domain.pl b/pl-files/sample-blocks-domain.pl similarity index 100% rename from sample-blocks-domain.pl rename to pl-files/sample-blocks-domain.pl diff --git a/sample-blocks.pl b/pl-files/sample-blocks.pl similarity index 100% rename from sample-blocks.pl rename to pl-files/sample-blocks.pl diff --git a/tp.pl b/pl-files/tp.pl similarity index 100% rename from tp.pl rename to pl-files/tp.pl diff --git a/report/.gitignore b/report/.gitignore new file mode 100644 index 0000000..14e0dfa --- /dev/null +++ b/report/.gitignore @@ -0,0 +1,4 @@ +*.aux +*.log +*.pdf +*.toc diff --git a/report/Makefile b/report/Makefile new file mode 100644 index 0000000..c61ac75 --- /dev/null +++ b/report/Makefile @@ -0,0 +1,6 @@ +all: + pdflatex report.tex + pdflatex report.tex + +clean: + rm -vf *.aux *.log *.pdf *.toc diff --git a/report/report.tex b/report/report.tex new file mode 100644 index 0000000..d917b65 --- /dev/null +++ b/report/report.tex @@ -0,0 +1,23 @@ +\documentclass[titlepage,a4paper]{article} + +\usepackage{lipsum} + +\author{ + Caspar Safarlou (s4205456)\\ + Mart Lubbers (s4109503) +} +\title{Knowledge Representation and Reasoning.\\Assignment 1} +\date{\today} + +\begin{document} +\maketitle +\tableofcontents +\newpage + +\section{Introductie} +\lipsum + +\section{Assignment 1} +\lipsum + +\end{document} -- 2.20.1