diff --git a/d2/da8/bead__sort_8c.html b/d2/da8/bead__sort_8c.html index 4aeb6713..22f02163 100644 --- a/d2/da8/bead__sort_8c.html +++ b/d2/da8/bead__sort_8c.html @@ -178,24 +178,23 @@ Functions
87 }
88
89 printf("Original array: ");
-
90 display(arr, n);
+
90 display(arr, n);
91
92 bead_sort(arr, n);
93
94 printf("Sorted array: ");
-
95 display(arr, n);
+
95 display(arr, n);
96
97 free(arr);
98 return 0;
99}
bead_sort
void bead_sort(int *a, size_t len)
This is where the sorting of the array takes place.
Definition: bead_sort.c:37
-
display
void display(const int *arr, int n)
Displays the array, passed to this method.
Definition: bead_sort.c:23
malloc
#define malloc(bytes)
This macro replace the standard malloc function with malloc_dbg.
Definition: malloc_dbg.h:18
free
#define free(ptr)
This macro replace the standard free function with free_dbg.
Definition: malloc_dbg.h:26
Here is the call graph for this function:
-
+
diff --git a/d2/da8/bead__sort_8c_ac0f2228420376f4db7e1274f2b41667c_cgraph.map b/d2/da8/bead__sort_8c_ac0f2228420376f4db7e1274f2b41667c_cgraph.map index ecb48498..49110699 100644 --- a/d2/da8/bead__sort_8c_ac0f2228420376f4db7e1274f2b41667c_cgraph.map +++ b/d2/da8/bead__sort_8c_ac0f2228420376f4db7e1274f2b41667c_cgraph.map @@ -1,5 +1,4 @@ - + - diff --git a/d2/da8/bead__sort_8c_ac0f2228420376f4db7e1274f2b41667c_cgraph.md5 b/d2/da8/bead__sort_8c_ac0f2228420376f4db7e1274f2b41667c_cgraph.md5 index e7f212b2..f1f60063 100644 --- a/d2/da8/bead__sort_8c_ac0f2228420376f4db7e1274f2b41667c_cgraph.md5 +++ b/d2/da8/bead__sort_8c_ac0f2228420376f4db7e1274f2b41667c_cgraph.md5 @@ -1 +1 @@ -9f2d7fe7dbfc718f9a229a031047e02e \ No newline at end of file +ad4f624cd123e71d40709d9ba67b6dd2 \ No newline at end of file diff --git a/d2/da8/bead__sort_8c_ac0f2228420376f4db7e1274f2b41667c_cgraph.svg b/d2/da8/bead__sort_8c_ac0f2228420376f4db7e1274f2b41667c_cgraph.svg index 09dd58ee..2462bcac 100644 --- a/d2/da8/bead__sort_8c_ac0f2228420376f4db7e1274f2b41667c_cgraph.svg +++ b/d2/da8/bead__sort_8c_ac0f2228420376f4db7e1274f2b41667c_cgraph.svg @@ -4,16 +4,16 @@ - - + + main Node1 - -main + +main @@ -21,31 +21,16 @@ Node2 - -bead_sort + +bead_sort Node1->Node2 - - - - - -Node3 - - -display - - - - - -Node1->Node3 - - + + diff --git a/dc/d2e/lu__decompose_8c.html b/dc/d2e/lu__decompose_8c.html index 9ddbc19a..27cf688e 100644 --- a/dc/d2e/lu__decompose_8c.html +++ b/dc/d2e/lu__decompose_8c.html @@ -321,11 +321,11 @@ Functions
105 lu_decomposition(A, L, U, mat_size);
106
107 printf("A = \n");
-
108 display(A, mat_size);
+
108 display(A, mat_size);
109 printf("\nL = \n");
-
110 display(L, mat_size);
+
110 display(L, mat_size);
111 printf("\nU = \n");
-
112 display(U, mat_size);
+
112 display(U, mat_size);
113
114 /* Free dynamically allocated memory */
115 for (int i = 0; i < mat_size; i++)
@@ -340,7 +340,6 @@ Functions
124
125 return 0;
126}
-
void display(double **A, int N)
Function to display square matrix.
Definition: lu_decompose.c:66
int lu_decomposition(double **A, double **L, double **U, int mat_size)
Perform LU decomposition on matrix.
Definition: lu_decompose.c:20
#define malloc(bytes)
This macro replace the standard malloc function with malloc_dbg.
Definition: malloc_dbg.h:18
#define free(ptr)
This macro replace the standard free function with free_dbg.
Definition: malloc_dbg.h:26
@@ -349,7 +348,7 @@ Functions
Here is the call graph for this function:
-
+
diff --git a/dc/d2e/lu__decompose_8c_a3c04138a5bfe5d72780bb7e82a18e627_cgraph.map b/dc/d2e/lu__decompose_8c_a3c04138a5bfe5d72780bb7e82a18e627_cgraph.map index dfbc37ec..0ce2d6cc 100644 --- a/dc/d2e/lu__decompose_8c_a3c04138a5bfe5d72780bb7e82a18e627_cgraph.map +++ b/dc/d2e/lu__decompose_8c_a3c04138a5bfe5d72780bb7e82a18e627_cgraph.map @@ -1,5 +1,4 @@ - - - + + diff --git a/dc/d2e/lu__decompose_8c_a3c04138a5bfe5d72780bb7e82a18e627_cgraph.md5 b/dc/d2e/lu__decompose_8c_a3c04138a5bfe5d72780bb7e82a18e627_cgraph.md5 index 8822e08a..5b840f1c 100644 --- a/dc/d2e/lu__decompose_8c_a3c04138a5bfe5d72780bb7e82a18e627_cgraph.md5 +++ b/dc/d2e/lu__decompose_8c_a3c04138a5bfe5d72780bb7e82a18e627_cgraph.md5 @@ -1 +1 @@ -0f28b5e33391092a8f6aa043e420a141 \ No newline at end of file +76f3bc7feb5a359643f29262ee5bc10f \ No newline at end of file diff --git a/dc/d2e/lu__decompose_8c_a3c04138a5bfe5d72780bb7e82a18e627_cgraph.svg b/dc/d2e/lu__decompose_8c_a3c04138a5bfe5d72780bb7e82a18e627_cgraph.svg index 8e5fee0c..44dd3594 100644 --- a/dc/d2e/lu__decompose_8c_a3c04138a5bfe5d72780bb7e82a18e627_cgraph.svg +++ b/dc/d2e/lu__decompose_8c_a3c04138a5bfe5d72780bb7e82a18e627_cgraph.svg @@ -4,48 +4,33 @@ - - + + main Node1 - -main + +main Node2 - - -display + + +lu_decomposition Node1->Node2 - - - - - -Node3 - - -lu_decomposition - - - - - -Node1->Node3 - - + +