CanonicalTraits.jl

Full-featured traits in Julia. Without full features how dare I say this?
Popularity
59 Stars
Updated Last
11 Months Ago
Started In
September 2019

CanonicalTraits

Stable Dev Build Status Codecov

Check documentations for more details.

Features

  1. Zero-cost abstractions(via @implement!)
  2. Multiple-param traits
  3. Functional dependencies
  4. Implemented via dictionay passing algorithm
  5. Elegant notations
  6. Flexible Instances & Flexible Classes
"""vector space to scalar space"""
function V2F end

@trait VecSpace{F, V} where
  {F = V2F(V)} begin
   vec_add    :: [V, V] => V
   scalar_mul :: [F, V] => V
end

@trait VecSpace{F, V} >: InnerProd{F, V} where
  {F = V2F(V)} begin
  dot :: [V, V] => F
end

@trait InnerProd{F, V} >: Ortho{F, V} where
  {F = V2F(V)} begin
  gram_schmidt! :: [V, Vector{V}] => V

  gram_schmidt!(v :: V, vs :: Vector{V}) where V = begin
    for other in vs
        coef = dot(v, other) / dot(other, other)
        incr = scalar_mul(-coef, other)
        v = vec_add(v, incr)
    end
    magnitude = sqrt(dot(v, v))
    scalar_mul(1/magnitude, v)
  end
end

Required Packages

Used By Packages

No packages found.