代码搜索:conway
找到约 110 项符合「conway」的源代码
代码结果 110
www.eeworm.com/read/435778/7784867
cpp conway.cpp
#include
#include
#include
#define COL 7
#define LINE 8
#define INDEX 250000
struct node
{
char board[LINE][COL];
struct node *next;
};
typedef struct nod
www.eeworm.com/read/119384/14831665
jpeg conway.jpeg
www.eeworm.com/read/279715/4134910
properties conway.properties
app.title=Conway's Game Of Life
next.generation.label=Next Generation
start.label=Start
stop.label=Stop
clear.label=Clear
pattern.label=Pattern :
app.description=\
Conway's Game Of Life i
www.eeworm.com/read/270401/4239044
properties conway.properties
app.title=Conway's Game Of Life
next.generation.label=Next Generation
start.label=Start
stop.label=Stop
clear.label=Clear
pattern.label=Pattern :
app.description=\
Conway's Game Of Life i
www.eeworm.com/read/270401/4239058
dsl conway.dsl
#These are the DSL elements for Conways Game of Life.
[then]Kill the cell=theCell.queueNextCellState(CellState.DEAD);
[when]A live cell has fewer than {number} live neighbors=theCell: Cell(numberOfLiv
www.eeworm.com/read/270401/4239059
drl conway.drl
package org.drools.examples
expander conway.dsl
import org.drools.examples.conway.Cell;
import org.drools.examples.conway.CellState;
rule "Kill The Lonely"
when
A live cell has fewer th
www.eeworm.com/read/432926/1886350
pde conway.pde
/**
* Conway's Game of Life
* by Mike Davis.
*
* This program is a simple version of Conway's
* game of Life. A lit point turns off if there
* are fewer than two or more than three surroun
www.eeworm.com/read/279715/4134906
conf drools-conway.conf
module.uri=http://drools.org/semantics/conway
Condition(condition) : org.drools.examples.conway.rules.dsl.ConwayConditionFactory
Consequence(actions) : org.drools.examples.conway.rules.dsl.ConwayC