Sign in
apache
/
sedona-spatialbench
/
HEAD
/
.
/
spatialbench
/
src
/
spatial
/
cache.rs
blob: ee434c16092984dd58d83cc4e7f66495c0423871 [
file
] [
log
] [
blame
]
#[
derive
(
Clone
,
Debug
)]
pub
struct
ThomasCache
{
pub
cdf
:
Vec
<
f64
>,
pub
parents
:
usize
,
pub
alpha
:
f64
,
pub
xm
:
f64
,
pub
seed
:
u64
,
}
#[
derive
(
Clone
,
Debug
)]
pub
struct
HierThomasCache
{
pub
city_cdf
:
Vec
<
f64
>,
pub
sub_cdfs
:
Vec
<
Vec
<
f64
>>,
}