[docs]classMonteCarlo(UnaryOperator):""" Monte Carlo integration """def__init__(self,child:ExpressionOrNumeric):"""Constructor :param child: arithmetic expression :type child: biogeme.expressions.Expression """super().__init__(child)
[docs]defdeep_flat_copy(self)->MonteCarlo:"""Provides a copy of the expression. It is deep in the sense that it generates copies of the children. It is flat in the sense that any `MultipleExpression` is transformed into the currently selected expression. The flat part is irrelevant for this expression. """copy_child=self.child.deep_flat_copy()returntype(self)(child=copy_child)
[docs]defrecursive_construct_jax_function(self,numerically_safe:bool)->JaxFunctionType:""" Generates a function to be used by biogeme_jax. Must be overloaded by each expression :return: the function takes two parameters: the parameters, and one row of the database. """child_jax=self.child.recursive_construct_jax_function(numerically_safe=numerically_safe)vectorized_function=vmap(lambdaparameters,row,draws,random_variables:child_jax(parameters,row,draws,random_variables),in_axes=(None,None,0,None),)defthe_jax_function(parameters:jnp.ndarray,one_row:jnp.ndarray,the_draws:jnp.ndarray,the_random_variables:jnp.ndarray,)->jnp.ndarray:value_per_draw=vectorized_function(parameters,one_row,the_draws,the_random_variables)mean=jnp.mean(value_per_draw,axis=-1)returnmeanreturnthe_jax_function