(* test-kenel.sml * * COPYRIGHT (c) 2010 The Diderot Project (http://diderot.cs.uchicago.edu) * All rights reserved. * * Text driver for the kernel code. *) structure Test = struct structure R = Rational structure K = Kernel (* given a kernel, print the coefficients for the k'th direvative *) fun printKernel (kern, k) = let val curve = Kernel.curve(kern, k) in end end