Skip to content

Commit

Permalink
resolve conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
evadelmas authored and iago-lito committed Feb 20, 2023
1 parent 9acc96d commit f14606c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/EcologicalNetworksDynamics.jl
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export DefaultGrowthParams
export DefaultMaxConsumptionParams
export DefaultMetabolismParams
export DefaultMortalityParams
export dNdt
export DefaultNIntakeParams
export draw_asymmetric_links
export draw_symmetric_links
export efficiency
Expand Down Expand Up @@ -124,8 +124,8 @@ export potential_refuge_links
export predators_of
export preys_of
export producer_growth
export ProducerGrowth
export ProducerCompetition
export ProducerGrowth
export producers
export richness
export set_temperature!
Expand Down
4 changes: 4 additions & 0 deletions src/model/dbdt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ function dBdt!(dB, B, p, t)
net_growth_rate = growth + eating - metabolism_loss
net_growth_rate = EcologicalNetworksDynamics.effect_competition(net_growth_rate, i, B, network)
dB[i] = net_growth_rate - being_eaten - natural_death
#pseudo coding starting here
#if type(params.ProducerGrowth) == NutrientIntak
#dN[i] = dndt(dN, N, p, t)
#end
end

for j in S+1:S+length(N)
Expand Down

0 comments on commit f14606c

Please sign in to comment.