Fixed indent in function descriptions

This commit is contained in:
Ämin Baumeler 2023-09-11 12:22:12 +02:00
parent 642b78c900
commit b6cdd049bf
2 changed files with 10 additions and 10 deletions

View File

@ -9,10 +9,10 @@
/***
* Read graphs from file.
* Input `filename': string
* Input `cnt': pointer to int
* Input `maxdim': pointer to int
* Output: pointer to graph data
* Input `filename': string
* Input `cnt': pointer to int
* Input `maxdim': pointer to int
* Output: pointer to graph data
*
* This function sets `cnt' to the total number of graphs read from `filename',
* sets `maxdim' to the dimension (number of nodes) of the largest graph,

View File

@ -302,13 +302,13 @@ int find_cycles(int *cycles, int *cyclescnt, int n, const int *children, \
/***
* gissoc tests wheter the graph provided is a SOC or not.
* Parameter `n': Number of nodes
* Parameter `parents': Pointer to list of parents per node
* Parameter `parentslen': Pointer to list of number of parents per node
* Parameter `children': Pointer to list of children per node
* Parameter `n': Number of nodes
* Parameter `parents': Pointer to list of parents per node
* Parameter `parentslen': Pointer to list of number of parents per node
* Parameter `children': Pointer to list of children per node
* Parameter `childrenlen': Pointer to list of number of children per node
* Parameter `cycles': Pointer to list of cycles in the graph
* Parameter `cyclescnt': Pointer to list of cycles count
* Parameter `cycles': Pointer to list of cycles in the graph
* Parameter `cyclescnt': Pointer to list of cycles count
*
* This function retruns 0 if the graph is NOT a SOC, and 1 otherwise.
*