Skip to content

Commit

Permalink
busing
Browse files Browse the repository at this point in the history
Repaired new bug in NK iteration
Fixed bug in 2-stage estimation
Added SetDoNotVary() methods
Fixed output bug in Gradient iteration
Rewrote readbus code
Tweaking rust replication
  • Loading branch information
ferrall committed Oct 1, 2020
1 parent 1c75d3f commit 04531b9
Show file tree
Hide file tree
Showing 83 changed files with 21,160 additions and 1,007 deletions.
12 changes: 11 additions & 1 deletion docs/DDP/Data.ox.html
Original file line number Diff line number Diff line change
Expand Up @@ -2991,7 +2991,7 @@ <h3><span class="icon"><img class="icon" src="icons/method.png">&nbsp;</span><sp
<a name="Path___Simulate"></a>
<h3><span class="icon"><img class="icon" src="icons/method.png">&nbsp;</span><span class="text">Simulate</span></h3>

<span class="declaration">virtual Path :: Simulate ( T , DropTerminal )</span>
<span class="declaration">virtual Path :: Simulate ( newstate , T , DropTerminal )</span>
<dl><dd>
Simulate a list of realized states and actions from an initial state.
<P/>
Expand All @@ -3000,8 +3000,18 @@ <h3><span class="icon"><img class="icon" src="icons/method.png">&nbsp;</span><sp
<dl><dt class="parameters">Parameters:</dt><dd class="parameters"><!-- parameter table --!>
<table class="parameter_table">
<tr>
<td class="declaration" valign="baseline">newstate</td>
<td class="description" valign="baseline">UnInitialized (default) state already set<br/>state to add to group state
</td>
</tr>
<tr>
<td class="declaration" valign="baseline">T</td>
<td class="description" valign="baseline">integer, max. length of the panel<br/>0, no maximum lenth; simulation goes on until a Terminal State is reached.
</td>
</tr>
<tr>
<td class="declaration" valign="baseline">DropTerminal</td>
<td class="description" valign="baseline">drop states that are terminal
<P/>
</td>
</tr>
Expand Down
15 changes: 15 additions & 0 deletions docs/DDP/Shared.ox.html
Original file line number Diff line number Diff line change
Expand Up @@ -822,6 +822,11 @@ <h2><span class="icon"><img class="icon" src="icons/class.png">&nbsp;</span><spa
<td class="description">Reset the starting value of a parameter.</td>
</tr>
<tr class="odd">
<td class="declaration"><img class="icon" src="icons/method_s.png">&nbsp;<a href="Shared.ox.html#Parameter___SetDoNotVary">SetDoNotVary</a></td>
<td class="modifiers">virtual</td>
<td class="description">Toggle the value of <a href="Shared.ox.html#Parameter___DoNotVary">DoNotVary</a>.</td>
</tr>
<tr class="even">
<td class="declaration"><img class="icon" src="icons/method_s.png">&nbsp;<a href="Shared.ox.html#Parameter___ToggleDoNotVary">ToggleDoNotVary</a></td>
<td class="modifiers">virtual</td>
<td class="description">Toggle the value of <a href="Shared.ox.html#Parameter___DoNotVary">DoNotVary</a>.</td>
Expand Down Expand Up @@ -2783,6 +2788,16 @@ <h3><span class="icon"><img class="icon" src="icons/field.png">&nbsp;</span><spa

</dd></dl>

<hr>
<a name="Parameter___SetDoNotVary"></a>
<h3><span class="icon"><img class="icon" src="icons/method.png">&nbsp;</span><span class="text">SetDoNotVary</span></h3>

<span class="declaration">virtual Parameter :: SetDoNotVary ( setting )</span>
<dl><dd>
Toggle the value of <a href="Shared.ox.html#Parameter___DoNotVary">DoNotVary</a>.

</dd></dl>

<hr>
<a name="Parameter___start"></a>
<h3><span class="icon"><img class="icon" src="icons/field.png">&nbsp;</span><span class="text">start</span></h3>
Expand Down
692 changes: 348 additions & 344 deletions docs/DDP/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/FiveO/Objective.ox.html
Original file line number Diff line number Diff line change
Expand Up @@ -1713,7 +1713,7 @@ <h3><span class="icon"><img class="icon" src="icons/method.png">&nbsp;</span><sp
<DD>tplist fixed</DD>
<DD>Bellman DoNotIterate = FALSE</dd>
<DD>Object is reset</DD>
<DT>Stage TW:</DT>
<DT>Stage Two:</DT>
<DD>Both parameter lists vary, method iterates</DD>
<dd>
<P/>
Expand Down Expand Up @@ -1749,7 +1749,7 @@ <h3><span class="icon"><img class="icon" src="icons/field.png">&nbsp;</span><spa
<a name="DataObjective___TwoStage"></a>
<h3><span class="icon"><img class="icon" src="icons/method.png">&nbsp;</span><span class="text">TwoStage</span></h3>

<span class="declaration">DataObjective :: TwoStage ( tplist , uplist )</span>
<span class="declaration">DataObjective :: TwoStage ( intplist , inuplist )</span>
<dl><dd>
Specify the objective as two stage.

Expand Down
79 changes: 59 additions & 20 deletions docs/FiveO/Parameters.ox.html

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions docs/FiveO/Shared.ox.html
Original file line number Diff line number Diff line change
Expand Up @@ -822,6 +822,11 @@ <h2><span class="icon"><img class="icon" src="icons/class.png">&nbsp;</span><spa
<td class="description">Reset the starting value of a parameter.</td>
</tr>
<tr class="odd">
<td class="declaration"><img class="icon" src="icons/method_s.png">&nbsp;<a href="Shared.ox.html#Parameter___SetDoNotVary">SetDoNotVary</a></td>
<td class="modifiers">virtual</td>
<td class="description">Toggle the value of <a href="Shared.ox.html#Parameter___DoNotVary">DoNotVary</a>.</td>
</tr>
<tr class="even">
<td class="declaration"><img class="icon" src="icons/method_s.png">&nbsp;<a href="Shared.ox.html#Parameter___ToggleDoNotVary">ToggleDoNotVary</a></td>
<td class="modifiers">virtual</td>
<td class="description">Toggle the value of <a href="Shared.ox.html#Parameter___DoNotVary">DoNotVary</a>.</td>
Expand Down Expand Up @@ -2783,6 +2788,16 @@ <h3><span class="icon"><img class="icon" src="icons/field.png">&nbsp;</span><spa

</dd></dl>

<hr>
<a name="Parameter___SetDoNotVary"></a>
<h3><span class="icon"><img class="icon" src="icons/method.png">&nbsp;</span><span class="text">SetDoNotVary</span></h3>

<span class="declaration">virtual Parameter :: SetDoNotVary ( setting )</span>
<dl><dd>
Toggle the value of <a href="Shared.ox.html#Parameter___DoNotVary">DoNotVary</a>.

</dd></dl>

<hr>
<a name="Parameter___start"></a>
<h3><span class="icon"><img class="icon" src="icons/field.png">&nbsp;</span><span class="text">start</span></h3>
Expand Down
Loading

0 comments on commit 04531b9

Please sign in to comment.