diff --git a/assignment/doc/TIPS.txt b/assignment/doc/TIPS.txt
deleted file mode 100644
index d16e344..0000000
--- a/assignment/doc/TIPS.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-CODING CONVENTIONS
-
-1. write your methods always in the following order:
-
- extTransition
- timeAdvance
- outputFnc
- intTransition
-
- this reflects the order in which the methods are called by the simulator:
-
- extTransition always has highest priority (can interrupt anything)
- timeAdvance is called before outputFnc
- outputFnc is called right before intTransition
-
-
-2. input/output port attributes start with 'in_' and 'out_'
-
-
-TROUBLESHOOTING
-
- - did you forget to return `self.state` from intTransition or extTransition ?
- - did you accidentally write to `self.x` instead of `self.state.x` ?
- - did you modify the state in timeAdvance or outputFnc (NOT ALLOWED!!)
diff --git a/assignment/doc/assignment.html b/assignment/doc/assignment.html
index fe49409..6fd0bf3 100644
--- a/assignment/doc/assignment.html
+++ b/assignment/doc/assignment.html
@@ -1,3 +1,5 @@
+
The system as a whole is modeled as a Coupled DEVS block. Many of its parameters are passed as-is to the underlying Atomic DEVS blocks, such as: +
The system as a whole is modeled as a Coupled DEVS block. Its parameters are mostly passed as-is to the underlying Atomic DEVS blocks. They are:
You must stick to the rules of DEVS:
+You must stick to the rules of DEVS:
Any violation of these rules results in an incorrect solution. Points will be subtracted.
+Please follow these coding conventions:
+This reflects the order in which the methods are called by the simulator:
+Common mistakes include: +