gov.sandia.cognition.math.matrix.MatrixFactoryContainer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cognitive-foundry Show documentation
Show all versions of cognitive-foundry Show documentation
A single jar with all the Cognitive Foundry components.
/*
* File: MatrixFactoryContainer.java
* Authors: Justin Basilico
* Project: Cognitive Foundry Common Core
*
* Copyright 2011 Cognitive Foundry. All rights reserved.
*/
package gov.sandia.cognition.math.matrix;
/**
* Interface for a container for a matrix factory.
*
* @author Justin Basilico
* @since 3.3.3
*/
public interface MatrixFactoryContainer
{
/**
* Gets the matrix factory the object to use to create new matrices.
*
* @return
* The matrix factory.
*/
public MatrixFactory extends Matrix> getMatrixFactory();
}