1
0
mirror of https://gitlab.com/klmp200/LO27.git synced 2024-11-22 22:43:19 +00:00

Tested compillation

This commit is contained in:
Antoine Bartuccio 2016-12-13 15:12:55 +01:00
parent 3a91f0655a
commit a91ea8a682
3 changed files with 17 additions and 12 deletions

View File

@ -1,22 +1,23 @@
#include <stdio.h>
#include <stdlib.h>
#include <Matrix.h>
#include <CellElement.h>
#include <matrix.h>
Matrix applyRules (Matrix matrix,int Rules, int N){
int pow = 2;
int power = 2;
int i = 0;
if (Rules <= 0){
return matrix;
} else {
while (Rules%pow == 0 ){
pow*=2;
while (Rules%power == 0 ){
power*=2;
}
for (i=0;i<N;i++){
printf("Apply rule %d \n",Rules%pow);
printf("Apply rule %d \n",Rules%power);
/*Replace it by the implementation of the rules*/
}
applyRules(matrix,Rules - Rules%pow,N);
applyRules(matrix,Rules - Rules%power,N);
}
return matrix;
}

8
main.c
View File

@ -8,13 +8,17 @@
#include <stdio.h>
#include <stdlib.h>
#include <Matrix.h>
#include <matrix.h>
int main(int argc, char **argv){
Matrix matrix;
matrix.cols = CreateList();
matrix.rows = CreateList();
matrix.colCount = matrix.cols->size;
matrix.rowCount= matrix.rows->size;
int Rule = 170;
int N = 1;
applyRules (matrix,Rule,N);
applyRules(matrix,Rule,N);
/*
Matrix matrix;
cellElement * tree = NULL;