Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
__pycache__/
/__pycache__
206 changes: 154 additions & 52 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,60 +1,162 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Test_00", // Name of the current test
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/main.py", // Main Python file (do not modify)
"console": "integratedTerminal",
"args": ["--input-reactor",
"${workspaceFolder}/Reactors/R0.json", // Path to the reactor's JSON definition
"--gamma",
"0.9", // Discount factor employed in the MDP
"--random-seed",
"42"] // Random seed for the experiment
},
{
"name": "Test_00", // Name of the current test
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/main.py", // Main Python file (do not modify)
"console": "integratedTerminal",
"args": [
"--input-reactor",
"${workspaceFolder}/Reactors/R0.json", // Path to the reactor's JSON definition
"--gamma",
"0.9", // Discount factor employed in the MDP
"--random-seed",
"42"
] // Random seed for the experiment
},

{
"name": "Test_01", // Name of the current test
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/main.py", // Main Python file (do not modify)
"console": "integratedTerminal",
"args": ["--input-reactor",
"${workspaceFolder}/Reactors/R1.json", // Path to the reactor's JSON definition
"--gamma",
"0.9", // Discount factor employed in the MDP
"--random-seed",
"42"] // Random seed for the experiment
},
{
"name": "Test_01", // Name of the current test
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/main.py", // Main Python file (do not modify)
"console": "integratedTerminal",
"args": [
"--input-reactor",
"${workspaceFolder}/Reactors/R1.json", // Path to the reactor's JSON definition
"--gamma",
"0.9", // Discount factor employed in the MDP
"--random-seed",
"42"
] // Random seed for the experiment
},

{
"name": "Test_02", // Name of the current test
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/main.py", // Main Python file (do not modify)
"console": "integratedTerminal",
"args": ["--input-reactor",
"${workspaceFolder}/Reactors/R2.json", // Path to the reactor's JSON definition
"--gamma",
"0.9", // Discount factor employed in the MDP
"--random-seed",
"42"] // Random seed for the experiment
},
{
"name": "Test_02", // Name of the current test
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/main.py", // Main Python file (do not modify)
"console": "integratedTerminal",
"args": [
"--input-reactor",
"${workspaceFolder}/Reactors/R2.json", // Path to the reactor's JSON definition
"--gamma",
"0.9", // Discount factor employed in the MDP
"--random-seed",
"42"
] // Random seed for the experiment
},

{
"name": "Test_03", // Name of the current test
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/main.py", // Main Python file (do not modify)
"console": "integratedTerminal",
"args": ["--input-reactor",
"${workspaceFolder}/Reactors/R3.json", // Path to the reactor's JSON definition
"--gamma",
"0.9", // Discount factor employed in the MDP
"--random-seed",
"42"] // Random seed for the experiment
}
{
"name": "Test_03", // Name of the current test
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/main.py", // Main Python file (do not modify)
"console": "integratedTerminal",
"args": [
"--input-reactor",
"${workspaceFolder}/Reactors/R3.json", // Path to the reactor's JSON definition
"--gamma",
"0.9", // Discount factor employed in the MDP
"--random-seed",
"42"
] // Random seed for the experiment
},

{
"name": "Custom_Test_1", // Name of the current test
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/main.py", // Main Python file (do not modify)
"console": "integratedTerminal",
"args": [
"--input-reactor",
"${workspaceFolder}/Reactors/Reactor_1.json", // Path to the reactor's JSON definition
"--gamma",
"0.9", // Discount factor employed in the MDP
"--random-seed",
"42"
] // Random seed for the experiment
},

{
"name": "Custom_Test_2", // Name of the current test
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/main.py", // Main Python file (do not modify)
"console": "integratedTerminal",
"args": [
"--input-reactor",
"${workspaceFolder}/Reactors/Reactor_2.json", // Path to the reactor's JSON definition
"--gamma",
"0.9", // Discount factor employed in the MDP
"--random-seed",
"42"
] // Random seed for the experiment
},

{
"name": "Custom_Test_3", // Name of the current test
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/main.py", // Main Python file (do not modify)
"console": "integratedTerminal",
"args": [
"--input-reactor",
"${workspaceFolder}/Reactors/Reactor_3.json", // Path to the reactor's JSON definition
"--gamma",
"0.9", // Discount factor employed in the MDP
"--random-seed",
"42"
] // Random seed for the experiment
},

{
"name": "Custom_Test_4", // Name of the current test
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/main.py", // Main Python file (do not modify)
"console": "integratedTerminal",
"args": [
"--input-reactor",
"${workspaceFolder}/Reactors/Reactor_4.json", // Path to the reactor's JSON definition
"--gamma",
"0.9", // Discount factor employed in the MDP
"--random-seed",
"42"
] // Random seed for the experiment
},
{
"name": "Custom_Test_5", // Name of the current test
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/main.py", // Main Python file (do not modify)
"console": "integratedTerminal",
"args": [
"--input-reactor",
"${workspaceFolder}/Reactors/Reactor_5.json", // Path to the reactor's JSON definition
"--gamma",
"0.9", // Discount factor employed in the MDP
"--random-seed",
"42"
] // Random seed for the experiment
},
{
"name": "Custom_Test_6", // Name of the current test
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/main.py", // Main Python file (do not modify)
"console": "integratedTerminal",
"args": [
"--input-reactor",
"${workspaceFolder}/Reactors/Reactor_6.json", // Path to the reactor's JSON definition
"--gamma",
"0.9", // Discount factor employed in the MDP
"--random-seed",
"42"
] // Random seed for the experiment
}
]
}
Loading