summaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/tensor/evaluation/MapEvaluationContext.java
blob: 74457a163fd9e1ab2d9a70e65ad97d6b153eefc9 (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
// 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<TypeContext.Name> {

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

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

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

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

}