aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/tensor/evaluation/EvaluationContext.java
blob: 2ba8d61f845ecdf2a715e9522bcc832031d02c32 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.yahoo.tensor.evaluation;

import com.google.common.annotations.Beta;

import java.util.HashMap;

/**
 * An evaluation context which is passed down to all nested functions during evaluation.
 * The default context is empty to allow various evaluation frameworks to support their own implementation.
 * 
 * @author bratseth
 */
@Beta
public interface EvaluationContext {

}