This commit is contained in:
hneemann 2016-07-14 15:36:48 +02:00
parent 4b891a3a0c
commit e7f20d2331

View File

@ -10,7 +10,7 @@ import java.util.*;
/** /**
* The Model contains all the nodes of the model. * The Model contains all the nodes of the model.
* Every time the circuit is started a new model is created. * Every time the circuit is started a new model is created.
* The model has the possibility to run the model in full step mode (all changes of values are propagated to a stable state) * The model has the possibility to be run in full step mode (all changes of values are propagated to a stable state)
* or in micro stepping mode: Only the gates which had a change on one of the input signals are updated. Then the * or in micro stepping mode: Only the gates which had a change on one of the input signals are updated. Then the
* calculation is stopped. * calculation is stopped.
* <br> * <br>
@ -24,8 +24,8 @@ import java.util.*;
* </li> * </li>
* <li> * <li>
* If noise is turned on, all the nodes to update a updated in a random order. So the startup of a RS-FF is no problem. * If noise is turned on, all the nodes to update a updated in a random order. So the startup of a RS-FF is no problem.
* But the initial state of the model is undefined. To bring the model a defined initial state you can use the * But the initial state of the model is undefined. To bring the model to a defined initial state you can use the
* Reset element. Its output is hold at zero during startup, and when a stable state is reached it becomes one. * Reset element. Its output is hold down at zero during startup, and when a stable state is reached it becomes one.
* </li> * </li>
* </ol> * </ol>
* There are also some lists to store special elements. These lists are populated by the elements during the * There are also some lists to store special elements. These lists are populated by the elements during the