mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-07-10 22:43:25 +08:00
Elementary cellular automata (#1302)
* feat: Added Elementary Cellular Automata Algorithm w/ explanation, examples, and further reading * test: Added tests for Elementary Cellular Automata Algorithm * chore: add Wikipedia link to Elementary Cellular Automata Algorithm * Used | Bitwise OR and ^= (Bitwise XOR) operators in calculating next Elementary Generation over Addition + and Subtraction -=
This commit is contained in:
93
Cellular-Automata/test/Elementary.test.js
Normal file
93
Cellular-Automata/test/Elementary.test.js
Normal file
@ -0,0 +1,93 @@
|
||||
import { getNextElementaryGeneration } from '../Elementary'
|
||||
|
||||
describe('Elementary Cellular Automata', () => {
|
||||
describe('Rule Errors', () => {
|
||||
it('Correct', () => {
|
||||
expect(() => getNextElementaryGeneration([0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], 128)).not.toThrow()
|
||||
})
|
||||
|
||||
it('Less than 0', () => {
|
||||
expect(() => getNextElementaryGeneration([0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], -1)).toThrow()
|
||||
})
|
||||
|
||||
it('Greater than 255', () => {
|
||||
expect(() => getNextElementaryGeneration([0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], 256)).toThrow()
|
||||
})
|
||||
|
||||
it('Decimal', () => {
|
||||
expect(() => getNextElementaryGeneration([0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], 100.4)).toThrow()
|
||||
})
|
||||
})
|
||||
|
||||
describe('Rule 54 Iterations', () => {
|
||||
it('Generation 1', () => {
|
||||
expect(getNextElementaryGeneration([0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], 54)).toEqual([0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0])
|
||||
})
|
||||
it('Generation 2', () => {
|
||||
expect(getNextElementaryGeneration([0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], 54)).toEqual([0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0])
|
||||
})
|
||||
it('Generation 3', () => {
|
||||
expect(getNextElementaryGeneration([0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], 54)).toEqual([0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0])
|
||||
})
|
||||
it('Generation 4', () => {
|
||||
expect(getNextElementaryGeneration([0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0], 54)).toEqual([0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0])
|
||||
})
|
||||
})
|
||||
|
||||
describe('Rule 222 Iterations', () => {
|
||||
it('Generation 1', () => {
|
||||
expect(getNextElementaryGeneration([0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], 222)).toEqual([0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0])
|
||||
})
|
||||
it('Generation 2', () => {
|
||||
expect(getNextElementaryGeneration([0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], 222)).toEqual([0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0])
|
||||
})
|
||||
it('Generation 3', () => {
|
||||
expect(getNextElementaryGeneration([0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0], 222)).toEqual([0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0])
|
||||
})
|
||||
it('Generation 4', () => {
|
||||
expect(getNextElementaryGeneration([0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0], 222)).toEqual([0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0])
|
||||
})
|
||||
})
|
||||
|
||||
describe('Rule 60 Iterations', () => {
|
||||
it('Generation 1', () => {
|
||||
expect(getNextElementaryGeneration([0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], 60)).toEqual([0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0])
|
||||
})
|
||||
it('Generation 2', () => {
|
||||
expect(getNextElementaryGeneration([0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], 60)).toEqual([0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0])
|
||||
})
|
||||
it('Generation 3', () => {
|
||||
expect(getNextElementaryGeneration([0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], 60)).toEqual([0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0])
|
||||
})
|
||||
it('Generation 4', () => {
|
||||
expect(getNextElementaryGeneration([0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0], 60)).toEqual([0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0])
|
||||
})
|
||||
})
|
||||
|
||||
describe('Rule 90 Iterations', () => {
|
||||
it('Generation 1', () => {
|
||||
expect(getNextElementaryGeneration([0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], 90)).toEqual([0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0])
|
||||
})
|
||||
it('Generation 2', () => {
|
||||
expect(getNextElementaryGeneration([0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], 90)).toEqual([0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0])
|
||||
})
|
||||
it('Generation 3', () => {
|
||||
expect(getNextElementaryGeneration([0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], 90)).toEqual([0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0])
|
||||
})
|
||||
it('Generation 4', () => {
|
||||
expect(getNextElementaryGeneration([0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0], 90)).toEqual([0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0])
|
||||
})
|
||||
})
|
||||
|
||||
describe('Rule 30 Iterations', () => {
|
||||
it('Generation 1', () => {
|
||||
expect(getNextElementaryGeneration([0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], 30)).toEqual([0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0])
|
||||
})
|
||||
it('Generation 2', () => {
|
||||
expect(getNextElementaryGeneration([0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], 30)).toEqual([0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0])
|
||||
})
|
||||
it('Generation 3', () => {
|
||||
expect(getNextElementaryGeneration([0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0], 30)).toEqual([0, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0])
|
||||
})
|
||||
})
|
||||
})
|
Reference in New Issue
Block a user