summaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/tensor/evaluation/EvaluationContext.java
blob: 84caca78fb28a3c12b6c4a30949f38b8e70a741d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
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 {

}