Skip to main content
  • Home
  • Development
  • Documentation
  • Donate
  • Operational login
  • Browse the archive

swh logo
SoftwareHeritage
Software
Heritage
Archive
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

Revision 5371c917259900b4efeffd61260e9ab9f80f2249 authored by Ben Hermans on 25 June 2020, 08:45:07 UTC, committed by Ben Hermans on 25 June 2020, 08:45:07 UTC
Add documentation and change some function signatures
1 parent 97025d4
  • Files
  • Changes
  • 9be602c
  • /
  • include
  • /
  • ladel_col_counts.h
Raw File Download
Permalinks

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • revision
  • directory
  • content
revision badge
swh:1:rev:5371c917259900b4efeffd61260e9ab9f80f2249
directory badge Iframe embedding
swh:1:dir:d3c1510be47586da317303bf0d52a9da0f013bf2
content badge Iframe embedding
swh:1:cnt:e4a8bf345c848bb46cc568397f934064ffd85d40
Citations

This interface enables to generate software citations, provided that the root directory of browsed objects contains a citation.cff or codemeta.json file.
Select below a type of object currently browsed in order to generate citations for them.

  • revision
  • directory
  • content
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
ladel_col_counts.h
/**
 * @file ladel_col_counts.h
 * @author Ben Hermans
 * @brief Computes the col counts needed for the symbolic factorization (after etree and postorder).
 * @details The routine in this file computes the column counts of the factor assuming the etree and
 * postordering have been performed prior to this. An alternative (with worse asymptotic complexity) 
 * that computes the etree and column counts in one go, is @a ladel_etree_and_col_counts in ladel_etree.c.  
 */

#ifndef LADEL_COL_COUNTS_H
#define LADEL_COL_COUNTS_H

#include "ladel_types.h"

/**
 * Computes the column counts of the factor.
 * 
 * This routine should only be called after the etree and postorder routines.
 * 
 * @param M     Sparse matrix to be analyzed
 * @param sym   Struct holding symbolic information
 * @param work  LADEL workspace
 * @return      Status
 */
ladel_int ladel_col_counts( ladel_sparse_matrix *M, 
                            ladel_symbolics     *sym, 
                            ladel_work          *work);

#endif /*LADEL_COL_COUNTS_H*/
The diff you're trying to view is too large. Only the first 1000 changed files have been loaded.
Showing with 0 additions and 0 deletions (0 / 0 diffs computed)
swh spinner

Computing file changes ...

Software Heritage — Copyright (C) 2015–2025, The Software Heritage developers. License: GNU AGPLv3+.
The source code of Software Heritage itself is available on our development forge.
The source code files archived by Software Heritage are available under their own copyright and licenses.
Terms of use: Archive access, API— Contact— JavaScript license information— Web API

back to top