Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pySDC/CollocationClasses.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,6 @@ def _getNodes(self):
nodes = np.concatenate(([-1.0],x))

nodes = (a * (1 - nodes) + b * (1 + nodes)) / 2
print('WARNING: GaussRadau_Left untested, use at own risk!')
print('WARNING: GaussRadau_Left not fully tested, use at own risk!')

return nodes
2 changes: 1 addition & 1 deletion tests/test_collocation.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
t_start = np.random.rand(1)*0.2
t_end = 0.8 + np.random.rand(1)*0.2

classes = [ ["CollGaussLegendre", 2, 12], ["CollGaussLobatto", 2, 12], ["CollGaussRadau_Right", 2, 12] ]
classes = [ ["CollGaussLegendre", 2, 12], ["CollGaussLobatto", 2, 12], ["CollGaussRadau_Right", 2, 12], ["CollGaussRadau_Left", 2, 12] ]

class TestCollocation:

Expand Down
Loading