Skip to content
Snippets Groups Projects
Commit f3b5c2a9 authored by Bruce Edelman's avatar Bruce Edelman Committed by Colm Talbot
Browse files

Revert "remove unnecessary constraint checking:"

This reverts commit ed0614245b8cbe15f6422dbdc003a438868c0517.
parent c54802e5
No related branches found
No related tags found
No related merge requests found
......@@ -178,8 +178,9 @@ First thing: define a function which generates z=x-y from x and y.
-------
dict: Dictionary with constraint parameter 'z' added.
"""
parameters['z'] = parameters['x'] - parameters['y']
return parameters
converted_parameters = parameters.copy()
converted_parameters['z'] = parameters['x'] - parameters['y']
return converted_parameters
Create our prior:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment