diff options
Diffstat (limited to 'appl/math/parts.b')
| -rw-r--r-- | appl/math/parts.b | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/appl/math/parts.b b/appl/math/parts.b index 36c36d8e..be5cd1bb 100644 --- a/appl/math/parts.b +++ b/appl/math/parts.b @@ -3,9 +3,9 @@ implement Partitions; include "sys.m"; sys : Sys; include "draw.m"; -include "keyring.m"; - keyring: Keyring; - IPint: import keyring; +include "ipints.m"; + ipints: IPints; + IPint: import ipints; # # the number p(n) of partitions of n @@ -25,7 +25,7 @@ Partitions: module init(nil: ref Draw->Context, argv: list of string) { sys = load Sys Sys->PATH; - keyring = load Keyring Keyring->PATH; + ipints = load IPints IPints->PATH; argv = tl argv; while(argv != nil){ s := hd argv; |
