#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/option.scm,v 14.5 1989/08/03 23:06:31 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/option.scm,v 14.6 1989/11/09 03:44:56 gjs Exp $
Copyright (c) 1988, 1989 Massachusetts Institute of Technology
name))
(define options
- '((FORMAT ((RUNTIME FORMAT) (INITIALIZE-PACKAGE!) "format"))
- (STARBASE
- ((RUNTIME OLD-STARBASE-GRAPHICS) (INITIALIZE-PACKAGE!) "Sgraph"))))
\ No newline at end of file
+ '((ARITHMETIC-INTERFACE ((RUNTIME NUMBER INTERFACE) #F "numint"))
+ (FORMAT ((RUNTIME FORMAT) (INITIALIZE-PACKAGE!) "format"))
+ (STARBASE ((RUNTIME OLD-STARBASE-GRAPHICS) (INITIALIZE-PACKAGE!) "Sgraph"))
+ ))
\ No newline at end of file
#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/runtime.pkg,v 14.54 1989/10/27 04:43:21 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/runtime.pkg,v 14.55 1989/11/09 03:45:00 gjs Exp $
Copyright (c) 1988, 1989 Massachusetts Institute of Technology
(export (runtime number-parser)
bad-range)
(initialization (initialize-package!)))
+
+(define-package (runtime number interface)
+ (file-case options
+ ((load) "numint")
+ (else))
+ (parent (runtime number))
+ (export ()
+ complex-package
+ integer-package
+ make-accumulation-operator
+ make-arithmetic-package
+ make-inverse-accumulation-operator
+ rational-package
+ real-package))
+
(define-package (runtime number-parser)
(files "numpar")
(parent ())
#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/version.scm,v 14.64 1989/10/31 04:41:28 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/version.scm,v 14.65 1989/11/09 03:45:06 gjs Exp $
Copyright (c) 1988, 1989 Massachusetts Institute of Technology
'()))
(add-system! microcode-system)
(add-event-receiver! event:after-restore snarf-microcode-version!)
- (add-identification! "Runtime" 14 64))
+ (add-identification! "Runtime" 14 65))
(define microcode-system)
(define (snarf-microcode-version!)
#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/runtime/runtime.pkg,v 14.54 1989/10/27 04:43:21 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/runtime/runtime.pkg,v 14.55 1989/11/09 03:45:00 gjs Exp $
Copyright (c) 1988, 1989 Massachusetts Institute of Technology
(export (runtime number-parser)
bad-range)
(initialization (initialize-package!)))
+
+(define-package (runtime number interface)
+ (file-case options
+ ((load) "numint")
+ (else))
+ (parent (runtime number))
+ (export ()
+ complex-package
+ integer-package
+ make-accumulation-operator
+ make-arithmetic-package
+ make-inverse-accumulation-operator
+ rational-package
+ real-package))
+
(define-package (runtime number-parser)
(files "numpar")
(parent ())