Skip to content
This repository has been archived by the owner on Dec 14, 2020. It is now read-only.

Commit

Permalink
osil parser has issues with tangent, apparently
Browse files Browse the repository at this point in the history
ref #15
  • Loading branch information
tkelman committed Mar 11, 2016
1 parent 6c9c474 commit 3e072fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/translations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jl2osnl_binary = Dict(
:./ => "divide",
:div => "quotient",
:÷ => "quotient",
#:.÷ => "quotient", # 0.4 only?
: => "quotient",
:rem => "rem",
:^ => "power",
:.^ => "power",
Expand All @@ -43,7 +43,7 @@ jl2osnl_unary = Dict(
:acsch => "arccsch")

for op in [:abs, :sqrt, :floor, :factorial, :exp, :sign, :erf,
:sin, :sinh, :cos, :cosh, :tan, :tanh,
:sin, :sinh, :cos, :cosh, :tanh, # :tan,
:cot, :coth, :sec, :sech, :csc, :csch]
jl2osnl_unary[op] = string(op)
end
Expand Down

0 comments on commit 3e072fe

Please sign in to comment.