diff --git a/dev/.buildinfo b/dev/.buildinfo index b658c23d..b8dbf68c 100644 --- a/dev/.buildinfo +++ b/dev/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: 27156391a234979f980663c7fe268e0b +config: 747b53d1739fdce68ea9ce29b77cd83e tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/dev/.doctrees/environment.pickle b/dev/.doctrees/environment.pickle index b255e3d8..f6458c37 100644 Binary files a/dev/.doctrees/environment.pickle and b/dev/.doctrees/environment.pickle differ diff --git a/dev/.doctrees/index.doctree b/dev/.doctrees/index.doctree index 91c28a87..f453410a 100644 Binary files a/dev/.doctrees/index.doctree and b/dev/.doctrees/index.doctree differ diff --git a/dev/_modules/geouned/GEOReverse/core.html b/dev/_modules/geouned/GEOReverse/core.html index 3b13472f..38e1cc45 100644 --- a/dev/_modules/geouned/GEOReverse/core.html +++ b/dev/_modules/geouned/GEOReverse/core.html @@ -7,7 +7,7 @@
-
geouned.GEOUNED.core — GEOUNED 0.1.dev1+g40abd59 documentation
+ geouned.GEOUNED.core — GEOUNED 0.1.dev1+g3992d3a documentation
@@ -34,7 +34,7 @@
-
+
@@ -1300,7 +1300,7 @@ Source code for geouned.GEOUNED.core
geouned.GEOUNED.utils.data_classes — GEOUNED 0.1.dev1+g40abd59 documentation
+ geouned.GEOUNED.utils.data_classes — GEOUNED 0.1.dev1+g3992d3a documentation
@@ -34,7 +34,7 @@
-
+
@@ -1201,10 +1201,17 @@ Source code for geouned.GEOUNED.utils.data_classes
def voidMat(self, voidMat: list):
if not isinstance(voidMat, list):
raise TypeError(f"geouned.Settings.voidMat should be a list, not a {type(voidMat)}")
- for entry in voidMat:
- if not isinstance(entry, int):
- raise TypeError(f"geouned.Settings.voidMat should be a list of ints, not a {type(entry)}")
- self._voidMat = voidMat
+ if len(voidMat) == 0:
+ self._voidMat = voidMat
+ else:
+ if not isinstance(voidMat[0], int):
+ raise TypeError(f"first entry of geouned.Settings.voidMat should be an int, not a {type(entry)}")
+ if not isinstance(voidMat[1], int):
+ if not isinstance(voidMat[1], float):
+ raise TypeError(f"second entry of geouned.Settings.voidMat should be an int or float, not a {type(entry)}")
+ if not isinstance(voidMat[2], str):
+ raise TypeError(f"third entry of geouned.Settings.voidMat should be a str, not a {type(entry)}")
+ self._voidMat = voidMat
@property
def voidExclude(self):
@@ -1299,7 +1306,7 @@ Source code for geouned.GEOUNED.utils.data_classes
diff --git a/dev/_modules/index.html b/dev/_modules/index.html
index 36f94bfc..6cd996b7 100644
--- a/dev/_modules/index.html
+++ b/dev/_modules/index.html
@@ -7,7 +7,7 @@
- Overview: module code — GEOUNED 0.1.dev1+g40abd59 documentation
+ Overview: module code — GEOUNED 0.1.dev1+g3992d3a documentation
@@ -34,7 +34,7 @@
-
+
@@ -469,7 +469,7 @@ All modules for which code is available
diff --git a/dev/_static/documentation_options.js b/dev/_static/documentation_options.js
index 43251943..7afd3471 100644
--- a/dev/_static/documentation_options.js
+++ b/dev/_static/documentation_options.js
@@ -1,5 +1,5 @@
const DOCUMENTATION_OPTIONS = {
- VERSION: '0.1.dev1+g40abd59',
+ VERSION: '0.1.dev1+g3992d3a',
LANGUAGE: 'en',
COLLAPSE_INDEX: false,
BUILDER: 'html',
diff --git a/dev/developer_guide.html b/dev/developer_guide.html
index d5f589bd..0f0811f4 100644
--- a/dev/developer_guide.html
+++ b/dev/developer_guide.html
@@ -8,7 +8,7 @@
- Developer guide — GEOUNED 0.1.dev1+g40abd59 documentation
+ Developer guide — GEOUNED 0.1.dev1+g3992d3a documentation
@@ -35,7 +35,7 @@
-
+
@@ -708,7 +708,7 @@ Conda Forge Releasing
diff --git a/dev/genindex.html b/dev/genindex.html
index d068fe28..c9906db7 100644
--- a/dev/genindex.html
+++ b/dev/genindex.html
@@ -7,7 +7,7 @@
- Index — GEOUNED 0.1.dev1+g40abd59 documentation
+ Index — GEOUNED 0.1.dev1+g3992d3a documentation
@@ -34,7 +34,7 @@
-
+
@@ -525,7 +525,7 @@ T
diff --git a/dev/index.html b/dev/index.html
index 579eec1f..e4d809af 100644
--- a/dev/index.html
+++ b/dev/index.html
@@ -8,7 +8,7 @@
- Geouned Documentation — GEOUNED 0.1.dev1+g40abd59 documentation
+ Geouned Documentation — GEOUNED 0.1.dev1+g3992d3a documentation
@@ -35,7 +35,7 @@
-
+
@@ -397,7 +397,7 @@
Geouned Documentation#
-Version: 0.1.dev1+g40abd59
+Version: 0.1.dev1+g3992d3a
GEOUNED converts CAD to Constructive Solid Geometry (CSG) formats for use in
Monte Carlo transport codes.
Supported codes include OpenMC, PHITS, Serpent and MCNP.
@@ -528,7 +528,7 @@ Geouned Documentation
diff --git a/dev/_modules/geouned/GEOUNED/utils/data_classes.html b/dev/_modules/geouned/GEOUNED/utils/data_classes.html
index b29486b4..8360abbf 100644
--- a/dev/_modules/geouned/GEOUNED/utils/data_classes.html
+++ b/dev/_modules/geouned/GEOUNED/utils/data_classes.html
@@ -7,7 +7,7 @@
-
diff --git a/dev/install/index.html b/dev/install/index.html
index 7f59fd29..b793b974 100644
--- a/dev/install/index.html
+++ b/dev/install/index.html
@@ -8,7 +8,7 @@
- Install — GEOUNED 0.1.dev1+g40abd59 documentation
+ Install — GEOUNED 0.1.dev1+g3992d3a documentation
@@ -35,7 +35,7 @@
-
+
@@ -530,7 +530,7 @@ Install#<
1. Linux — GEOUNED 0.1.dev1+g40abd59 documentation
+ 1. Linux — GEOUNED 0.1.dev1+g3992d3a documentation
@@ -35,7 +35,7 @@
-
+
@@ -610,7 +610,7 @@ 1.2. User install with Conda
diff --git a/dev/install/install_linux.html b/dev/install/install_linux.html
index de098901..4d8f0e84 100644
--- a/dev/install/install_linux.html
+++ b/dev/install/install_linux.html
@@ -8,7 +8,7 @@
-
diff --git a/dev/_modules/geouned/GEOUNED/core.html b/dev/_modules/geouned/GEOUNED/core.html
index e48ebdad..4295f6b4 100644
--- a/dev/_modules/geouned/GEOUNED/core.html
+++ b/dev/_modules/geouned/GEOUNED/core.html
@@ -7,7 +7,7 @@
-
- Created using Sphinx 7.4.7.
+ Created using Sphinx 8.0.2.
- Created using Sphinx 7.4.7.
+ Created using Sphinx 8.0.2.
- Created using Sphinx 7.4.7.
+ Created using Sphinx 8.0.2.