From z Thu Nov 09 15:24:08 2000
Received: from maguro.epr.com ([198.3.162.27]) by exchange.epr.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2650.21)
	id WNKAL9GQ; Thu, 9 Nov 2000 06:52:55 -0800
Received: from magrathea.epr.com (firewall-user@magrathea.epr.com [198.3.160.1])
	by maguro.epr.com (8.9.3/8.9.3) with ESMTP id GAA24510
	for <sweeks@intertrust.com>; Thu, 9 Nov 2000 06:56:16 -0800 (PST)
Received: (from uucp@localhost) by magrathea.epr.com (8.9.3/8.7.3) id GAA10133 for <sweeks@intertrust.com>; Thu, 9 Nov 2000 06:56:15 -0800 (PST)
Received: from nodnsquery(199.222.69.4) by magrathea.epr.com via smap (V5.5)
	id xma010059; Thu, 9 Nov 00 06:55:37 -0800
Received: from clairv.com (IDENT:root@pc246.edi.nunet.net [199.249.165.246])
	by mail.acm.org (8.9.3/8.9.3) with ESMTP id JAA12426
	for <sweeks@acm.org>; Thu, 9 Nov 2000 09:55:22 -0500
Received: from simon.cs.cornell.edu (simon.cs.cornell.edu [128.84.154.10])
	by clairv.com (8.9.3/8.9.3) with ESMTP id IAA30590
	for <MLton@sourcelight.com>; Thu, 9 Nov 2000 08:24:11 -0600
Received: from sundial.cs.cornell.edu (sundial.cs.cornell.edu [128.84.96.115])
	by simon.cs.cornell.edu (8.9.3/8.9.3/R-3.1) with ESMTP id JAA04738
	for <MLton@sourcelight.com>; Thu, 9 Nov 2000 09:24:10 -0500 (EST)
Received: from hoho.cs.cornell.edu (hoho.cs.cornell.edu [128.84.96.89])
	by sundial.cs.cornell.edu (8.9.3/8.9.3/M-3.2) with ESMTP id JAA24252
	for <MLton@sourcelight.com>; Thu, 9 Nov 2000 09:24:09 -0500 (EST)
Received: from localhost (fluet@localhost)
	by hoho.cs.cornell.edu (8.9.3/8.9.3/C-3.0) with SMTP id JAA14080
	for <MLton@sourcelight.com>; Thu, 9 Nov 2000 09:24:09 -0500 (EST)
X-Authentication-Warning: hoho.cs.cornell.edu: fluet owned process doing -bs
Date: Thu, 9 Nov 2000 09:24:08 -0500 (EST)
From: Matthew Fluet <fluet@CS.Cornell.EDU>
To: MLton@sourcelight.com
Subject: Re: bignums and native back end
In-Reply-To: <14857.60429.973192.919144@eponym.epr.com>
Message-ID: <Pine.SOL.3.95.1001109092138.13001A-100000@hoho.cs.cornell.edu>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on 
	eponym.sweeks.com
X-Spam-Level: 
X-Spam-Status: No, hits=-100.0 required=3.0 tests=AWL,USER_IN_WHITELIST 
	autolearn=no version=2.60


> x * 1 = 1 * x = x
> x * ~1 = ~1 * x = ~x
> x * 0 = 0 * x = 0
> x + 0 = 0 + x = x
> x - 0 = x
> 0 - x = ~x
> x > x = x < x = false
> x >= x = x <= x = true
> equal(x, x) = true

x / 1 = x
x / ~1 = ~x

x - x = 0  (* probably rare *)



