Difference between revisions of "Physical units/Dimensionalized numbers"

From HaskellWiki
Jump to navigation Jump to search
m
m
 
(4 intermediate revisions by one other user not shown)
Line 1: Line 1:
I have created a simple toy example using [[functional dependency|functional dependencies]] and [[phantom type]]s to do compile-time unit analysis error
+
I have created a simple toy example using [[functional dependencies]] and [[phantom type]]s to do compile-time unit analysis error
 
catching at the type level. It currently has only two "base dimensions" time, and length, and very few
 
catching at the type level. It currently has only two "base dimensions" time, and length, and very few
 
convenience functions, but it is usable.
 
convenience functions, but it is usable.

Latest revision as of 14:47, 30 September 2008

I have created a simple toy example using functional dependencies and phantom types to do compile-time unit analysis error catching at the type level. It currently has only two "base dimensions" time, and length, and very few convenience functions, but it is usable.

See the darcs repository available at

darcs get http://ofb.net/repos/dimensional/

or browseable at http://ofb.net/cgi-bin/darcs.cgi/dimensional/.

One annoying thing is that while the unitless type can be made an instance of Num, the others can't be made instances of things that support only (+) or (-). That should really be a seperate class, as in the Basic algebra proposal.

Comments appreciated, as are patches

-- Aaron Denney

See also the more polished http://www.scannedinavian.org/cgi-bin/darcs.cgi/hlibs/physics/?c=browse. It uses a different trick to get negative numbers -- instead of using positional numbers with negative digits, it uses pairs of PeanoNumbers to represent the difference between them, and normalizes to at least one of them being zero.