summaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/tensor/evaluation/MapEvaluationContext.java
blob: a4ba0618e5cc42c3c112237787a96d698cc0cc46 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.yahoo.tensor.evaluation;

import com.google.common.annotations.Beta;
import com.yahoo.tensor.Tensor;

import java.util.HashMap;

/**
 * @author bratseth
 */
@Beta
public class MapEvaluationContext implements EvaluationContext {

    private final java.util.Map<String, Tensor> bindings = new HashMap<>();

    static MapEvaluationContext empty() { return new MapEvaluationContext(); }

    public void put(String name, Tensor tensor) { bindings.put(name, tensor); }

    /** Returns the tensor bound to this name, or null if none */
    public Tensor get(String name) { return bindings.get(name); }

}