Add forward declarations. --- fasthenry-3.0/src/fasthenry/sparse/spFactor.c.orig 2015-07-22 10:37:04.934043468 +0200 +++ fasthenry-3.0/src/fasthenry/sparse/spFactor.c 2015-07-22 12:52:55.515636802 +0200 @@ -105,7 +105,29 @@ #include "spDefs.h" - +static int FactorComplexMatrix( MatrixPtr ); +static CreateInternalVectors( MatrixPtr ); +static CountMarkowitz( MatrixPtr, register RealVector, int ); +static MarkowitzProducts( MatrixPtr, int ); +static ElementPtr SearchForPivot( MatrixPtr, int, int ); +static ElementPtr SearchForSingleton( MatrixPtr, int ); +static ElementPtr QuicklySearchDiagonal( MatrixPtr, int ); +static ElementPtr SearchDiagonal( MatrixPtr, register int ); +static ElementPtr SearchEntireMatrix( MatrixPtr, int ); +static RealNumber FindLargestInCol( register ElementPtr ); +static RealNumber FindBiggestInColExclude( MatrixPtr, register ElementPtr, + register int ); +static ExchangeRowsAndCols( MatrixPtr, ElementPtr, register int ); +static ExchangeColElements( MatrixPtr, int, register ElementPtr, + int, register ElementPtr, int ); +static ExchangeRowElements( MatrixPtr, int, register ElementPtr, + int, register ElementPtr, int ); +static RealRowColElimination( MatrixPtr, register ElementPtr ); +static ComplexRowColElimination( MatrixPtr, register ElementPtr ); +static UpdateMarkowitzNumbers( MatrixPtr, ElementPtr ); +static ElementPtr CreateFillin( MatrixPtr, register int, int ); +static int MatrixIsSingular( MatrixPtr, int ); +static int ZeroPivot( MatrixPtr, int ); type='hidden' name='id' value='dc7e57833e6817adb9c799b2fda8b10921f1b050'/>
path: root/tests/cve-sample.json
AgeCommit message (Expand)Author
2019-10-23cve: Rewrite to read the JSON feed instead of the XML feed....The XML feed was discontinued on Oct. 16th, 2019: <https://nvd.nist.gov/General/News/XML-Vulnerability-Feed-Retirement-Phase-3> * guix/cve.scm (string->date*): New procedure. (<cve-item>, <cve>, <cve-reference>): New record types. (cpe-match->cve-configuration, configuration-data->cve-configurations) (json->cve-items, version-matches?): New procedures. (yearly-feed-uri): Change URL to refer to JSON feed. (cpe->product-alist, %parse-vulnerability-feed) (xml->vulnerabilities): Remove. (cve-configuration->package-list, merge-package-lists) (cve-item->vulnerability, json->vulnerabilities): New procedures. (write-cache): Use 'json->vulnerabilities' instead of 'xml->vulnerabilities', and remove 'parameterize'. (vulnerabilities->lookup-proc): Use 'version-matches?' when VERSION is true. * tests/cve.scm (%sample): Use 'tests/cve-sample.json'. (%expected-vulnerabilities): Rewrite accordingly. ("json->cve-items", "cve-item-published-date") ("json->vulnerabilities"): New tests. ("xml->vulnerabilities"): Remove. ("vulnerabilities->lookup-proc"): Adjust to new vulnerabilities. * tests/cve-sample.json: New file. * tests/cve-sample.xml: Remove. * Makefile.am (EXTRA_DIST): Adjust accordingly. * doc/guix.texi (Invoking guix lint): Update nist.gov URLs. Ludovic Courtès