We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b83f33a commit 333e98dCopy full SHA for 333e98d
continuous_case.sage
@@ -21,7 +21,7 @@ def generate_nonsymmetric_vertices_continuous(fn, f):
21
yield (x, y, 0, 0)
22
23
def generate_type_1_vertices_continuous(fn, comparison):
24
- """Output 6-tuples (x,xeps,y,yeps,z,zeps).
+ """Output 6-tuples (x, y, z,xeps, yeps, zeps).
25
"""
26
bkpt = fn.end_points()
27
return ( (x, y, x+y, 0, 0, 0) for x in bkpt for y in bkpt if x <= y and comparison(delta_pi(fn,x,y), 0) ) # generator comprehension
0 commit comments