Skip to content

Tools for scientific computation in Smalltalk

Notifications You must be signed in to change notification settings

djuber/SciSmalltalk

Repository files navigation

This is old - please see https://github.com/PolyMathOrg/PolyMath instead.

How to install SciSmalltalk in Pharo

The simplest way to install in Pharo is via Metacello and Gofer.

  • Bootstrap SciSmalltalk
Gofer new
	url: 'http://ss3.gemstone.com/ss/SciSmalltalk';
	package: 'ConfigurationOfSciSmalltalk';
	load.
(Smalltalk at: #ConfigurationOfSciSmalltalk) loadDevelopment.

All packages load into the Math-* package names.

How to install SciSmalltalk for GitHub

  Gofer new
    url: 'http://ss3.gemstone.com/ss/FileTree';
    package: 'ConfigurationOfFileTree';
    load.
 ((Smalltalk at: #ConfigurationOfFileTree) project version: '1.0') load.
  • Clone this repository:
  mkdir SciSmalltalk
  cd SciSmalltalk
  git clone https://github.com/SergeStinckwich/SciSmalltalk.git
  • Attach to filetree repository and load latest packages (use correct path to your filetree download/clone):
repo := 'Add you repo path here'.
Gofer new
    repository: (MCFileTreeRepository new directory: 
                    (FileDirectory on: repo));
    package: 'Math';
    load.

The above instructions are incorrect. When loading from FileTree/GitHub clone, you must load each package. Load packages in order Core, Extensions, Test. Core packages are those not labelled tests or extensions. After loading all packages, please ensure that tests pass. If you think you have all the packages loaded and have failing tests, please contact me. In the meantime, though I am using github as a useful code store, I recommend installing from SS3/Metacello.

How to contribute to SciSmalltalk

We welcome submissions!

  • A google group exists for this project at http://groups.google.com/group/scismalltalk

  • Fork this repository, then clone your copy (instead of cloning from above). When you have made changes, commit, and make a Pull Request.

  mkdir SciSmalltalk
  cd SciSmalltalk
  git clone https://github.com/YourUserName/SciSmalltalk.git

About

Tools for scientific computation in Smalltalk

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages