|
@@ -9,9 +9,9 @@
|
|
|
* Andreas Unger - initial API and implementation
|
|
|
****************************************************************************/
|
|
|
|
|
|
-package org.eclipselabs.mscript.computation.engine.value;
|
|
|
+package org.eclipselabs.mscript.computation.core.value;
|
|
|
|
|
|
-import org.eclipselabs.mscript.computation.engine.IComputationContext;
|
|
|
+import org.eclipselabs.mscript.computation.core.IComputationContext;
|
|
|
import org.eclipselabs.mscript.typesystem.DataType;
|
|
|
import org.eclipselabs.mscript.typesystem.TensorType;
|
|
|
|
|
@@ -39,7 +39,7 @@ public class VectorValue extends AbstractExplicitDataTypeValue implements IArray
|
|
|
}
|
|
|
|
|
|
/* (non-Javadoc)
|
|
|
- * @see org.eclipselabs.mscript.computation.engine.value.AbstractExplicitDataTypeValue#getDataType()
|
|
|
+ * @see org.eclipselabs.mscript.computation.core.value.AbstractExplicitDataTypeValue#getDataType()
|
|
|
*/
|
|
|
@Override
|
|
|
public TensorType getDataType() {
|
|
@@ -47,7 +47,7 @@ public class VectorValue extends AbstractExplicitDataTypeValue implements IArray
|
|
|
}
|
|
|
|
|
|
/* (non-Javadoc)
|
|
|
- * @see org.eclipselabs.mscript.computation.engine.value.AbstractValue#doConvert(org.eclipselabs.mscript.typesystem.DataType)
|
|
|
+ * @see org.eclipselabs.mscript.computation.core.value.AbstractValue#doConvert(org.eclipselabs.mscript.typesystem.DataType)
|
|
|
*/
|
|
|
@Override
|
|
|
protected IValue doConvert(DataType dataType) {
|
|
@@ -81,7 +81,7 @@ public class VectorValue extends AbstractExplicitDataTypeValue implements IArray
|
|
|
}
|
|
|
|
|
|
/* (non-Javadoc)
|
|
|
- * @see org.eclipselabs.mscript.computation.engine.value.IArrayValue#set(int[], org.eclipselabs.mscript.computation.engine.value.IValue)
|
|
|
+ * @see org.eclipselabs.mscript.computation.core.value.IArrayValue#set(int[], org.eclipselabs.mscript.computation.core.value.IValue)
|
|
|
*/
|
|
|
public void set(int[] indices, IValue value) {
|
|
|
if (indices.length != 1) {
|
|
@@ -94,7 +94,7 @@ public class VectorValue extends AbstractExplicitDataTypeValue implements IArray
|
|
|
}
|
|
|
|
|
|
/* (non-Javadoc)
|
|
|
- * @see org.eclipselabs.mscript.computation.engine.value.AbstractValue#doMultiply(org.eclipselabs.mscript.computation.engine.value.IValue, org.eclipselabs.mscript.typesystem.DataType)
|
|
|
+ * @see org.eclipselabs.mscript.computation.core.value.AbstractValue#doMultiply(org.eclipselabs.mscript.computation.core.value.IValue, org.eclipselabs.mscript.typesystem.DataType)
|
|
|
*/
|
|
|
@Override
|
|
|
protected IValue doMultiply(IValue other, DataType resultDataType) {
|