#include "types.h"


Go to the source code of this file.
Classes | |
| class | SCell |
| The SCell structure handle sparse matrix cells. More... | |
Typedefs | |
| typedef struct SCell * | pSCell |
Functions | |
| pSCell | Lidy_CreateCell (Real Value, unsigned int RowIndex, unsigned int ColumnIndex, pSCell pNextRow, pSCell pNextColumn) |
| Create and allocate a new cell. | |
| void | Lidy_DisplayCellValue (pSCell Cell) |
| Display the value of a cell in a correct format if Cell is not null. | |
| void | Lidy_DeleteCell (pSCell Cell) |
| Delete a cell if Cell is not null. | |
| pSCell Lidy_CreateCell | ( | Real | Value, | |
| unsigned int | RowIndex, | |||
| unsigned int | ColumnIndex, | |||
| pSCell | pNextRow, | |||
| pSCell | pNextColumn | |||
| ) |
Create and allocate a new cell.
| Value | is value of the cell | |
| RowIndex | is the row index of the cell | |
| ColumnIndex | is the column index of the cell | |
| pNextRow | is the cell pointer linked to the next row cell | |
| pNextColumn | is the cell pointer linked to the next column cell |
| void Lidy_DisplayCellValue | ( | pSCell | Cell | ) |
Display the value of a cell in a correct format if Cell is not null.
| Cell | is the cell with its own value to display |
| void Lidy_DeleteCell | ( | pSCell | Cell | ) |
Delete a cell if Cell is not null.
| Cell | is the cell to delete |
1.5.8