
* R_inf for comparisons

* Remove C test

* Optimize memory use (e.g. pass distance.only to the native
  implementation and avoid returning the two large matrices)



== Scratch notes ==

library(dtw,lib.loc="/tmp/")

s<-10000
m<-matrix(runif(s*s),s,s)
system.time(dtw(m))

 m <- matrix(1,ncol=10,nrow=10)
  for(i in 2:10)for(j in 2:10)m[i,j]<-m[i-1,j]+m[i-1,j-1]+m[i,j-1]




TEST CASE for Itakura
1  0  1  1
1  1 10 10
1  1 10 10

Type IV: 3 ?
Itakura: 13 ?
