On this page:
SICM
8.15.0.4

SICM🔗

 #lang sicm package: rktsicm

This library provides a language that is almost equivalent with scmutils as found at http://groups.csail.mit.edu/mac/users/gjs/6946/installation.html.

The original manual for scmutils is located at http://groups.csail.mit.edu/mac/users/gjs/6946/refman.pdf.

The following main language is provided:

Additionaly some other intermediate languages are defined.

#lang s-exp sicm/kernel
The kernel functions, with applicable structures and with racket’s base mathematical functions prepended with "rkt:". Note that some functions in this language will not work since not all generics have been loaded. Most importantly g:simplify.

Lastly, a minimum working language on top of the kernel language:
#lang s-exp sicm/generic
This loads simplify and binds all mathematical symbols to their generic function. ie: + will be bound to g:+ etc. The mechanics and calculus modules are defined in this language.

    1 Introduction

    2 General

    3 Kernel

    4 Display