Format code

This commit is contained in:
Chris Watson 2019-09-10 19:08:28 -07:00
parent b11731a824
commit 1e0d809535
5 changed files with 86 additions and 83 deletions

View File

@ -7,5 +7,4 @@ require "./apatite/*"
# of NumPy sitting atop the blazing speed and beautiful syntax
# of Crystal.
module Apatite
end

View File

@ -1,7 +1,11 @@
module Apatite
class Error < Exception; end
class ErrDimensionMismatch < Error; end
class ZeroVectorError < Error; end
class ErrNotRegular < Error; end
class ErrOperationNotDefined < Error; end
end