Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Romain De Laage De Bellefaye
LO21-projet
Commits
6defe00d
Verified
Commit
6defe00d
authored
Jun 12, 2021
by
Romain De Laage De Bellefaye
🌳
Browse files
Add planeur
parent
75582cf7
Pipeline
#79710
passed with stage
in 15 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
application.db
View file @
6defe00d
No preview for this file type
sql/GoL.sql
View file @
6defe00d
...
...
@@ -11,7 +11,7 @@ INSERT INTO EnsembleEtats VALUES(
"Game of Life"
);
--
3
états :
on, dying and off --> vivant (blanc), mourant (gris
), mort (noir)
--
2
états :
vivant (blanc
), mort (noir)
INSERT
INTO
Etats
VALUES
(
2
,
...
...
@@ -89,11 +89,11 @@ INSERT INTO regles_transition VALUES(
0
);
-- Grille de test
-- Grille de test
4 * 4 - Oscillateur
INSERT
INTO
reseaux
VALUES
(
3
,
"Grille 4*4 - Game of Life"
,
"Grille 4*4 - Game of Life
- Oscillateur
"
,
4
,
4
,
"Game of Life"
...
...
@@ -210,3 +210,188 @@ INSERT INTO Cellules VALUES(
3
,
3
);
--- Exemple 2 : planeur 5*5
INSERT
INTO
reseaux
VALUES
(
4
,
"Grille 5*5 - Game of Life - Planeur"
,
5
,
5
,
"Game of Life"
);
INSERT
INTO
Cellules
VALUES
(
4
,
0
,
0
,
0
);
INSERT
INTO
Cellules
VALUES
(
4
,
0
,
1
,
0
);
INSERT
INTO
Cellules
VALUES
(
4
,
1
,
2
,
0
);
INSERT
INTO
Cellules
VALUES
(
4
,
1
,
3
,
0
);
INSERT
INTO
Cellules
VALUES
(
4
,
1
,
4
,
0
);
INSERT
INTO
Cellules
VALUES
(
4
,
0
,
0
,
1
);
INSERT
INTO
Cellules
VALUES
(
4
,
1
,
1
,
1
);
INSERT
INTO
Cellules
VALUES
(
4
,
0
,
2
,
1
);
INSERT
INTO
Cellules
VALUES
(
4
,
1
,
3
,
1
);
INSERT
INTO
Cellules
VALUES
(
4
,
1
,
4
,
1
);
INSERT
INTO
Cellules
VALUES
(
4
,
0
,
0
,
2
);
INSERT
INTO
Cellules
VALUES
(
4
,
1
,
1
,
2
);
INSERT
INTO
Cellules
VALUES
(
4
,
1
,
2
,
2
);
INSERT
INTO
Cellules
VALUES
(
4
,
1
,
3
,
2
);
INSERT
INTO
Cellules
VALUES
(
4
,
1
,
4
,
2
);
INSERT
INTO
Cellules
VALUES
(
4
,
1
,
0
,
3
);
INSERT
INTO
Cellules
VALUES
(
4
,
1
,
1
,
3
);
INSERT
INTO
Cellules
VALUES
(
4
,
1
,
2
,
3
);
INSERT
INTO
Cellules
VALUES
(
4
,
1
,
3
,
3
);
INSERT
INTO
Cellules
VALUES
(
4
,
1
,
4
,
3
);
INSERT
INTO
Cellules
VALUES
(
4
,
1
,
0
,
4
);
INSERT
INTO
Cellules
VALUES
(
4
,
1
,
1
,
4
);
INSERT
INTO
Cellules
VALUES
(
4
,
1
,
2
,
4
);
INSERT
INTO
Cellules
VALUES
(
4
,
1
,
3
,
4
);
INSERT
INTO
Cellules
VALUES
(
4
,
1
,
4
,
4
);
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment