From 4c393434724122e5d5a5d846be7dd309547ea9a6 Mon Sep 17 00:00:00 2001 From: Brian Hicks Date: Tue, 7 Jan 2020 12:13:13 -0500 Subject: [PATCH] mark second step as done --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b6a712f..5bad8bd 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ - [x] Read the input bitmap and count NxN patterns. - [ ] (optional) Augment pattern data with rotations and reflections. -- [ ] Create an array with the dimensions of the output (called "wave" in the source). Each element of this array represents a state of an NxN region in the output. A state of an NxN region is a superposition of NxN patterns of the input with boolean coefficients (so a state of a pixel in the output is a superposition of input colors with real coefficients). False coefficient means that the corresponding pattern is forbidden, true coefficient means that the corresponding pattern is not yet forbidden. +- [x] Create an array with the dimensions of the output (called "wave" in the source). Each element of this array represents a state of an NxN region in the output. A state of an NxN region is a superposition of NxN patterns of the input with boolean coefficients (so a state of a pixel in the output is a superposition of input colors with real coefficients). False coefficient means that the corresponding pattern is forbidden, true coefficient means that the corresponding pattern is not yet forbidden. - [ ] Initialize the wave in the completely unobserved state, i.e. with all the boolean coefficients being true. - Repeat the following steps: - Observation: