Skip to content

Commit 33c4201

Browse files
authored
Merge pull request #15 from dd-harp/dev
reorganization
2 parents c5e7a76 + 0a92cd5 commit 33c4201

File tree

133 files changed

+1842
-1125
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

133 files changed

+1842
-1125
lines changed

NAMESPACE

+17-11
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ S3method(adult_dynamics,BQS)
55
S3method(aquatic_dynamics,basicL)
66
S3method(compute_G,BQ)
77
S3method(compute_G,BQS)
8+
S3method(compute_Kbq,BQ)
9+
S3method(compute_Kbq,BQS)
10+
S3method(compute_Kqb,BQ)
11+
S3method(compute_Kqb,BQS)
812
S3method(compute_V,BQ)
913
S3method(compute_V,BQS)
1014
S3method(compute_diffs_L,basicL)
@@ -16,10 +20,6 @@ S3method(init_aquatic_model,basicL)
1620
S3method(init_states_L,basicL)
1721
S3method(init_states_M,BQ)
1822
S3method(init_states_M,BQS)
19-
S3method(make_Kbq,BQ)
20-
S3method(make_Kbq,BQS)
21-
S3method(make_Kqb,BQ)
22-
S3method(make_Kqb,BQS)
2323
S3method(make_all_graphs,BQ)
2424
S3method(make_all_graphs,BQS)
2525
S3method(make_movie,BQ)
@@ -41,6 +41,7 @@ export(add_arrows_xx)
4141
export(add_arrows_xy)
4242
export(add_bent_arrows_xx)
4343
export(add_bent_arrows_xy)
44+
export(add_convex_hulls)
4445
export(add_nth_arrow_xx)
4546
export(add_nth_arrow_xy)
4647
export(add_nth_segment)
@@ -58,6 +59,11 @@ export(clusters_nm)
5859
export(clusters_xy)
5960
export(compute_G)
6061
export(compute_GG)
62+
export(compute_KGV)
63+
export(compute_Kbb)
64+
export(compute_Kbq)
65+
export(compute_Kqb)
66+
export(compute_Kqq)
6167
export(compute_V)
6268
export(compute_VC)
6369
export(compute_diffs_L)
@@ -79,11 +85,6 @@ export(init_aquatic_model_basicL)
7985
export(init_states_L)
8086
export(init_states_M)
8187
export(lattice)
82-
export(makeKGV)
83-
export(make_Kbb)
84-
export(make_Kbq)
85-
export(make_Kqb)
86-
export(make_Kqq)
8788
export(make_Psi_BQ)
8889
export(make_Psi_BQS)
8990
export(make_Psi_xx)
@@ -102,7 +103,11 @@ export(make_model_squareLattice)
102103
export(make_model_unif)
103104
export(make_movie)
104105
export(make_tiles)
105-
export(net2meta)
106+
export(mod_convex_hulls)
107+
export(mod_convex_hulls.i)
108+
export(net2patches)
109+
export(outline_points_b)
110+
export(outline_points_q)
106111
export(plotDDcmf)
107112
export(plotDDpmf)
108113
export(plot_Kbb)
@@ -126,9 +131,10 @@ export(plot_dispersal_G)
126131
export(plot_dispersal_GG)
127132
export(plot_dispersal_V)
128133
export(plot_dispersal_VV)
134+
export(plot_graph)
129135
export(plot_matrix_xx)
130136
export(plot_matrix_xy)
131-
export(plot_meta)
137+
export(plot_patches)
132138
export(plot_points)
133139
export(plot_points_bq)
134140
export(plot_points_bqs)

R/K_matrices.R

-287
This file was deleted.

R/adult-BQ.R

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
#' Simulate adult dynamics for the `BQ` model
2+
#' Update States for the `BQ` model
33
#'
44
#' @inheritParams adult_dynamics
55
#'
@@ -184,12 +184,12 @@ make_demography_BQ = function(model){
184184
model$Mpar$Mbl = Psi_bq %*% diag(pQ, nq)
185185
# the "hardened adult" mosquito population dispersal matrix
186186
model$Mpar$bigM = with(model$Mpar,
187-
rbind(
188-
cbind(Mbb, Mbq),
189-
cbind(Mqb, Mqq))
190-
)
187+
rbind(
188+
cbind(Mbb, Mbq),
189+
cbind(Mqb, Mqq))
190+
)
191191
return(model)
192-
})})})}
192+
})})})}
193193

194194
#' Setup a BQ model for adult mosquitoes
195195
#'

0 commit comments

Comments
 (0)