summaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/tensor/evaluation/MapEvaluationContext.java
blob: 9fe6b7d053f412269a7d555f687e592ce139e18c (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
25
26
27
28
29
30
31
32
// 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 com.yahoo.tensor.TensorType;

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); }

    @Override
    public TensorType getType(String name) {
        Tensor tensor = bindings.get(name);
        if (tensor == null) return null;
        return tensor.type();
    }

    @Override
    public Tensor getTensor(String name) { return bindings.get(name); }

}