gvozdila
gvozdila
I can cite Serpent-1.1.7 user manual obtained from OECD, p.28 : 2. Only the intersection operator is available for cell definitions. This means that a point is inside the cell...
There are two ways to run all tests: 1) with ./run_tests -- this one passed 2) with csg2csg/test> python3 -m unittest discover -p 'Unit*.py' (or by IDE, ERIC6 for example)...
Serpent-1.1.7 user manual only allow cyl surface, p.22: cyl circular cylinder parallel to z-axis x0, y0, r I can not check if SERPENT-2 have another surfaces types. Though SERPENT-2 going...
enhancement I have a proposal to add SCALE KENO-VI (ORNL) support. It is one of widely usable reactor codes. Even output possibility could be very helpful.
Now cell string : fill -1:1 makes an error like this: File "/home/krom/.local/lib/python3.6/site-packages/csg2csg/MCNPCellCard.py", line 191, in __get_keyword_value result = regex.search(string)[0] TypeError: 'NoneType' object is not subscriptable fill = -1:1 -...
# Bug report ### Bug description: With some files python trying to pickle.load() use all available RAM and get killed by OOM killer. How-to-reproduce: ```python import pickle f = open("./oom-1a498cedae1dc957f2fbb15d18a5c265dc7b9ae2.txt","rb")...
Hi! I'v found crash with OverflowError. Way to reproduce ``` #!/usr/bin/python3 import yaml import sys with open(sys.argv[1], 'r', encoding="utf-8",errors='ignore') as inp_file: test_string = inp_file.read() yaml.safe_load(test_string) ``` Error message: > $...