-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't assume output elements are used in the right order in jacobians
On master, when creating jacobians, we assume that output elements are used in the ascending order. i.e. ``` output[0] = ...; output[1] = ...; ``` is supported but ``` output[1] = ...; output[0] = ...; ``` is not supported. We should not make such assumptions. Fixes #479.
- Loading branch information
1 parent
62dba86
commit 69d15a3
Showing
2 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters