We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f2851c commit f702021Copy full SHA for f702021
REQUIRE
@@ -1,3 +1,2 @@
1
julia 0.6
2
DualNumbers
3
-Compat 0.7.15
src/Octonion.jl
@@ -93,8 +93,8 @@ end
93
94
95
macro ocmul(i, j)
96
- si = @compat Symbol("v$i")
97
- sj = @compat Symbol("v$j")
+ si = Symbol("v$i")
+ sj = Symbol("v$j")
98
esc(:(o.$si * w.$sj - o.$sj * w.$si))
99
end
100
src/Quaternions.jl
@@ -2,7 +2,6 @@ __precompile__()
module Quaternions
4
importall Base
5
- using Compat
6
7
include("Quaternion.jl")
8
include("Octonion.jl")
0 commit comments