forked from crp/ecp-benchmarks
Fix --no-multipole argument for build-assembly.py
This commit is contained in:
parent
057e6910d9
commit
b47c173471
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ from smr import inlet_temperature
|
|||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument('--multipole', action='store_true',
|
||||
help='Use multipole cross sections')
|
||||
parser.add_argument('--no-multipole', action='store_false',
|
||||
parser.add_argument('--no-multipole', dest='multipole', action='store_false',
|
||||
help='Do not use multipole cross sections')
|
||||
parser.add_argument('--clone', action='store_true',
|
||||
help='Clone materials for each cell instance')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue