Skip to content
Closed
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
7 changes: 5 additions & 2 deletions MyIA.AI.Notebooks/Sudoku/Sudoku-1-Backtracking-Csharp.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,10 @@
"\n",
" return true;\n",
" }\n",
"}\n"
"}\n",
"\n",
"Console.WriteLine(\"Classe BacktrackingDotNetSolver definie avec succes\");\n",
""
]
},
{
Expand Down Expand Up @@ -762,4 +765,4 @@
},
"nbformat": 4,
"nbformat_minor": 5
}
}
13 changes: 12 additions & 1 deletion MyIA.AI.Notebooks/Sudoku/Sudoku-11-Choco-Csharp.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,18 @@
}
},
"outputs": [],
"source": "// Charger les DLLs IKVM runtime (requis pour Choco-solver)\n// Les DLLs doivent etre dans le meme repertoire que le notebook\n#r \"IKVM.Runtime.dll\"\n#r \"IKVM.Java.dll\"\n#r \"IKVM.CoreLib.dll\"\n\n// Charger la DLL Choco-solver pré-compilée\n#r \"org.chocosolver.solver.dll\""
"source": [
"// Charger les DLLs IKVM runtime (requis pour Choco-solver)\n",
"// Les DLLs doivent etre dans le meme repertoire que le notebook\n",
"#r \"IKVM.Runtime.dll\"\n",
"#r \"IKVM.Java.dll\"\n",
"#r \"IKVM.CoreLib.dll\"\n",
"\n",
"// Charger la DLL Choco-solver pré-compilée\n",
"#r \"org.chocosolver.solver.dll\"\n",
"Console.WriteLine(\"DLLs Choco-solver et runtime IKVM chargees\");\n",
""
]
},
{
"cell_type": "markdown",
Expand Down
Loading
Loading