Sha256: 552f82d07e012ed25b0e21bea5e8b2891d592431a0620d5dc9c2d114cff0b78c
Contents?: true
Size: 669 Bytes
Versions: 39
Compression:
Stored size: 669 Bytes
Contents
#encoding: utf-8 # A mixin for Ts transition representations. # class YPetri::Simulation::TransitionRepresentation module Type_Ts include Type_T include Type_s attr_reader :gradient_closure # Initialization subroutine. # def init super @gradient_closure = to_gradient_closure end # Gradient contribution of the transition to all places. # def ∇ codomain >> gradient_closure.call end alias gradient_all ∇ # Builds a gradient closure. # def to_gradient_closure build_closure end end # Type_Ts end # class YPetri::Simulation::TransitionRepresentation
Version data entries
39 entries across 39 versions & 1 rubygems