You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -35,14 +35,13 @@ The last column has the following key:
35
35
If we look at a specific problem whose struct is named `structName` and whose type is `type` as shown in the problem summary table. Then we are able to set up an instance of the struct for that specific problem using the following:
36
36
```julia
37
37
m =structName()
38
-
decprob =type(m) # type in this case refers to one of MDP, POMDP, SimpleGame, MG, POMG or, DecPOMDP
38
+
decprob =type(m) # type will be the name of one of the problem types in the last column
39
39
```
40
40
An example of this would be to create an instance of the Prisoner's Dilemma struct, we would use the following code:
0 commit comments