Skip to content

pharo-ai/moose-linear-algebra

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build status Coverage Status License

Description

Linear Algebra classes for Pharo ported from Moose

How to install it?

To install Moose Linear Algebra, go to the Playground (Ctrl+OW) in your Pharo image and execute the following Metacello script (select it and press Do-it button or Ctrl+D):

Metacello new
  baseline: 'AIMooseLinearAlgebra';
  repository: 'github://pharo-ai/moose-linear-algebra/src';
  load.

How to depend on it?

If you want to add a dependency on Moose Linear Algebra to your project, include the following lines into your baseline method:

spec
  baseline: 'AIMooseLinearAlgebra'
  with: [ spec repository: 'github://pharo-ai/moose-linear-algebra/src' ].

If you are new to baselines and Metacello, check out the Baselines tutorial on Pharo Wiki.

How to use it?

WiP