it.unibo.alchemist.model.reactions.Event Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alchemist-implementationbase Show documentation
Show all versions of alchemist-implementationbase Show documentation
Abstract, incarnation independent implementations of the Alchemist's interfaces. Provides support for those who want to write incarnations.
/*
* Copyright (C) 2010-2023, Danilo Pianini and contributors
* listed, for each module, in the respective subproject's build.gradle.kts file.
*
* This file is part of Alchemist, and is distributed under the terms of the
* GNU General Public License, with a linking exception,
* as described in the file LICENSE in the Alchemist distribution's top directory.
*/
package it.unibo.alchemist.model.reactions;
import it.unibo.alchemist.model.Environment;
import it.unibo.alchemist.model.Node;
import it.unibo.alchemist.model.Time;
import it.unibo.alchemist.model.TimeDistribution;
import javax.annotation.Nonnull;
/**
* This reaction completely ignores the propensity conditioning of the
* conditions, and tries to run every time the {@link TimeDistribution} wants
* to.
*
* @param concentration type
*/
public final class Event extends AbstractReaction {
private static final long serialVersionUID = -1640973841645383193L;
/**
* @param node the node this {@link Event} belongs to
* @param timedist the {@link TimeDistribution} this event should use
*/
public Event(final Node node, final TimeDistribution timedist) {
super(node, timedist);
}
@Override
protected void updateInternalStatus(
final Time currentTime,
final boolean hasBeenExecuted,
final Environment environment
) {
}
@Override
public double getRate() {
return getTimeDistribution().getRate();
}
@Override
@Nonnull
public Event cloneOnNewNode(@Nonnull final Node node, @Nonnull final Time currentTime) {
return makeClone(() -> new Event<>(node, getTimeDistribution().cloneOnNewNode(node, currentTime)));
}
}