Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
trs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Taddeüs Kroes
trs
Commits
158c31f9
Commit
158c31f9
authored
13 years ago
by
Taddeus Kroes
Browse files
Options
Downloads
Patches
Plain Diff
Changed rule imports to relative imports.
parent
ea8ce3ac
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/rules/__init__.py
+6
-5
6 additions, 5 deletions
src/rules/__init__.py
with
6 additions
and
5 deletions
src/rules/__init__.py
+
6
−
5
View file @
158c31f9
...
...
@@ -17,18 +17,19 @@ from .negation import match_negated_factor, match_negate_polynome, \
from
.sort
import
match_sort_multiplicants
from
.goniometry
import
match_add_quadrants
,
match_negated_parameter
,
\
match_half_pi_subtraction
,
match_standard_radian
from
src.rules
.derivatives
import
match_zero_derivative
,
\
from
.derivatives
import
match_zero_derivative
,
\
match_one_derivative
,
match_variable_power
,
\
match_const_deriv_multiplication
,
match_logarithmic
,
\
match_goniometric
,
match_sum_product_rule
,
match_quotient_rule
from
src.rules
.logarithmic
import
match_constant_logarithm
,
\
from
.logarithmic
import
match_constant_logarithm
,
\
match_add_logarithms
,
match_raised_base
,
match_factor_out_exponent
,
\
match_factor_in_multiplicant
from
src.rules
.integrals
import
match_solve_indef
,
match_constant_integral
,
\
from
.integrals
import
match_solve_indef
,
match_constant_integral
,
\
match_integrate_variable_power
,
match_factor_out_constant
,
\
match_division_integral
,
match_function_integral
from
src.rules.lineq
import
match_move_term
from
src.rules.absolute
import
match_factor_out_abs_term
from
.lineq
import
match_move_term
from
.absolute
import
match_factor_out_abs_term
RULES
=
{
OP_ADD
:
[
match_add_numerics
,
match_add_fractions
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment