Using Poly/ML, I wanted to write a function to construct an n*n identity matrix using Array of Arrays.
I wrote:
fun equiv x y = if x = y then 1 else 0;
fun idmatrix n = Array.tabulate(n, fn i => (Array.tabulate(n, equiv i)));
and it compiled successfully, giving
> val equiv = fn: ''a -> ''a -> int
> val idmatrix = fn: int -> int array array
But when I called idmatrix
idmatrix 2;
for a test, the output of the compiler was
> Exception- Cast "toAddress" raised
Can anybody explain why the exception was raised, please?
Thank you very much!
Your code works fine for me. Looking at the code that raises the exception, perhaps it's a 32/64-bit address problem? Is your Poly/ML compiled for the right architecture?
Poly/ML:
Moscow ML:
And SML/NJ: