# crossc, two functional spatial SUM variables referencing # different stochastic variables, and an # combining functional variable ENTITY s , "", "tests/model_all_spat/file.txt" { } ENTITY n , "" { } #two-dimensional (spatial = Y) ENTITY crossc02 , "" , combines(s, n) { INTEGER depscc03 ~ discrete_uniform(0, 1) REAL depscc04 ~ continuous_uniform(0, 1) REAL scc03 = SUM(& depscc03) REAL scc04 = SUM(& depscc04) REAL comb2 = scc03 + scc04 } # two-dimensional (spatial = X) ENTITY crossc03 , "" , combines(n, s) { INTEGER depscc05 ~ discrete_uniform(0, 1) REAL depscc06 ~ continuous_uniform(0, 1) REAL scc05 = SUM(& depscc05) REAL scc06 = COUNT(& depscc06) REAL comb3 = scc05 + scc06 }