From 924dbc520d599cda056009109e2111444ba0e9bd Mon Sep 17 00:00:00 2001 From: Dean Krueger Date: Tue, 3 Mar 2026 18:58:47 -0600 Subject: [PATCH 1/4] added source/kernel/core to the gitignore, since it seemed like the type of thing to go in there --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 1e524ac8..d1ccac78 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,7 @@ source/user/CYCLUS_INSTALL.rst source/user/CYCAMORE_INSTALL.rst source/user/DEPENDENCIES.rst source/user/CYCAMORE_DEPS.rst +source/kernel/core docs.zip source/previous/release_table.rst From 9d5c1b6fbff27eca78611e1000eaa78618bcc39e Mon Sep 17 00:00:00 2001 From: Dean Krueger Date: Tue, 3 Mar 2026 19:07:23 -0600 Subject: [PATCH 2/4] added language to recipe reflecting its new status as required input --- source/user/input_specs/recipe.rst | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/source/user/input_specs/recipe.rst b/source/user/input_specs/recipe.rst index 97744ed3..25c59099 100644 --- a/source/user/input_specs/recipe.rst +++ b/source/user/input_specs/recipe.rst @@ -1,4 +1,4 @@ -``Recipe`` - Recipe Definition (optional, may appear multiple times) +``Recipe`` - Recipe Definition (required, may appear multiple times) ========================================================================== The most common resources being exchanged by |Cyclus| agents is a @@ -7,7 +7,9 @@ composition of a material object may be manipulated over time by the agents that transact it, it is often necessary for the user to define a specific recipe for a material. Each ``recipe`` section can be used to define a named composition that can then be referenced elsewhere, such as in the data for an -archetype. +archetype. Though at least one ``recipe`` block is required in every |Cyclus| +input file, it should be noted that it is possible to define a dummy ``recipe`` +and not use it should that be desired. A ``recipe`` block has the following sections in the following order: From 4607c52ea68172a3ca9d71a7b3325b157731b5b4 Mon Sep 17 00:00:00 2001 From: Dean Krueger Date: Tue, 3 Mar 2026 19:18:35 -0600 Subject: [PATCH 3/4] added back-quotes around an instance of recipe I missed initially --- source/user/input_specs/recipe.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/source/user/input_specs/recipe.rst b/source/user/input_specs/recipe.rst index 25c59099..4cdde2f2 100644 --- a/source/user/input_specs/recipe.rst +++ b/source/user/input_specs/recipe.rst @@ -5,11 +5,11 @@ The most common resources being exchanged by |Cyclus| agents is a :term:`material` which has both a :term:`composition` and a mass. While the composition of a material object may be manipulated over time by the agents that transact it, it is often necessary for the user to define a specific -recipe for a material. Each ``recipe`` section can be used to define a named -composition that can then be referenced elsewhere, such as in the data for an -archetype. Though at least one ``recipe`` block is required in every |Cyclus| -input file, it should be noted that it is possible to define a dummy ``recipe`` -and not use it should that be desired. +``recipe`` for a material. Each ``recipe`` section can be used to define a +named composition that can then be referenced elsewhere, such as in the data +for an archetype. Though at least one ``recipe`` block is required in every +|Cyclus| input file, it should be noted that it is possible to define a dummy +``recipe`` and not use it should that be desired. A ``recipe`` block has the following sections in the following order: From f20ec4047b784e21a37741d81e8abd2b95ac96cb Mon Sep 17 00:00:00 2001 From: Dean Krueger Date: Tue, 10 Mar 2026 11:28:17 -0500 Subject: [PATCH 4/4] ignore all core files everywhere --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index d1ccac78..7a645dde 100644 --- a/.gitignore +++ b/.gitignore @@ -9,7 +9,7 @@ source/user/CYCLUS_INSTALL.rst source/user/CYCAMORE_INSTALL.rst source/user/DEPENDENCIES.rst source/user/CYCAMORE_DEPS.rst -source/kernel/core +**/core docs.zip source/previous/release_table.rst