Fixed indent in function descriptions
This commit is contained in:
parent
642b78c900
commit
b6cdd049bf
@ -9,10 +9,10 @@
|
|||||||
|
|
||||||
/***
|
/***
|
||||||
* Read graphs from file.
|
* Read graphs from file.
|
||||||
* Input `filename': string
|
* Input `filename': string
|
||||||
* Input `cnt': pointer to int
|
* Input `cnt': pointer to int
|
||||||
* Input `maxdim': pointer to int
|
* Input `maxdim': pointer to int
|
||||||
* Output: pointer to graph data
|
* Output: pointer to graph data
|
||||||
*
|
*
|
||||||
* This function sets `cnt' to the total number of graphs read from `filename',
|
* 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,
|
* sets `maxdim' to the dimension (number of nodes) of the largest graph,
|
||||||
|
12
src/SOCgen.c
12
src/SOCgen.c
@ -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.
|
* gissoc tests wheter the graph provided is a SOC or not.
|
||||||
* Parameter `n': Number of nodes
|
* Parameter `n': Number of nodes
|
||||||
* Parameter `parents': Pointer to list of parents per node
|
* Parameter `parents': Pointer to list of parents per node
|
||||||
* Parameter `parentslen': Pointer to list of number 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 `children': Pointer to list of children per node
|
||||||
* Parameter `childrenlen': Pointer to list of number 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 `cycles': Pointer to list of cycles in the graph
|
||||||
* Parameter `cyclescnt': Pointer to list of cycles count
|
* Parameter `cyclescnt': Pointer to list of cycles count
|
||||||
*
|
*
|
||||||
* This function retruns 0 if the graph is NOT a SOC, and 1 otherwise.
|
* This function retruns 0 if the graph is NOT a SOC, and 1 otherwise.
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user