PandA-2024.02
|
Go to the source code of this file.
Functions | |
int | Upper_Triangular_Solve (float *U, float B[], float x[], int n) |
void | Unit_Lower_Triangular_Solve (float *L, float B[], float x[], int n) |
int | Doolittle_LU_Decomposition (float *A, int n) |
int | Doolittle_LU_Solve (float *LU, float B[], float x[], int n) |
int | invertMatrix (float *LU, float *invA, float *I) |
int | fun (float *A, float *invA, float *b, float *x, float *I) |
int Doolittle_LU_Decomposition | ( | float * | A, |
int | n | ||
) |
Definition at line 153 of file LUdecomposition.c.
References k.
Referenced by fun().
int Doolittle_LU_Solve | ( | float * | LU, |
float | B[], | ||
float | x[], | ||
int | n | ||
) |
Definition at line 219 of file LUdecomposition.c.
References Unit_Lower_Triangular_Solve(), and Upper_Triangular_Solve().
Referenced by fun(), and invertMatrix().
int fun | ( | float * | A, |
float * | invA, | ||
float * | b, | ||
float * | x, | ||
float * | I | ||
) |
Definition at line 254 of file LUdecomposition.c.
References Doolittle_LU_Decomposition(), Doolittle_LU_Solve(), and invertMatrix().
Referenced by CallGraphManager::call_graph_computation_recursive(), call_graph_computation::Exec(), execute(), CallGraphManager::expandCallGraphFromFunction(), BehavioralHelper::get_parameters(), BehavioralHelper::GetParameters(), fu_binding::manage_killing_function_proxies(), and functions::map_shared_function().
int invertMatrix | ( | float * | LU, |
float * | invA, | ||
float * | I | ||
) |
Definition at line 233 of file LUdecomposition.c.
References Doolittle_LU_Solve().
Referenced by fun().
void Unit_Lower_Triangular_Solve | ( | float * | L, |
float | B[], | ||
float | x[], | ||
int | n | ||
) |
Definition at line 86 of file LUdecomposition.c.
References k.
Referenced by Doolittle_LU_Solve().
int Upper_Triangular_Solve | ( | float * | U, |
float | B[], | ||
float | x[], | ||
int | n | ||
) |
Definition at line 36 of file LUdecomposition.c.
References k.
Referenced by Doolittle_LU_Solve().