Reduce bsort and matrix1 data size

This commit is contained in:
2026-07-07 18:16:09 +02:00
parent bf87063bf1
commit 5d64884397
2 changed files with 4 additions and 4 deletions
@@ -42,7 +42,7 @@ int bsort_BubbleSort(int Array[]);
Declaration of global variables
*/
#define bsort_SIZE 100
#define bsort_SIZE 5
static int bsort_Array[bsort_SIZE];
@@ -64,9 +64,9 @@
__attribute__((import_module("__pragma"), import_name("loopbound"))) extern void
__pragma_loopbound(unsigned int min_bound, unsigned int max_bound);
#define X 10 /* first dimension of array A */
#define Y 10 /* second dimension of array A, first dimension of array B */
#define Z 10 /* second dimension of array B */
#define X 5 /* first dimension of array A */
#define Y 5 /* second dimension of array A, first dimension of array B */
#define Z 5 /* second dimension of array B */
/*
Forward declaration of functions