Skip to content
Snippets Groups Projects
  1. Mar 21, 2021
  2. Feb 28, 2021
  3. Feb 24, 2021
  4. Feb 22, 2021
  5. Feb 21, 2021
  6. Feb 20, 2021
    • Bentriou Mahmoud's avatar
      The package becomes more meta to reach higher performance. · 5d886fc4
      Bentriou Mahmoud authored
      This commit groups the change operated to the creation of models and
      simulate function of a ContinuousTimeModel.
      The general idea is to create a concrete type and a simulate function
       per model creation by metaprogramming.
      - Now, ContinuousTimeModel is an abstract type. Each creation of a model
      defines a concrete type T <: ContinuousTimeModel by meta programming.
      - f! and isabsorbing ContinuousTimeModel fields are Symbols.
      - simulate(::ContinuousTimeModel) is run by multiple dispatch, according
      to the type of the model.
      
      Can't run the whole tests for now but unit/simulate_available_models.jl
      runs properly (i've updated the list of models in this commit), and I've
      manually checked in the repl that simulations run correctly (distributed
      / plots).
      5d886fc4
  7. Feb 09, 2021
  8. Feb 08, 2021
  9. Jan 27, 2021
    • Bentriou Mahmoud's avatar
      Creation of automata has been change again to improve performance. Now · 886e9d98
      Bentriou Mahmoud authored
      check_constraint and update_state functions are created inside
      create_automaton_*(), by the evaluation of meta_elementary_functions <:
      Expr. check_constraint and update_state don't depend on constants::Dict
      anymore: constants are interpolated inside the expression.
      
      Add of tests for euclidean distance automaton.
      Add a new function euclidean_distance that computes the euclidean
      distance of a Trajectory compared to observations along a discrete
      timeline.
      886e9d98
  10. Jan 25, 2021
    • Bentriou Mahmoud's avatar
      1) Detection of a bug when two synchronized models with two different · 00b622f3
      Bentriou Mahmoud authored
      automata and proba moels are differents. This bug was introduced after
      we change the structure of automata in order to better distributed
      programming.
      It leads to a restructuration of automata. In fine, the structure is
      more stable and consistent. It is possible it is more computationally
      efficient, but for now it is not well tested.
      
      2) Creation of functions that collects data along with a timeline
      over a trajectory + unit test vectorize.
      
      3) Very small fix in plots and abc smc.
      00b622f3
  11. Jan 10, 2021
  12. Dec 22, 2020
  13. Dec 10, 2020
  14. Dec 06, 2020
  15. Dec 05, 2020
  16. Dec 03, 2020
  17. Nov 30, 2020
    • Bentriou Mahmoud's avatar
      A major fix in simulation was done, side effect issue, an efficient · c095bee4
      Bentriou Mahmoud authored
      copyto! is implemented for LHA states.
      
      Automaton G works almost well, a bias in the distance is identified
      compared to Cosmos when one of the model parameters is zero.
      
      Implementation of volatile_simulate, which simulates SynchronizedModel
      without saving values: it only returns the last LHA state of the
      simulation.
      
      Implementation of distributed computations of variable automata with
      volatile_simulate.
      
      Tests passed.
      c095bee4
  18. Nov 29, 2020
  19. Nov 27, 2020
  20. Nov 26, 2020
  21. Nov 24, 2020
  22. Nov 23, 2020
    • Bentriou Mahmoud's avatar
      Change of Trajectory.values type from Matrix to Vector of Vector in · 5b7fc78f
      Bentriou Mahmoud authored
      order to replace vcat by push!.
      
      The benchmarks are at least equal, and better when the buffer size is
      small. However, no significative difference of performance with adequate
      buffer size.
      
      My opinion the gain can be seen when simulations are going to be very
      long with more complicated models than we have implemented for now.
      
      All tests passed.
      5b7fc78f
  23. Nov 22, 2020
    • Bentriou Mahmoud's avatar
      Small restruction in Cosmos tests. · fadb5929
      Bentriou Mahmoud authored
      Add of set_time_bound!
      Add of a first notebook example to explain the package.
      fadb5929
    • Bentriou Mahmoud's avatar
      Add of a function in models that creates new model objects + tests. · 2a9d3b72
      Bentriou Mahmoud authored
      Add of a major test based on Cosmos: tests/cosmos/distance_F/ER_1D.jl
      
      The LHA distance F of this package is tested with Cosmos.
      For several parameters in R1, R2, R3 experiments (see Bentriou,
      Ballarini, Cournede 2018), Cosmos is called to
      compute an average distance. Then we collect the number of simulations
      and the estimated value computed by Cosmos.
      We compute an average distance by the package methods with the same
      number of simulations done by Cosmos
      
      Then the two average distances are compared to each others with
      regard to the width of the confidence interval set in Cosmos.
      Test passed.
      2a9d3b72
  24. Nov 21, 2020
  25. Nov 20, 2020
  26. Nov 19, 2020
  27. Nov 18, 2020
  28. Nov 17, 2020
  29. Nov 16, 2020
Loading