swim.math.TensorArrayObjectSpace Maven / Gradle / Ivy
// Copyright 2015-2019 SWIM.AI inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package swim.math;
import swim.codec.Debug;
import swim.codec.Format;
import swim.codec.Output;
final class TensorArrayObjectSpace extends TensorArraySpace, V, S> implements Debug {
final TensorSpace next;
final TensorDims dims;
TensorArrayObjectSpace(TensorSpace next, TensorDims dims) {
this.next = next;
this.dims = dims;
}
@Override
public Field scalar() {
return this.next.scalar();
}
@Override
public TensorDims dimensions() {
return this.dims;
}
@Override
public TensorSpace next() {
return this.next;
}
@Override
public TensorArray of(Object... array) {
return new TensorArray(this, array);
}
@Override
public Object[] toArray(TensorArray tensor) {
return tensor.array;
}
@Override
public void debug(Output> output) {
output.write("TensorArray").write('.').write("space").write('(')
.debug(this.next).write(", ").debug(this.dims).write(')');
}
@Override
public String toString() {
return Format.debug(this);
}
}