Portfolio Code | Clement Colmerauer
Repositories
Site
Rabbit simulation
Code
Commits
Branches
Tags
Search
Tree:
a20104a
Branches
Tags
master
Rabbit simulation
build
colt
src
hep
aida
bin
BinBinFunction1D.java
initial commit
Clement COLMERAUER
commited
a20104a
at 2024-09-09 10:17:52
BinBinFunction1D.java
Blame
History
Raw
package hep.aida.bin; /** * Interface that represents a function object: a function that takes * two bins as arguments and returns a single value. */ public interface BinBinFunction1D { /** * Applies a function to two bin arguments. * * @param x the first argument passed to the function. * @param y the second argument passed to the function. * @return the result of the function. */ abstract public double apply(DynamicBin1D x, DynamicBin1D y); }