-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
256 additions
and
224 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
""" | ||
Extra operators. | ||
This module is an extension to the built-in operators. | ||
""" | ||
|
||
|
||
class ExtraOperator(Exception): | ||
pass | ||
|
||
|
||
def save_div(numerator, denominator): | ||
raise ExtraOperator | ||
|
||
|
||
def gamma_inc_l(a, x): | ||
raise ExtraOperator | ||
|
||
|
||
def gamma_inc_u(a, x): | ||
raise ExtraOperator | ||
|
||
|
||
def arctan2(tan, divide_by): | ||
raise ExtraOperator | ||
|
||
|
||
def minimum(x1, x2): | ||
raise ExtraOperator | ||
|
||
|
||
def maximum(x1, x2): | ||
raise ExtraOperator |
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
Oops, something went wrong.