matrix_market.h 721 B

1234567891011121314151617181920
  1. /**
  2. * @file
  3. * @brief import <a href=https://math.nist.gov/MatrixMarket/>Matrix Market</a>
  4. */
  5. /*************************************************************************
  6. * Copyright (c) 2011 AT&T Intellectual Property
  7. * All rights reserved. This program and the accompanying materials
  8. * are made available under the terms of the Eclipse Public License v1.0
  9. * which accompanies this distribution, and is available at
  10. * https://www.eclipse.org/legal/epl-v10.html
  11. *
  12. * Contributors: Details at https://graphviz.org
  13. *************************************************************************/
  14. #pragma once
  15. #include "mmio.h"
  16. #include <sparse/SparseMatrix.h>
  17. SparseMatrix SparseMatrix_import_matrix_market(FILE * f);