summaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/tensor/evaluation/MapEvaluationContext.java
blob: cf704c15f4f3dda674b6698c77ff8539957ffcdb (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
24
// 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 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); }

}