Difference between revisions of "Physical units/Dimensionalized numbers"

From HaskellWiki
Jump to navigation Jump to search
 
m (DimensionalizedNumbers moved to Dimensionalized numbers)

Revision as of 09:25, 23 January 2006

I have created a simple toy example using FunDeps and PhantomTypes 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 BasicAlgebraProposal.

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.