Skip to content

Commit

Permalink
Exp derivative.
Browse files Browse the repository at this point in the history
  • Loading branch information
corywalker committed Sep 23, 2017
1 parent a1310f6 commit be87522
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions expreduce/evalstate.go
Expand Up @@ -138,6 +138,7 @@ func (es *EvalState) Init(loadAllDefs bool) {
es.MarkSeen("System`Stub")
es.MarkSeen("System`$Failed")

es.MarkSeen("System`Exp")
es.MarkSeen("System`AppellF1")

es.MarkSeen("System`Cosh")
Expand Down
4 changes: 2 additions & 2 deletions expreduce/resources.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions expreduce/resources/calculus.m
Expand Up @@ -13,6 +13,7 @@
D[Log[a_], x_] := D[a, x]/a;
D[Sin[a_], x_] := D[a,x] Cos[a];
D[Cos[a_], x_] := -D[a,x] Sin[a];
D[Exp[x_Symbol], x_Symbol] := Exp[x];
Attributes[D] = {ReadProtected, Protected};
Tests`D = {
ESimpleExamples[
Expand Down

0 comments on commit be87522

Please sign in to comment.