1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
\name{freeLSHData-deprecated}
\alias{freeLSHData}
\title{
Deprecated Free LSH Data
}
\description{
This function is no longer needed with the new LSH package in use now.
It will be defunct in the next release.
Free the memory allocated by \code{\link{loadLSHData}}.
}
\usage{
freeLSHData(lshData)
}
\arguments{
\item{lshData}{
A pointer returned by \code{\link{loadLSHData}}.
}
}
\value{
No return value.
}
\author{
Kevin Horan
}
\seealso{
\code{\link{loadLSHData}}
\code{\link{eiQuery}}
}
\examples{
\dontrun{
lshData = loadLSHData(r,d)
eiQuery(r,d,refIddb,c("650002","650003"), format="name",K=15,lshData=lshData)
eiQuery(r,d,refIddb,c("650004","650005"), format="name",K=15,lshData=lshData)
freeLSHData(lshData)
}
}
|