Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 1.32 KB

README.md

File metadata and controls

34 lines (23 loc) · 1.32 KB

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