Skip to content
Snippets Groups Projects
Commit 2eb6c3f0 authored by Nicolas Marsic's avatar Nicolas Marsic
Browse files

starting non-holomorphic fixed point solver

parent 3d7db0df
No related branches found
No related tags found
No related merge requests found
......@@ -50,6 +50,9 @@ def parse():
help="set constant number NAME=VALUE")
parser.add_argument("-quiet", action='store_true',
help="should I be quiet?")
parser.add_argument("-non_holomorphic", action='store_true',
help='start a fixed-point loop for non-holomorphic '+
'functions')
# Done
return parser.parse_args()
......
......@@ -36,7 +36,10 @@ beyn = Beyn.Beyn(operator, arg.origin, arg.radius,
not arg.quiet)
# Compute
if(not arg.non_holomorphic):
l, V, r = beyn.simple()
else:
raise ValueError('Non-holomorphic case not implemented... yet')
# Display the computed eigenvalues
if(not arg.quiet):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment