All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gov.sandia.cognition.math.matrix.MatrixFactoryContainer Maven / Gradle / Ivy

There is a newer version: 4.0.1
Show newest version
/*
 * 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 getMatrixFactory();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy