id
int32 0
12.9k
| code
sequencelengths 2
264k
|
---|---|
11,700 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
";",
"public",
"class",
"PlotData",
"{",
"public",
"Double",
"fitness",
";",
"public",
"Double",
"worst",
";",
"public",
"Double",
"median",
";",
"public",
"PlotData",
"(",
"double",
"fitness",
",",
"double",
"worst",
",",
"double",
"median",
")",
"{",
"this",
".",
"fitness",
"=",
"new",
"Double",
"(",
"fitness",
")",
";",
"this",
".",
"worst",
"=",
"new",
"Double",
"(",
"worst",
")",
";",
"this",
".",
"median",
"=",
"new",
"Double",
"(",
"median",
")",
";",
"}",
"}",
"</s>"
] |
11,701 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"ending",
";",
"import",
"java",
".",
"util",
".",
"ArrayList",
";",
"import",
"java",
".",
"util",
".",
"List",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"model",
".",
"Individual",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"selection",
".",
"EliteSelection",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"selection",
".",
"Selection",
";",
"public",
"class",
"ContentEnding",
"implements",
"EndingMethod",
"{",
"private",
"List",
"<",
"Double",
">",
"stats",
"=",
"new",
"ArrayList",
"<",
"Double",
">",
"(",
")",
";",
"private",
"int",
"iterationsToImprove",
";",
"private",
"double",
"improvement",
";",
"private",
"Selection",
"elite",
";",
"public",
"ContentEnding",
"(",
"int",
"iterationsToImprove",
",",
"double",
"improvement",
")",
"{",
"this",
".",
"iterationsToImprove",
"=",
"iterationsToImprove",
";",
"this",
".",
"improvement",
"=",
"improvement",
";",
"this",
".",
"elite",
"=",
"new",
"EliteSelection",
"(",
"1",
")",
";",
"}",
"@",
"Override",
"public",
"boolean",
"shouldEnd",
"(",
"List",
"<",
"Individual",
">",
"population",
",",
"int",
"iterations",
")",
"{",
"Individual",
"best",
"=",
"elite",
".",
"select",
"(",
"population",
",",
"0",
")",
".",
"get",
"(",
"0",
")",
";",
"if",
"(",
"iterations",
"<",
"iterationsToImprove",
")",
"{",
"stats",
".",
"add",
"(",
"iterations",
",",
"best",
".",
"getApptitude",
"(",
")",
")",
";",
"return",
"false",
";",
"}",
"else",
"if",
"(",
"iterations",
"==",
"iterationsToImprove",
")",
"{",
"stats",
".",
"add",
"(",
"iterations",
",",
"best",
".",
"getApptitude",
"(",
")",
")",
";",
"}",
"else",
"{",
"stats",
".",
"set",
"(",
"iterations",
"%",
"(",
"iterationsToImprove",
"+",
"1",
")",
",",
"best",
".",
"getApptitude",
"(",
")",
")",
";",
"}",
"if",
"(",
"stats",
".",
"get",
"(",
"iterations",
"%",
"(",
"iterationsToImprove",
"+",
"1",
")",
")",
"-",
"(",
"stats",
".",
"get",
"(",
"(",
"iterations",
"+",
"1",
")",
"%",
"(",
"iterationsToImprove",
"+",
"1",
")",
")",
")",
"<",
"improvement",
")",
"{",
"return",
"true",
";",
"}",
"return",
"false",
";",
"}",
"}",
"</s>"
] |
11,702 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"ending",
";",
"import",
"java",
".",
"util",
".",
"List",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"model",
".",
"Individual",
";",
"public",
"class",
"MaxGenerationEnding",
"implements",
"EndingMethod",
"{",
"private",
"int",
"iterationsToEnd",
";",
"public",
"MaxGenerationEnding",
"(",
"int",
"iterationsToEnd",
")",
"{",
"this",
".",
"iterationsToEnd",
"=",
"iterationsToEnd",
";",
"}",
"@",
"Override",
"public",
"boolean",
"shouldEnd",
"(",
"List",
"<",
"Individual",
">",
"population",
",",
"int",
"iterations",
")",
"{",
"return",
"iterations",
"==",
"iterationsToEnd",
";",
"}",
"}",
"</s>"
] |
11,703 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"ending",
";",
"import",
"java",
".",
"util",
".",
"ArrayList",
";",
"import",
"java",
".",
"util",
".",
"List",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"model",
".",
"Individual",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"selection",
".",
"EliteSelection",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"selection",
".",
"Selection",
";",
"public",
"class",
"StructuralEnding",
"implements",
"EndingMethod",
"{",
"private",
"int",
"iterationsToCheck",
";",
"private",
"int",
"toBeEqual",
";",
"private",
"Selection",
"elite",
";",
"private",
"List",
"<",
"List",
"<",
"Individual",
">",
">",
"lastIndividuals",
";",
"public",
"StructuralEnding",
"(",
"int",
"iterationsToCheck",
",",
"int",
"percent",
",",
"int",
"popSize",
")",
"{",
"this",
".",
"iterationsToCheck",
"=",
"iterationsToCheck",
";",
"this",
".",
"toBeEqual",
"=",
"(",
"popSize",
"*",
"percent",
")",
"/",
"100",
";",
"this",
".",
"elite",
"=",
"new",
"EliteSelection",
"(",
"this",
".",
"toBeEqual",
")",
";",
"this",
".",
"lastIndividuals",
"=",
"new",
"ArrayList",
"<",
"List",
"<",
"Individual",
">",
">",
"(",
")",
";",
"}",
"@",
"Override",
"public",
"boolean",
"shouldEnd",
"(",
"List",
"<",
"Individual",
">",
"population",
",",
"int",
"iterations",
")",
"{",
"if",
"(",
"iterations",
"%",
"iterationsToCheck",
"!=",
"0",
"||",
"iterations",
"==",
"0",
")",
"{",
"lastIndividuals",
".",
"add",
"(",
"population",
")",
";",
"return",
"false",
";",
"}",
"List",
"<",
"List",
"<",
"Individual",
">",
">",
"bests",
"=",
"new",
"ArrayList",
"<",
"List",
"<",
"Individual",
">",
">",
"(",
")",
";",
"for",
"(",
"List",
"<",
"Individual",
">",
"list",
":",
"lastIndividuals",
")",
"{",
"bests",
".",
"add",
"(",
"elite",
".",
"select",
"(",
"list",
",",
"0",
")",
")",
";",
"}",
"boolean",
"ret",
"=",
"false",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"this",
".",
"toBeEqual",
";",
"i",
"++",
")",
"{",
"double",
"firstApp",
"=",
"bests",
".",
"get",
"(",
"0",
")",
".",
"get",
"(",
"i",
")",
".",
"getApptitude",
"(",
")",
";",
"double",
"lastApp",
"=",
"bests",
".",
"get",
"(",
"bests",
".",
"size",
"(",
")",
"-",
"1",
")",
".",
"get",
"(",
"i",
")",
".",
"getApptitude",
"(",
")",
";",
"ret",
"|=",
"(",
"firstApp",
"==",
"lastApp",
")",
";",
"}",
"return",
"ret",
";",
"}",
"}",
"</s>"
] |
11,704 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"ending",
";",
"import",
"java",
".",
"util",
".",
"List",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"model",
".",
"Individual",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"selection",
".",
"EliteSelection",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"selection",
".",
"Selection",
";",
"public",
"class",
"OptimumOrFitnessEnding",
"implements",
"EndingMethod",
"{",
"private",
"double",
"optimum",
";",
"private",
"double",
"tolerance",
";",
"private",
"Selection",
"elite",
";",
"public",
"OptimumOrFitnessEnding",
"(",
"double",
"optimum",
",",
"double",
"tolerance",
")",
"{",
"this",
".",
"optimum",
"=",
"optimum",
";",
"this",
".",
"tolerance",
"=",
"tolerance",
";",
"elite",
"=",
"new",
"EliteSelection",
"(",
"1",
")",
";",
"}",
"@",
"Override",
"public",
"boolean",
"shouldEnd",
"(",
"List",
"<",
"Individual",
">",
"population",
",",
"int",
"iterations",
")",
"{",
"Individual",
"best",
"=",
"elite",
".",
"select",
"(",
"population",
",",
"0",
")",
".",
"get",
"(",
"0",
")",
";",
"return",
"Math",
".",
"abs",
"(",
"(",
"best",
".",
"getApptitude",
"(",
")",
"-",
"optimum",
")",
")",
"<",
"tolerance",
";",
"}",
"}",
"</s>"
] |
11,705 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"ending",
";",
"import",
"java",
".",
"util",
".",
"List",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"model",
".",
"Individual",
";",
"public",
"class",
"MixEnding",
"implements",
"EndingMethod",
"{",
"private",
"List",
"<",
"EndingMethod",
">",
"endingMethods",
";",
"public",
"MixEnding",
"(",
"List",
"<",
"EndingMethod",
">",
"endingMethods",
")",
"{",
"this",
".",
"endingMethods",
"=",
"endingMethods",
";",
"}",
"@",
"Override",
"public",
"boolean",
"shouldEnd",
"(",
"List",
"<",
"Individual",
">",
"population",
",",
"int",
"iterations",
")",
"{",
"for",
"(",
"EndingMethod",
"endingMethod",
":",
"endingMethods",
")",
"{",
"if",
"(",
"endingMethod",
".",
"shouldEnd",
"(",
"population",
",",
"iterations",
")",
")",
"{",
"System",
".",
"out",
".",
"println",
"(",
"\"\"",
"+",
"endingMethod",
".",
"getClass",
"(",
")",
".",
"getCanonicalName",
"(",
")",
")",
";",
"return",
"true",
";",
"}",
"}",
"return",
"false",
";",
"}",
"}",
"</s>"
] |
11,706 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"ending",
";",
"import",
"java",
".",
"util",
".",
"List",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"model",
".",
"Individual",
";",
"public",
"interface",
"EndingMethod",
"{",
"boolean",
"shouldEnd",
"(",
"List",
"<",
"Individual",
">",
"population",
",",
"int",
"iterations",
")",
";",
"}",
"</s>"
] |
11,707 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"model",
".",
"Individual",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"util",
".",
"InputValues",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"util",
".",
"RandomGenerator",
";",
"import",
"com",
".",
"g4",
".",
"matlab",
".",
"ann",
".",
"ANN",
";",
"import",
"com",
".",
"mathworks",
".",
"toolbox",
".",
"javabuilder",
".",
"MWCellArray",
";",
"import",
"com",
".",
"mathworks",
".",
"toolbox",
".",
"javabuilder",
".",
"MWException",
";",
"public",
"class",
"Backpropagation",
"{",
"private",
"ANN",
"ann",
";",
"private",
"int",
"iterations",
";",
"private",
"double",
"prob",
";",
"public",
"Backpropagation",
"(",
"ANN",
"ann",
",",
"int",
"iterations",
",",
"double",
"prob",
")",
"{",
"this",
".",
"prob",
"=",
"prob",
";",
"this",
".",
"ann",
"=",
"ann",
";",
"this",
".",
"iterations",
"=",
"iterations",
";",
"}",
"public",
"Individual",
"run",
"(",
"Individual",
"individual",
")",
"{",
"Individual",
"ret",
"=",
"new",
"Individual",
"(",
")",
";",
"Object",
"[",
"]",
"matlabRet",
"=",
"null",
";",
"try",
"{",
"matlabRet",
"=",
"ann",
".",
"backpropagation",
"(",
"1",
",",
"individual",
".",
"getData",
"(",
")",
",",
"InputValues",
".",
"getInstance",
"(",
")",
".",
"getInputs",
"(",
")",
",",
"InputValues",
".",
"getInstance",
"(",
")",
".",
"getExpectedOutputs",
"(",
")",
",",
"iterations",
",",
"FunctionResolver",
".",
"ARCHITECTURE",
")",
";",
"}",
"catch",
"(",
"MWException",
"e",
")",
"{",
"}",
"ret",
".",
"setData",
"(",
"(",
"MWCellArray",
")",
"matlabRet",
"[",
"0",
"]",
")",
";",
"return",
"ret",
";",
"}",
"public",
"boolean",
"shouldApply",
"(",
")",
"{",
"return",
"RandomGenerator",
".",
"getDouble",
"(",
")",
"<",
"this",
".",
"prob",
";",
"}",
"}",
"</s>"
] |
11,708 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"model",
".",
"Individual",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"util",
".",
"InputValues",
";",
"import",
"com",
".",
"g4",
".",
"matlab",
".",
"ann",
".",
"ANN",
";",
"import",
"com",
".",
"mathworks",
".",
"toolbox",
".",
"javabuilder",
".",
"MWException",
";",
"import",
"com",
".",
"mathworks",
".",
"toolbox",
".",
"javabuilder",
".",
"MWNumericArray",
";",
"public",
"class",
"Function",
"{",
"private",
"ANN",
"ann",
";",
"public",
"Function",
"(",
"ANN",
"ann",
")",
"{",
"this",
".",
"ann",
"=",
"ann",
";",
"}",
"public",
"double",
"eval",
"(",
"Individual",
"individual",
")",
"{",
"double",
"retVal",
";",
"try",
"{",
"Object",
"[",
"]",
"ret",
"=",
"ann",
".",
"evalANN",
"(",
"2",
",",
"individual",
".",
"getData",
"(",
")",
",",
"InputValues",
".",
"getInstance",
"(",
")",
".",
"getInputs",
"(",
")",
",",
"InputValues",
".",
"getInstance",
"(",
")",
".",
"getExpectedOutputs",
"(",
")",
",",
"InputValues",
".",
"getInstance",
"(",
")",
".",
"getInputsTest",
"(",
")",
",",
"InputValues",
".",
"getInstance",
"(",
")",
".",
"getExpectedOutputsTest",
"(",
")",
",",
"FunctionResolver",
".",
"ARCHITECTURE",
")",
";",
"retVal",
"=",
"(",
"(",
"MWNumericArray",
")",
"ret",
"[",
"0",
"]",
")",
".",
"getDouble",
"(",
"1",
")",
";",
"}",
"catch",
"(",
"MWException",
"e",
")",
"{",
"retVal",
"=",
"Double",
".",
"MIN_VALUE",
";",
"}",
"return",
"retVal",
";",
"}",
"}",
"</s>"
] |
11,709 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"configuration",
";",
"import",
"java",
".",
"io",
".",
"FileInputStream",
";",
"import",
"java",
".",
"io",
".",
"FileNotFoundException",
";",
"import",
"java",
".",
"io",
".",
"IOException",
";",
"import",
"java",
".",
"util",
".",
"List",
";",
"import",
"java",
".",
"util",
".",
"Properties",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"Backpropagation",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"configuration",
".",
"factories",
".",
"BackpropagationFactory",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"configuration",
".",
"factories",
".",
"CrossOverFactory",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"configuration",
".",
"factories",
".",
"EndingFactory",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"configuration",
".",
"factories",
".",
"MutationFactory",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"configuration",
".",
"factories",
".",
"ReplacementFactory",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"configuration",
".",
"factories",
".",
"SelectionFactory",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"crossover",
".",
"Crossover",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"ending",
".",
"EndingMethod",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"mutation",
".",
"Mutation",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"selection",
".",
"Selection",
";",
"import",
"com",
".",
"mathworks",
".",
"toolbox",
".",
"javabuilder",
".",
"MWException",
";",
"public",
"class",
"Configuration",
"{",
"private",
"Properties",
"properties",
";",
"private",
"int",
"architecture",
";",
"private",
"int",
"popSize",
";",
"private",
"double",
"generationGap",
";",
"private",
"EndingMethod",
"ending",
";",
"private",
"Mutation",
"mutation",
";",
"private",
"Backpropagation",
"backpropagation",
";",
"private",
"List",
"<",
"Selection",
">",
"selectionMethods",
";",
"private",
"List",
"<",
"Selection",
">",
"replacementMethods",
";",
"private",
"Crossover",
"crossOver",
";",
"private",
"MutationFactory",
"mutationFactory",
";",
"private",
"SelectionFactory",
"selectionFactory",
";",
"private",
"ReplacementFactory",
"replacementFactory",
";",
"private",
"CrossOverFactory",
"crossOverFactory",
";",
"private",
"EndingFactory",
"endingFactory",
";",
"private",
"BackpropagationFactory",
"backpropagationFactory",
";",
"public",
"Configuration",
"(",
"String",
"propertiesPath",
")",
"throws",
"FileNotFoundException",
",",
"IOException",
",",
"MWException",
"{",
"this",
".",
"properties",
"=",
"new",
"Properties",
"(",
")",
";",
"this",
".",
"mutationFactory",
"=",
"new",
"MutationFactory",
"(",
"this",
".",
"properties",
")",
";",
"this",
".",
"selectionFactory",
"=",
"new",
"SelectionFactory",
"(",
"this",
".",
"properties",
")",
";",
"this",
".",
"replacementFactory",
"=",
"new",
"ReplacementFactory",
"(",
"this",
".",
"properties",
")",
";",
"this",
".",
"crossOverFactory",
"=",
"new",
"CrossOverFactory",
"(",
"this",
".",
"properties",
")",
";",
"this",
".",
"endingFactory",
"=",
"new",
"EndingFactory",
"(",
"this",
".",
"properties",
")",
";",
"this",
".",
"backpropagationFactory",
"=",
"new",
"BackpropagationFactory",
"(",
"this",
".",
"properties",
")",
";",
"this",
".",
"properties",
".",
"load",
"(",
"new",
"FileInputStream",
"(",
"System",
".",
"getProperty",
"(",
"\"user.dir\"",
")",
"+",
"propertiesPath",
")",
")",
";",
"loadGeneralData",
"(",
")",
";",
"loadMutationData",
"(",
")",
";",
"loadBackpropagationData",
"(",
")",
";",
"loadSelectionData",
"(",
")",
";",
"loadReplacementData",
"(",
")",
";",
"loadCrossOverData",
"(",
")",
";",
"loadEndingData",
"(",
")",
";",
"}",
"private",
"void",
"loadGeneralData",
"(",
")",
"{",
"this",
".",
"architecture",
"=",
"Integer",
".",
"valueOf",
"(",
"this",
".",
"properties",
".",
"getProperty",
"(",
"\"architecture\"",
")",
")",
";",
"this",
".",
"popSize",
"=",
"Integer",
".",
"valueOf",
"(",
"this",
".",
"properties",
".",
"getProperty",
"(",
"\"popSize\"",
")",
")",
";",
"this",
".",
"generationGap",
"=",
"Double",
".",
"valueOf",
"(",
"this",
".",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"}",
"private",
"void",
"loadBackpropagationData",
"(",
")",
"throws",
"MWException",
"{",
"this",
".",
"backpropagation",
"=",
"this",
".",
"backpropagationFactory",
".",
"loadBackpropagation",
"(",
")",
";",
"}",
"private",
"void",
"loadEndingData",
"(",
")",
"{",
"this",
".",
"ending",
"=",
"this",
".",
"endingFactory",
".",
"loadEnding",
"(",
")",
";",
"}",
"private",
"void",
"loadCrossOverData",
"(",
")",
"{",
"this",
".",
"crossOver",
"=",
"this",
".",
"crossOverFactory",
".",
"loadCrossOver",
"(",
")",
";",
"}",
"private",
"void",
"loadReplacementData",
"(",
")",
"{",
"this",
".",
"replacementMethods",
"=",
"this",
".",
"replacementFactory",
".",
"loadReplacementMethods",
"(",
")",
";",
"}",
"private",
"void",
"loadSelectionData",
"(",
")",
"{",
"this",
".",
"selectionMethods",
"=",
"this",
".",
"selectionFactory",
".",
"loadSelectionMethods",
"(",
")",
";",
"}",
"private",
"void",
"loadMutationData",
"(",
")",
"{",
"this",
".",
"mutation",
"=",
"this",
".",
"mutationFactory",
".",
"loadMutationList",
"(",
")",
";",
"}",
"public",
"Mutation",
"getMutation",
"(",
")",
"{",
"return",
"mutation",
";",
"}",
"public",
"Backpropagation",
"getBackpropagation",
"(",
")",
"{",
"return",
"backpropagation",
";",
"}",
"public",
"List",
"<",
"Selection",
">",
"getSelectionMethods",
"(",
")",
"{",
"return",
"selectionMethods",
";",
"}",
"public",
"List",
"<",
"Selection",
">",
"getReplacementMethods",
"(",
")",
"{",
"return",
"replacementMethods",
";",
"}",
"public",
"Crossover",
"getCrossOverMethods",
"(",
")",
"{",
"return",
"crossOver",
";",
"}",
"public",
"EndingMethod",
"getEnding",
"(",
")",
"{",
"return",
"ending",
";",
"}",
"public",
"int",
"getArchitecture",
"(",
")",
"{",
"return",
"architecture",
";",
"}",
"public",
"int",
"getPopSize",
"(",
")",
"{",
"return",
"popSize",
";",
"}",
"public",
"double",
"getGenerationGap",
"(",
")",
"{",
"return",
"generationGap",
";",
"}",
"}",
"</s>"
] |
11,710 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"configuration",
".",
"factories",
";",
"import",
"java",
".",
"util",
".",
"Properties",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"crossover",
".",
"AnularCrossover",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"crossover",
".",
"Crossover",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"crossover",
".",
"GeneCrossOver",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"crossover",
".",
"MultipleCrossOver",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"crossover",
".",
"ParameterizedUniformCrossOver",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"crossover",
".",
"SinglePointCrossOver",
";",
"public",
"class",
"CrossOverFactory",
"{",
"private",
"Properties",
"properties",
";",
"public",
"CrossOverFactory",
"(",
"Properties",
"properties",
")",
"{",
"this",
".",
"properties",
"=",
"properties",
";",
"}",
"public",
"Crossover",
"loadCrossOver",
"(",
")",
"{",
"Crossover",
"crossover",
"=",
"null",
";",
"CrossOverEnum",
"crossEnum",
"=",
"CrossOverEnum",
".",
"getCrossOverEnum",
"(",
"properties",
".",
"getProperty",
"(",
"\"crossover\"",
")",
".",
"toUpperCase",
"(",
")",
")",
";",
"double",
"crossoverProbability",
"=",
"0.1",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"{",
"crossoverProbability",
"=",
"Double",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"}",
"switch",
"(",
"crossEnum",
")",
"{",
"case",
"ANULAR",
":",
"crossover",
"=",
"new",
"AnularCrossover",
"(",
"crossoverProbability",
")",
";",
"break",
";",
"case",
"MULTIPLE_POINT",
":",
"int",
"cutPointsQty",
"=",
"1",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"{",
"cutPointsQty",
"=",
"Integer",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"}",
"crossover",
"=",
"new",
"MultipleCrossOver",
"(",
"crossoverProbability",
",",
"cutPointsQty",
")",
";",
"break",
";",
"case",
"UNIFORM",
":",
"double",
"segmentedProb",
"=",
"1",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"{",
"segmentedProb",
"=",
"Double",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"}",
"crossover",
"=",
"new",
"ParameterizedUniformCrossOver",
"(",
"crossoverProbability",
",",
"segmentedProb",
")",
";",
"break",
";",
"case",
"CLASSIC",
":",
"crossover",
"=",
"new",
"SinglePointCrossOver",
"(",
"crossoverProbability",
")",
";",
"break",
";",
"case",
"GENE",
":",
"crossover",
"=",
"new",
"GeneCrossOver",
"(",
"crossoverProbability",
")",
";",
"break",
";",
"}",
"return",
"crossover",
";",
"}",
"}",
"</s>"
] |
11,711 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"configuration",
".",
"factories",
";",
"import",
"java",
".",
"util",
".",
"Properties",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"mutation",
".",
"ClassicMutation",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"mutation",
".",
"Mutation",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"mutation",
".",
"NotUniformMutation",
";",
"public",
"class",
"MutationFactory",
"{",
"private",
"Properties",
"properties",
";",
"public",
"MutationFactory",
"(",
"Properties",
"properties",
")",
"{",
"this",
".",
"properties",
"=",
"properties",
";",
"}",
"public",
"Mutation",
"loadMutationList",
"(",
")",
"{",
"MutationEnum",
"mutEnum",
"=",
"MutationEnum",
".",
"getMutationEnum",
"(",
"properties",
".",
"getProperty",
"(",
"\"mutation\"",
")",
".",
"toUpperCase",
"(",
")",
")",
";",
"Mutation",
"mutation",
"=",
"null",
";",
"double",
"mutationProbability",
"=",
"0.1",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"{",
"mutationProbability",
"=",
"Double",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"}",
"double",
"alleleProb",
"=",
"0.01",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"{",
"alleleProb",
"=",
"Double",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"}",
"switch",
"(",
"mutEnum",
")",
"{",
"case",
"CLASSIC",
":",
"mutation",
"=",
"new",
"ClassicMutation",
"(",
"mutationProbability",
",",
"alleleProb",
")",
";",
"break",
";",
"case",
"NOT_UNIFORM",
":",
"double",
"decreaseConstant",
"=",
"0.95",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"{",
"decreaseConstant",
"=",
"Double",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"}",
"int",
"generationToDecrease",
"=",
"10",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"{",
"generationToDecrease",
"=",
"Integer",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"}",
"mutation",
"=",
"new",
"NotUniformMutation",
"(",
"mutationProbability",
",",
"generationToDecrease",
",",
"decreaseConstant",
",",
"alleleProb",
")",
";",
"break",
";",
"}",
"return",
"mutation",
";",
"}",
"}",
"</s>"
] |
11,712 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"configuration",
".",
"factories",
";",
"public",
"enum",
"EndingEnum",
"{",
"MAXGENERATION",
"(",
"\"\"",
")",
",",
"STRUCTURAL",
"(",
"\"STRUCTURAL\"",
")",
",",
"CONTENT",
"(",
"\"CONTENT\"",
")",
",",
"OPTIMUM",
"(",
"\"OPTIMUM\"",
")",
";",
"private",
"String",
"name",
";",
"private",
"EndingEnum",
"(",
"String",
"name",
")",
"{",
"this",
".",
"name",
"=",
"name",
";",
"}",
"public",
"String",
"getName",
"(",
")",
"{",
"return",
"name",
";",
"}",
"public",
"void",
"setName",
"(",
"String",
"name",
")",
"{",
"this",
".",
"name",
"=",
"name",
";",
"}",
"public",
"static",
"EndingEnum",
"getEndingEnum",
"(",
"String",
"str",
")",
"{",
"for",
"(",
"EndingEnum",
"rep",
":",
"EndingEnum",
".",
"values",
"(",
")",
")",
"{",
"if",
"(",
"rep",
".",
"getName",
"(",
")",
".",
"equals",
"(",
"str",
")",
")",
"return",
"rep",
";",
"}",
"return",
"null",
";",
"}",
"}",
"</s>"
] |
11,713 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"configuration",
".",
"factories",
";",
"public",
"enum",
"MutationEnum",
"{",
"CLASSIC",
"(",
"\"CLASSIC\"",
")",
",",
"NOT_UNIFORM",
"(",
"\"NOTUNIFORM\"",
")",
";",
"private",
"String",
"name",
";",
"private",
"MutationEnum",
"(",
"String",
"name",
")",
"{",
"this",
".",
"name",
"=",
"name",
";",
"}",
"public",
"String",
"getName",
"(",
")",
"{",
"return",
"name",
";",
"}",
"public",
"void",
"setName",
"(",
"String",
"name",
")",
"{",
"this",
".",
"name",
"=",
"name",
";",
"}",
"public",
"static",
"MutationEnum",
"getMutationEnum",
"(",
"String",
"str",
")",
"{",
"for",
"(",
"MutationEnum",
"rep",
":",
"MutationEnum",
".",
"values",
"(",
")",
")",
"{",
"if",
"(",
"rep",
".",
"getName",
"(",
")",
".",
"equals",
"(",
"str",
")",
")",
"return",
"rep",
";",
"}",
"return",
"null",
";",
"}",
"}",
"</s>"
] |
11,714 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"configuration",
".",
"factories",
";",
"import",
"java",
".",
"util",
".",
"ArrayList",
";",
"import",
"java",
".",
"util",
".",
"List",
";",
"import",
"java",
".",
"util",
".",
"Properties",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"ending",
".",
"ContentEnding",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"ending",
".",
"EndingMethod",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"ending",
".",
"MaxGenerationEnding",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"ending",
".",
"MixEnding",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"ending",
".",
"OptimumOrFitnessEnding",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"ending",
".",
"StructuralEnding",
";",
"public",
"class",
"EndingFactory",
"{",
"private",
"Properties",
"properties",
";",
"public",
"EndingFactory",
"(",
"Properties",
"properties",
")",
"{",
"this",
".",
"properties",
"=",
"properties",
";",
"}",
"public",
"EndingMethod",
"loadEnding",
"(",
")",
"{",
"List",
"<",
"EndingMethod",
">",
"selected",
"=",
"new",
"ArrayList",
"<",
"EndingMethod",
">",
"(",
")",
";",
"String",
"[",
"]",
"endings",
"=",
"properties",
".",
"getProperty",
"(",
"\"ending\"",
")",
".",
"split",
"(",
"\"/\"",
")",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"endings",
".",
"length",
";",
"i",
"++",
")",
"{",
"String",
"endingMethod",
"=",
"endings",
"[",
"i",
"]",
".",
"trim",
"(",
")",
".",
"toUpperCase",
"(",
")",
";",
"if",
"(",
"endingMethod",
".",
"equals",
"(",
"EndingEnum",
".",
"MAXGENERATION",
".",
"getName",
"(",
")",
")",
")",
"{",
"int",
"iterationsToEnd",
"=",
"1",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"{",
"iterationsToEnd",
"=",
"Integer",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"}",
"selected",
".",
"add",
"(",
"new",
"MaxGenerationEnding",
"(",
"iterationsToEnd",
")",
")",
";",
"}",
"else",
"if",
"(",
"endingMethod",
".",
"equals",
"(",
"EndingEnum",
".",
"CONTENT",
".",
"getName",
"(",
")",
")",
")",
"{",
"double",
"improvement",
"=",
"1",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"{",
"improvement",
"=",
"Double",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"}",
"int",
"iterationsToImprove",
"=",
"1",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"{",
"iterationsToImprove",
"=",
"Integer",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"}",
"selected",
".",
"add",
"(",
"new",
"ContentEnding",
"(",
"iterationsToImprove",
",",
"improvement",
")",
")",
";",
"}",
"else",
"if",
"(",
"endingMethod",
".",
"equals",
"(",
"EndingEnum",
".",
"OPTIMUM",
".",
"getName",
"(",
")",
")",
")",
"{",
"double",
"optimum",
"=",
"1",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"{",
"optimum",
"=",
"Double",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"}",
"double",
"tolerance",
"=",
"1",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"{",
"tolerance",
"=",
"Double",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"}",
"selected",
".",
"add",
"(",
"new",
"OptimumOrFitnessEnding",
"(",
"optimum",
",",
"tolerance",
")",
")",
";",
"}",
"else",
"if",
"(",
"endingMethod",
".",
"equals",
"(",
"EndingEnum",
".",
"STRUCTURAL",
".",
"getName",
"(",
")",
")",
")",
"{",
"int",
"iterationsToCheck",
"=",
"1",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"{",
"iterationsToCheck",
"=",
"Integer",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"}",
"int",
"percent",
"=",
"1",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"{",
"percent",
"=",
"Integer",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"}",
"int",
"popSize",
"=",
"1",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"{",
"popSize",
"=",
"Integer",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"}",
"selected",
".",
"add",
"(",
"new",
"StructuralEnding",
"(",
"iterationsToCheck",
",",
"percent",
",",
"popSize",
")",
")",
";",
"}",
"}",
"return",
"new",
"MixEnding",
"(",
"selected",
")",
";",
"}",
"}",
"</s>"
] |
11,715 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"configuration",
".",
"factories",
";",
"public",
"enum",
"SelectionEnum",
"{",
"ELITE",
"(",
"\"ELITE\"",
")",
",",
"RULETTE",
"(",
"\"RULETTE\"",
")",
",",
"UNIVERSAL",
"(",
"\"UNIVERSAL\"",
")",
",",
"TOURNAMENT",
"(",
"\"TOURNAMENT\"",
")",
",",
"BOLTZMAN",
"(",
"\"BOLTZMAN\"",
")",
";",
"private",
"String",
"name",
";",
"private",
"SelectionEnum",
"(",
"String",
"name",
")",
"{",
"this",
".",
"name",
"=",
"name",
";",
"}",
"public",
"String",
"getName",
"(",
")",
"{",
"return",
"name",
";",
"}",
"public",
"void",
"setName",
"(",
"String",
"name",
")",
"{",
"this",
".",
"name",
"=",
"name",
";",
"}",
"public",
"static",
"SelectionEnum",
"getSelectionEnum",
"(",
"String",
"str",
")",
"{",
"for",
"(",
"SelectionEnum",
"rep",
":",
"SelectionEnum",
".",
"values",
"(",
")",
")",
"{",
"if",
"(",
"rep",
".",
"getName",
"(",
")",
".",
"equals",
"(",
"str",
")",
")",
"return",
"rep",
";",
"}",
"return",
"null",
";",
"}",
"}",
"</s>"
] |
11,716 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"configuration",
".",
"factories",
";",
"import",
"java",
".",
"util",
".",
"Properties",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"Backpropagation",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"MatlabSingleton",
";",
"import",
"com",
".",
"mathworks",
".",
"toolbox",
".",
"javabuilder",
".",
"MWException",
";",
"public",
"class",
"BackpropagationFactory",
"{",
"private",
"Properties",
"properties",
";",
"public",
"BackpropagationFactory",
"(",
"Properties",
"properties",
")",
"{",
"this",
".",
"properties",
"=",
"properties",
";",
"}",
"public",
"Backpropagation",
"loadBackpropagation",
"(",
")",
"throws",
"MWException",
"{",
"double",
"prob",
"=",
"0",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"{",
"prob",
"=",
"Double",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"}",
"int",
"iterations",
"=",
"30",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"{",
"iterations",
"=",
"Integer",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"}",
"return",
"new",
"Backpropagation",
"(",
"MatlabSingleton",
".",
"getInstance",
"(",
")",
".",
"getAnn",
"(",
")",
",",
"iterations",
",",
"prob",
")",
";",
"}",
"}",
"</s>"
] |
11,717 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"configuration",
".",
"factories",
";",
"import",
"java",
".",
"util",
".",
"ArrayList",
";",
"import",
"java",
".",
"util",
".",
"List",
";",
"import",
"java",
".",
"util",
".",
"Properties",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"selection",
".",
"BoltzmannSelection",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"selection",
".",
"EliteSelection",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"selection",
".",
"RuletteSelection",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"selection",
".",
"Selection",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"selection",
".",
"TournamentSelection",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"selection",
".",
"UniversalSelection",
";",
"public",
"class",
"ReplacementFactory",
"{",
"private",
"Properties",
"properties",
";",
"public",
"ReplacementFactory",
"(",
"Properties",
"properties",
")",
"{",
"this",
".",
"properties",
"=",
"properties",
";",
"}",
"public",
"List",
"<",
"Selection",
">",
"loadReplacementMethods",
"(",
")",
"{",
"List",
"<",
"Selection",
">",
"replaced",
"=",
"new",
"ArrayList",
"<",
"Selection",
">",
"(",
")",
";",
"String",
"[",
"]",
"replacements",
"=",
"properties",
".",
"getProperty",
"(",
"\"replacement\"",
")",
".",
"split",
"(",
"\"/\"",
")",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"replacements",
".",
"length",
";",
"i",
"++",
")",
"{",
"String",
"replacedMethod",
"=",
"replacements",
"[",
"i",
"]",
".",
"trim",
"(",
")",
".",
"toUpperCase",
"(",
")",
";",
"if",
"(",
"replacedMethod",
".",
"equals",
"(",
"SelectionEnum",
".",
"ELITE",
".",
"getName",
"(",
")",
")",
")",
"{",
"int",
"toSelect",
"=",
"1",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"toSelect",
"=",
"Integer",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"replaced",
".",
"add",
"(",
"new",
"EliteSelection",
"(",
"toSelect",
")",
")",
";",
"}",
"else",
"if",
"(",
"replacedMethod",
".",
"equals",
"(",
"SelectionEnum",
".",
"RULETTE",
".",
"getName",
"(",
")",
")",
")",
"{",
"int",
"toSelect",
"=",
"1",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"toSelect",
"=",
"Integer",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"replaced",
".",
"add",
"(",
"new",
"RuletteSelection",
"(",
"toSelect",
")",
")",
";",
"}",
"else",
"if",
"(",
"replacedMethod",
".",
"equals",
"(",
"SelectionEnum",
".",
"TOURNAMENT",
".",
"getName",
"(",
")",
")",
")",
"{",
"int",
"toSelect",
"=",
"1",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"toSelect",
"=",
"Integer",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"int",
"tSize",
"=",
"1",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"tSize",
"=",
"Integer",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"replaced",
".",
"add",
"(",
"new",
"TournamentSelection",
"(",
"toSelect",
",",
"tSize",
")",
")",
";",
"}",
"else",
"if",
"(",
"replacedMethod",
".",
"equals",
"(",
"SelectionEnum",
".",
"UNIVERSAL",
".",
"getName",
"(",
")",
")",
")",
"{",
"int",
"toSelect",
"=",
"1",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"toSelect",
"=",
"Integer",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"replaced",
".",
"add",
"(",
"new",
"UniversalSelection",
"(",
"toSelect",
")",
")",
";",
"}",
"else",
"if",
"(",
"replacedMethod",
".",
"equals",
"(",
"SelectionEnum",
".",
"BOLTZMAN",
".",
"getName",
"(",
")",
")",
")",
"{",
"int",
"toSelect",
"=",
"1",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"toSelect",
"=",
"Integer",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"double",
"maxTemperature",
"=",
"1000",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"maxTemperature",
"=",
"Double",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"double",
"minTemperature",
"=",
"100",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"minTemperature",
"=",
"Double",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"double",
"decrement",
"=",
"5",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"decrement",
"=",
"Double",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"replaced",
".",
"add",
"(",
"new",
"BoltzmannSelection",
"(",
"maxTemperature",
",",
"minTemperature",
",",
"decrement",
",",
"toSelect",
")",
")",
";",
"}",
"}",
"return",
"replaced",
";",
"}",
"}",
"</s>"
] |
11,718 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"configuration",
".",
"factories",
";",
"public",
"enum",
"ReplacementEnum",
"{",
"ELITE",
"(",
"\"ELITE\"",
")",
",",
"RULETTE",
"(",
"\"RULETTE\"",
")",
",",
"UNIVERSAL",
"(",
"\"UNIVERSAL\"",
")",
",",
"TOURNAMENT",
"(",
"\"TOURNAMENT\"",
")",
",",
"BOLTZMAN",
"(",
"\"BOLTZMAN\"",
")",
";",
"private",
"String",
"name",
";",
"private",
"ReplacementEnum",
"(",
"String",
"name",
")",
"{",
"this",
".",
"name",
"=",
"name",
";",
"}",
"public",
"String",
"getName",
"(",
")",
"{",
"return",
"name",
";",
"}",
"public",
"void",
"setName",
"(",
"String",
"name",
")",
"{",
"this",
".",
"name",
"=",
"name",
";",
"}",
"public",
"static",
"ReplacementEnum",
"getReplacementEnum",
"(",
"String",
"str",
")",
"{",
"for",
"(",
"ReplacementEnum",
"rep",
":",
"ReplacementEnum",
".",
"values",
"(",
")",
")",
"{",
"if",
"(",
"rep",
".",
"getName",
"(",
")",
".",
"equals",
"(",
"str",
")",
")",
"return",
"rep",
";",
"}",
"return",
"null",
";",
"}",
"}",
"</s>"
] |
11,719 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"configuration",
".",
"factories",
";",
"public",
"enum",
"CrossOverEnum",
"{",
"CLASSIC",
"(",
"\"CLASSIC\"",
")",
",",
"MULTIPLE_POINT",
"(",
"\"\"",
")",
",",
"UNIFORM",
"(",
"\"UNIFORM\"",
")",
",",
"ANULAR",
"(",
"\"ANULAR\"",
")",
",",
"GENE",
"(",
"\"GENE\"",
")",
";",
"private",
"String",
"name",
";",
"private",
"CrossOverEnum",
"(",
"String",
"name",
")",
"{",
"this",
".",
"name",
"=",
"name",
";",
"}",
"public",
"String",
"getName",
"(",
")",
"{",
"return",
"name",
";",
"}",
"public",
"void",
"setName",
"(",
"String",
"name",
")",
"{",
"this",
".",
"name",
"=",
"name",
";",
"}",
"public",
"static",
"CrossOverEnum",
"getCrossOverEnum",
"(",
"String",
"str",
")",
"{",
"for",
"(",
"CrossOverEnum",
"rep",
":",
"CrossOverEnum",
".",
"values",
"(",
")",
")",
"{",
"if",
"(",
"rep",
".",
"getName",
"(",
")",
".",
"equals",
"(",
"str",
")",
")",
"return",
"rep",
";",
"}",
"return",
"null",
";",
"}",
"}",
"</s>"
] |
11,720 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"configuration",
".",
"factories",
";",
"import",
"java",
".",
"util",
".",
"ArrayList",
";",
"import",
"java",
".",
"util",
".",
"List",
";",
"import",
"java",
".",
"util",
".",
"Properties",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"selection",
".",
"BoltzmannSelection",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"selection",
".",
"EliteSelection",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"selection",
".",
"RuletteSelection",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"selection",
".",
"Selection",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"selection",
".",
"TournamentSelection",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"selection",
".",
"UniversalSelection",
";",
"public",
"class",
"SelectionFactory",
"{",
"private",
"Properties",
"properties",
";",
"public",
"SelectionFactory",
"(",
"Properties",
"properties",
")",
"{",
"this",
".",
"properties",
"=",
"properties",
";",
"}",
"public",
"List",
"<",
"Selection",
">",
"loadSelectionMethods",
"(",
")",
"{",
"List",
"<",
"Selection",
">",
"selected",
"=",
"new",
"ArrayList",
"<",
"Selection",
">",
"(",
")",
";",
"String",
"[",
"]",
"selections",
"=",
"properties",
".",
"getProperty",
"(",
"\"selection\"",
")",
".",
"split",
"(",
"\"/\"",
")",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"selections",
".",
"length",
";",
"i",
"++",
")",
"{",
"String",
"selectedMethod",
"=",
"selections",
"[",
"i",
"]",
".",
"trim",
"(",
")",
".",
"toUpperCase",
"(",
")",
";",
"if",
"(",
"selectedMethod",
".",
"equals",
"(",
"SelectionEnum",
".",
"ELITE",
".",
"getName",
"(",
")",
")",
")",
"{",
"int",
"toSelect",
"=",
"1",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"toSelect",
"=",
"Integer",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"selected",
".",
"add",
"(",
"new",
"EliteSelection",
"(",
"toSelect",
")",
")",
";",
"}",
"else",
"if",
"(",
"selectedMethod",
".",
"equals",
"(",
"SelectionEnum",
".",
"RULETTE",
".",
"getName",
"(",
")",
")",
")",
"{",
"int",
"toSelect",
"=",
"1",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"toSelect",
"=",
"Integer",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"selected",
".",
"add",
"(",
"new",
"RuletteSelection",
"(",
"toSelect",
")",
")",
";",
"}",
"else",
"if",
"(",
"selectedMethod",
".",
"equals",
"(",
"SelectionEnum",
".",
"TOURNAMENT",
".",
"getName",
"(",
")",
")",
")",
"{",
"int",
"toSelect",
"=",
"1",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"toSelect",
"=",
"Integer",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"int",
"tSize",
"=",
"1",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"tSize",
"=",
"Integer",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"selected",
".",
"add",
"(",
"new",
"TournamentSelection",
"(",
"toSelect",
",",
"tSize",
")",
")",
";",
"}",
"else",
"if",
"(",
"selectedMethod",
".",
"equals",
"(",
"SelectionEnum",
".",
"UNIVERSAL",
".",
"getName",
"(",
")",
")",
")",
"{",
"int",
"toSelect",
"=",
"1",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"toSelect",
"=",
"Integer",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"selected",
".",
"add",
"(",
"new",
"UniversalSelection",
"(",
"toSelect",
")",
")",
";",
"}",
"else",
"if",
"(",
"selectedMethod",
".",
"equals",
"(",
"SelectionEnum",
".",
"BOLTZMAN",
".",
"getName",
"(",
")",
")",
")",
"{",
"int",
"toSelect",
"=",
"1",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"toSelect",
"=",
"Integer",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"double",
"maxTemperature",
"=",
"1000",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"maxTemperature",
"=",
"Double",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"double",
"minTemperature",
"=",
"100",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"minTemperature",
"=",
"Double",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"double",
"decrement",
"=",
"5",
";",
"if",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
"!=",
"null",
")",
"decrement",
"=",
"Double",
".",
"valueOf",
"(",
"properties",
".",
"getProperty",
"(",
"\"\"",
")",
")",
";",
"selected",
".",
"add",
"(",
"new",
"BoltzmannSelection",
"(",
"maxTemperature",
",",
"minTemperature",
",",
"decrement",
",",
"toSelect",
")",
")",
";",
"}",
"}",
"return",
"selected",
";",
"}",
"}",
"</s>"
] |
11,721 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"util",
";",
"public",
"class",
"Pair",
"<",
"S",
",",
"T",
">",
"{",
"private",
"S",
"o1",
";",
"private",
"T",
"o2",
";",
"public",
"Pair",
"(",
"S",
"o1",
",",
"T",
"o2",
")",
"{",
"this",
".",
"o1",
"=",
"o1",
";",
"this",
".",
"o2",
"=",
"o2",
";",
"}",
"public",
"S",
"getO1",
"(",
")",
"{",
"return",
"o1",
";",
"}",
"public",
"T",
"getO2",
"(",
")",
"{",
"return",
"o2",
";",
"}",
"public",
"void",
"setO1",
"(",
"S",
"o1",
")",
"{",
"this",
".",
"o1",
"=",
"o1",
";",
"}",
"public",
"void",
"setO2",
"(",
"T",
"o2",
")",
"{",
"this",
".",
"o2",
"=",
"o2",
";",
"}",
"}",
"</s>"
] |
11,722 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"util",
";",
"import",
"java",
".",
"util",
".",
"Random",
";",
"public",
"class",
"RandomGenerator",
"{",
"public",
"static",
"Random",
"random",
"=",
"new",
"Random",
"(",
")",
";",
"public",
"static",
"int",
"getInt",
"(",
"int",
"lowerBound",
",",
"int",
"upperBound",
")",
"{",
"if",
"(",
"lowerBound",
"==",
"upperBound",
")",
"{",
"return",
"lowerBound",
";",
"}",
"return",
"random",
".",
"nextInt",
"(",
"upperBound",
"-",
"lowerBound",
")",
"+",
"lowerBound",
";",
"}",
"public",
"static",
"double",
"getDouble",
"(",
"double",
"lowerBound",
",",
"double",
"upperBound",
")",
"{",
"return",
"random",
".",
"nextDouble",
"(",
")",
"*",
"Math",
".",
"abs",
"(",
"upperBound",
"-",
"lowerBound",
")",
"+",
"Math",
".",
"min",
"(",
"lowerBound",
",",
"upperBound",
")",
";",
"}",
"public",
"static",
"int",
"getInt",
"(",
"int",
"upperBound",
")",
"{",
"return",
"random",
".",
"nextInt",
"(",
"upperBound",
")",
";",
"}",
"public",
"static",
"int",
"getInt",
"(",
")",
"{",
"return",
"random",
".",
"nextInt",
"(",
")",
";",
"}",
"public",
"static",
"double",
"getDouble",
"(",
")",
"{",
"return",
"random",
".",
"nextDouble",
"(",
")",
";",
"}",
"public",
"static",
"boolean",
"getBoolean",
"(",
"double",
"trueProbalility",
")",
"{",
"return",
"random",
".",
"nextDouble",
"(",
")",
"<",
"trueProbalility",
";",
"}",
"}",
"</s>"
] |
11,723 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"util",
";",
"import",
"java",
".",
"util",
".",
"List",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"model",
".",
"Individual",
";",
"public",
"class",
"Printer",
"{",
"public",
"static",
"double",
"mean",
"(",
"double",
"[",
"]",
"data",
")",
"{",
"double",
"mean",
"=",
"0",
";",
"final",
"int",
"n",
"=",
"data",
".",
"length",
";",
"if",
"(",
"n",
"<",
"2",
")",
"{",
"return",
"Double",
".",
"NaN",
";",
"}",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"n",
";",
"i",
"++",
")",
"{",
"mean",
"+=",
"data",
"[",
"i",
"]",
";",
"}",
"mean",
"/=",
"n",
";",
"return",
"mean",
";",
"}",
"public",
"static",
"double",
"StandardDeviationMean",
"(",
"double",
"[",
"]",
"data",
")",
"{",
"double",
"mean",
"=",
"0",
";",
"final",
"int",
"n",
"=",
"data",
".",
"length",
";",
"if",
"(",
"n",
"<",
"2",
")",
"{",
"return",
"Double",
".",
"NaN",
";",
"}",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"n",
";",
"i",
"++",
")",
"{",
"mean",
"+=",
"data",
"[",
"i",
"]",
";",
"}",
"mean",
"/=",
"n",
";",
"double",
"sum",
"=",
"0",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"n",
";",
"i",
"++",
")",
"{",
"final",
"double",
"v",
"=",
"data",
"[",
"i",
"]",
"-",
"mean",
";",
"sum",
"+=",
"v",
"*",
"v",
";",
"}",
"return",
"Math",
".",
"sqrt",
"(",
"sum",
"/",
"(",
"n",
"-",
"1",
")",
")",
";",
"}",
"public",
"static",
"double",
"standardDeviationCalculate",
"(",
"double",
"[",
"]",
"data",
")",
"{",
"final",
"int",
"n",
"=",
"data",
".",
"length",
";",
"if",
"(",
"n",
"<",
"2",
")",
"{",
"return",
"Double",
".",
"NaN",
";",
"}",
"double",
"avg",
"=",
"data",
"[",
"0",
"]",
";",
"double",
"sum",
"=",
"0",
";",
"for",
"(",
"int",
"i",
"=",
"1",
";",
"i",
"<",
"data",
".",
"length",
";",
"i",
"++",
")",
"{",
"double",
"newavg",
"=",
"avg",
"+",
"(",
"data",
"[",
"i",
"]",
"-",
"avg",
")",
"/",
"(",
"i",
"+",
"1",
")",
";",
"sum",
"+=",
"(",
"data",
"[",
"i",
"]",
"-",
"avg",
")",
"*",
"(",
"data",
"[",
"i",
"]",
"-",
"newavg",
")",
";",
"avg",
"=",
"newavg",
";",
"}",
"return",
"Math",
".",
"sqrt",
"(",
"sum",
"/",
"(",
"n",
"-",
"1",
")",
")",
";",
"}",
"public",
"double",
"mean",
"(",
"List",
"<",
"Individual",
">",
"population",
")",
"{",
"double",
"[",
"]",
"list",
"=",
"new",
"double",
"[",
"population",
".",
"size",
"(",
")",
"]",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"list",
".",
"length",
";",
"i",
"++",
")",
"{",
"list",
"[",
"i",
"]",
"=",
"population",
".",
"get",
"(",
"i",
")",
".",
"getApptitude",
"(",
")",
";",
"}",
"return",
"mean",
"(",
"list",
")",
";",
"}",
"public",
"double",
"sdForIndividual",
"(",
"List",
"<",
"Individual",
">",
"population",
")",
"{",
"double",
"[",
"]",
"list",
"=",
"new",
"double",
"[",
"population",
".",
"size",
"(",
")",
"]",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"list",
".",
"length",
";",
"i",
"++",
")",
"{",
"list",
"[",
"i",
"]",
"=",
"population",
".",
"get",
"(",
"i",
")",
".",
"getApptitude",
"(",
")",
";",
"}",
"return",
"standardDeviationCalculate",
"(",
"list",
")",
";",
"}",
"}",
"</s>"
] |
11,724 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"util",
";",
"import",
"com",
".",
"mathworks",
".",
"toolbox",
".",
"javabuilder",
".",
"MWArray",
";",
"public",
"class",
"InputValues",
"{",
"private",
"MWArray",
"inputs",
";",
"private",
"MWArray",
"expectedOutputs",
";",
"private",
"MWArray",
"inputsTest",
";",
"private",
"MWArray",
"expectedOutputsTest",
";",
"private",
"static",
"InputValues",
"instance",
"=",
"new",
"InputValues",
"(",
")",
";",
"public",
"static",
"InputValues",
"getInstance",
"(",
")",
"{",
"return",
"instance",
";",
"}",
"private",
"InputValues",
"(",
")",
"{",
"}",
"public",
"MWArray",
"getInputs",
"(",
")",
"{",
"return",
"inputs",
";",
"}",
"public",
"void",
"setInputs",
"(",
"MWArray",
"inputs",
")",
"{",
"this",
".",
"inputs",
"=",
"inputs",
";",
"}",
"public",
"MWArray",
"getExpectedOutputs",
"(",
")",
"{",
"return",
"expectedOutputs",
";",
"}",
"public",
"void",
"setExpectedOutputs",
"(",
"MWArray",
"expectedOutputs",
")",
"{",
"this",
".",
"expectedOutputs",
"=",
"expectedOutputs",
";",
"}",
"public",
"MWArray",
"getInputsTest",
"(",
")",
"{",
"return",
"inputsTest",
";",
"}",
"public",
"void",
"setInputsTest",
"(",
"MWArray",
"inputsTest",
")",
"{",
"this",
".",
"inputsTest",
"=",
"inputsTest",
";",
"}",
"public",
"MWArray",
"getExpectedOutputsTest",
"(",
")",
"{",
"return",
"expectedOutputsTest",
";",
"}",
"public",
"void",
"setExpectedOutputsTest",
"(",
"MWArray",
"expectedOutputsTest",
")",
"{",
"this",
".",
"expectedOutputsTest",
"=",
"expectedOutputsTest",
";",
"}",
"}",
"</s>"
] |
11,725 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"crossover",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"model",
".",
"Individual",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"util",
".",
"RandomGenerator",
";",
"public",
"class",
"AnularCrossover",
"implements",
"Crossover",
"{",
"private",
"double",
"prob",
";",
"public",
"AnularCrossover",
"(",
"double",
"crossoverProbability",
")",
"{",
"this",
".",
"prob",
"=",
"crossoverProbability",
";",
"}",
"@",
"Override",
"public",
"Individual",
"[",
"]",
"cross",
"(",
"Individual",
"[",
"]",
"entities",
")",
"{",
"double",
"[",
"]",
"dad",
"=",
"entities",
"[",
"0",
"]",
".",
"getLupusArray",
"(",
")",
";",
"double",
"[",
"]",
"mom",
"=",
"entities",
"[",
"1",
"]",
".",
"getLupusArray",
"(",
")",
";",
"double",
"[",
"]",
"son1",
"=",
"new",
"double",
"[",
"dad",
".",
"length",
"]",
";",
"double",
"[",
"]",
"son2",
"=",
"new",
"double",
"[",
"dad",
".",
"length",
"]",
";",
"int",
"r",
"=",
"RandomGenerator",
".",
"getInt",
"(",
"0",
",",
"dad",
".",
"length",
")",
";",
"int",
"l",
"=",
"RandomGenerator",
".",
"getInt",
"(",
"1",
",",
"dad",
".",
"length",
"/",
"2",
")",
";",
"int",
"i",
";",
"for",
"(",
"i",
"=",
"0",
";",
"i",
"<",
"mom",
".",
"length",
"&&",
"i",
"<",
"r",
";",
"i",
"++",
")",
"{",
"son1",
"[",
"i",
"]",
"=",
"dad",
"[",
"i",
"]",
";",
"son2",
"[",
"i",
"]",
"=",
"mom",
"[",
"i",
"]",
";",
"}",
"for",
"(",
"i",
"=",
"r",
";",
"i",
"<",
"mom",
".",
"length",
"&&",
"i",
"<",
"(",
"r",
"+",
"l",
")",
";",
"i",
"++",
")",
"{",
"son2",
"[",
"i",
"]",
"=",
"mom",
"[",
"i",
"]",
";",
"son1",
"[",
"i",
"]",
"=",
"dad",
"[",
"i",
"]",
";",
"}",
"if",
"(",
"dad",
".",
"length",
"-",
"(",
"r",
"+",
"l",
")",
"<",
"0",
")",
"{",
"for",
"(",
"i",
"=",
"0",
";",
"i",
"<",
"(",
"(",
"r",
"+",
"l",
")",
"-",
"dad",
".",
"length",
")",
";",
"i",
"++",
")",
"{",
"son2",
"[",
"i",
"]",
"=",
"mom",
"[",
"i",
"]",
";",
"son1",
"[",
"i",
"]",
"=",
"dad",
"[",
"i",
"]",
";",
"}",
"}",
"Individual",
"newSon1",
"=",
"Individual",
".",
"creator",
"(",
"entities",
"[",
"0",
"]",
".",
"getData",
"(",
")",
",",
"son1",
")",
";",
"Individual",
"newSon2",
"=",
"Individual",
".",
"creator",
"(",
"entities",
"[",
"0",
"]",
".",
"getData",
"(",
")",
",",
"son2",
")",
";",
"return",
"new",
"Individual",
"[",
"]",
"{",
"newSon1",
",",
"newSon2",
"}",
";",
"}",
"@",
"Override",
"public",
"boolean",
"shouldApply",
"(",
")",
"{",
"return",
"RandomGenerator",
".",
"getDouble",
"(",
")",
"<",
"this",
".",
"prob",
";",
"}",
"}",
"</s>"
] |
11,726 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"crossover",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"model",
".",
"Individual",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"util",
".",
"RandomGenerator",
";",
"public",
"class",
"ParameterizedUniformCrossOver",
"implements",
"Crossover",
"{",
"private",
"double",
"prob",
";",
"private",
"double",
"crossProb",
";",
"public",
"ParameterizedUniformCrossOver",
"(",
"double",
"prob",
",",
"double",
"crossProb",
")",
"{",
"this",
".",
"prob",
"=",
"prob",
";",
"this",
".",
"crossProb",
"=",
"crossProb",
";",
"}",
"@",
"Override",
"public",
"Individual",
"[",
"]",
"cross",
"(",
"Individual",
"[",
"]",
"entities",
")",
"{",
"double",
"[",
"]",
"dad",
"=",
"entities",
"[",
"0",
"]",
".",
"getLupusArray",
"(",
")",
";",
"double",
"[",
"]",
"mom",
"=",
"entities",
"[",
"1",
"]",
".",
"getLupusArray",
"(",
")",
";",
"double",
"[",
"]",
"son1",
"=",
"new",
"double",
"[",
"dad",
".",
"length",
"]",
";",
"double",
"[",
"]",
"son2",
"=",
"new",
"double",
"[",
"dad",
".",
"length",
"]",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"dad",
".",
"length",
";",
"i",
"++",
")",
"{",
"son1",
"[",
"i",
"]",
"=",
"dad",
"[",
"i",
"]",
";",
"son2",
"[",
"i",
"]",
"=",
"mom",
"[",
"i",
"]",
";",
"}",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"dad",
".",
"length",
";",
"i",
"++",
")",
"{",
"if",
"(",
"RandomGenerator",
".",
"getDouble",
"(",
")",
"<",
"this",
".",
"prob",
")",
"{",
"double",
"aux",
"=",
"son1",
"[",
"i",
"]",
";",
"son1",
"[",
"i",
"]",
"=",
"son2",
"[",
"i",
"]",
";",
"son2",
"[",
"i",
"]",
"=",
"aux",
";",
"}",
"}",
"Individual",
"indSon1",
"=",
"Individual",
".",
"creator",
"(",
"entities",
"[",
"0",
"]",
".",
"getData",
"(",
")",
",",
"son1",
")",
";",
"Individual",
"indSon2",
"=",
"Individual",
".",
"creator",
"(",
"entities",
"[",
"0",
"]",
".",
"getData",
"(",
")",
",",
"son2",
")",
";",
"return",
"new",
"Individual",
"[",
"]",
"{",
"indSon1",
",",
"indSon2",
"}",
";",
"}",
"@",
"Override",
"public",
"boolean",
"shouldApply",
"(",
")",
"{",
"return",
"RandomGenerator",
".",
"getDouble",
"(",
")",
"<",
"this",
".",
"crossProb",
";",
"}",
"}",
"</s>"
] |
11,727 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"crossover",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"model",
".",
"Individual",
";",
"public",
"interface",
"Crossover",
"{",
"Individual",
"[",
"]",
"cross",
"(",
"Individual",
"[",
"]",
"entities",
")",
";",
"boolean",
"shouldApply",
"(",
")",
";",
"}",
"</s>"
] |
11,728 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"crossover",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"model",
".",
"Individual",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"util",
".",
"RandomGenerator",
";",
"public",
"class",
"SinglePointCrossOver",
"implements",
"Crossover",
"{",
"private",
"double",
"prob",
";",
"public",
"SinglePointCrossOver",
"(",
"double",
"prob",
")",
"{",
"this",
".",
"prob",
"=",
"prob",
";",
"}",
"public",
"Individual",
"[",
"]",
"cross",
"(",
"Individual",
"[",
"]",
"entities",
")",
"{",
"double",
"[",
"]",
"dad",
"=",
"entities",
"[",
"0",
"]",
".",
"getLupusArray",
"(",
")",
";",
"double",
"[",
"]",
"mom",
"=",
"entities",
"[",
"1",
"]",
".",
"getLupusArray",
"(",
")",
";",
"double",
"[",
"]",
"son1",
"=",
"new",
"double",
"[",
"dad",
".",
"length",
"]",
";",
"double",
"[",
"]",
"son2",
"=",
"new",
"double",
"[",
"dad",
".",
"length",
"]",
";",
"int",
"cutPoint",
"=",
"RandomGenerator",
".",
"getInt",
"(",
"1",
",",
"dad",
".",
"length",
")",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"cutPoint",
";",
"i",
"++",
")",
"{",
"son1",
"[",
"i",
"]",
"=",
"dad",
"[",
"i",
"]",
";",
"son2",
"[",
"i",
"]",
"=",
"mom",
"[",
"i",
"]",
";",
"}",
"for",
"(",
"int",
"i",
"=",
"cutPoint",
";",
"i",
"<",
"mom",
".",
"length",
";",
"i",
"++",
")",
"{",
"son2",
"[",
"i",
"]",
"=",
"dad",
"[",
"i",
"]",
";",
"son1",
"[",
"i",
"]",
"=",
"mom",
"[",
"i",
"]",
";",
"}",
"Individual",
"indSon1",
"=",
"Individual",
".",
"creator",
"(",
"entities",
"[",
"0",
"]",
".",
"getData",
"(",
")",
",",
"son1",
")",
";",
"Individual",
"indSon2",
"=",
"Individual",
".",
"creator",
"(",
"entities",
"[",
"0",
"]",
".",
"getData",
"(",
")",
",",
"son2",
")",
";",
"return",
"new",
"Individual",
"[",
"]",
"{",
"indSon1",
",",
"indSon2",
"}",
";",
"}",
"@",
"Override",
"public",
"boolean",
"shouldApply",
"(",
")",
"{",
"return",
"RandomGenerator",
".",
"getDouble",
"(",
")",
"<",
"this",
".",
"prob",
";",
"}",
"}",
"</s>"
] |
11,729 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"crossover",
";",
"import",
"java",
".",
"util",
".",
"ArrayList",
";",
"import",
"java",
".",
"util",
".",
"Collections",
";",
"import",
"java",
".",
"util",
".",
"List",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"model",
".",
"Individual",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"util",
".",
"RandomGenerator",
";",
"public",
"class",
"MultipleCrossOver",
"implements",
"Crossover",
"{",
"private",
"int",
"cutPointsCount",
";",
"private",
"double",
"prob",
";",
"public",
"MultipleCrossOver",
"(",
"double",
"prob",
",",
"int",
"cutPointsQty",
")",
"{",
"this",
".",
"cutPointsCount",
"=",
"cutPointsQty",
";",
"this",
".",
"prob",
"=",
"prob",
";",
"}",
"@",
"Override",
"public",
"Individual",
"[",
"]",
"cross",
"(",
"Individual",
"[",
"]",
"entities",
")",
"{",
"double",
"[",
"]",
"dad",
"=",
"entities",
"[",
"0",
"]",
".",
"getLupusArray",
"(",
")",
";",
"double",
"[",
"]",
"mom",
"=",
"entities",
"[",
"1",
"]",
".",
"getLupusArray",
"(",
")",
";",
"double",
"[",
"]",
"son1",
"=",
"new",
"double",
"[",
"dad",
".",
"length",
"]",
";",
"double",
"[",
"]",
"son2",
"=",
"new",
"double",
"[",
"dad",
".",
"length",
"]",
";",
"int",
"cutPoint",
"=",
"1",
";",
"List",
"<",
"Integer",
">",
"cutPoints",
"=",
"new",
"ArrayList",
"<",
"Integer",
">",
"(",
"cutPointsCount",
")",
";",
"cutPoints",
".",
"add",
"(",
"0",
")",
";",
"do",
"{",
"int",
"auxCut",
"=",
"RandomGenerator",
".",
"getInt",
"(",
"cutPoint",
",",
"dad",
".",
"length",
")",
";",
"if",
"(",
"!",
"cutPoints",
".",
"contains",
"(",
"auxCut",
")",
")",
"{",
"cutPoints",
".",
"add",
"(",
"auxCut",
")",
";",
"}",
"}",
"while",
"(",
"cutPoints",
".",
"size",
"(",
")",
"<=",
"cutPointsCount",
")",
";",
"Collections",
".",
"sort",
"(",
"cutPoints",
")",
";",
"int",
"k",
"=",
"0",
";",
"for",
"(",
";",
"k",
"<",
"cutPoints",
".",
"size",
"(",
")",
"-",
"1",
";",
"k",
"++",
")",
"{",
"if",
"(",
"k",
"%",
"2",
"==",
"0",
")",
"{",
"for",
"(",
"int",
"i",
"=",
"cutPoints",
".",
"get",
"(",
"k",
")",
";",
"i",
"<",
"cutPoints",
".",
"get",
"(",
"k",
"+",
"1",
")",
";",
"i",
"++",
")",
"{",
"son1",
"[",
"i",
"]",
"=",
"dad",
"[",
"i",
"]",
";",
"son2",
"[",
"i",
"]",
"=",
"mom",
"[",
"i",
"]",
";",
"}",
"}",
"else",
"{",
"for",
"(",
"int",
"i",
"=",
"cutPoints",
".",
"get",
"(",
"k",
")",
";",
"i",
"<",
"cutPoints",
".",
"get",
"(",
"k",
"+",
"1",
")",
";",
"i",
"++",
")",
"{",
"son1",
"[",
"i",
"]",
"=",
"mom",
"[",
"i",
"]",
";",
"son2",
"[",
"i",
"]",
"=",
"dad",
"[",
"i",
"]",
";",
"}",
"}",
"}",
"if",
"(",
"k",
"%",
"2",
"==",
"0",
")",
"{",
"for",
"(",
"int",
"i",
"=",
"cutPoints",
".",
"get",
"(",
"k",
")",
";",
"i",
"<",
"dad",
".",
"length",
";",
"i",
"++",
")",
"{",
"son1",
"[",
"i",
"]",
"=",
"dad",
"[",
"i",
"]",
";",
"son2",
"[",
"i",
"]",
"=",
"mom",
"[",
"i",
"]",
";",
"}",
"}",
"else",
"{",
"for",
"(",
"int",
"i",
"=",
"cutPoints",
".",
"get",
"(",
"k",
")",
";",
"i",
"<",
"dad",
".",
"length",
";",
"i",
"++",
")",
"{",
"son1",
"[",
"i",
"]",
"=",
"mom",
"[",
"i",
"]",
";",
"son2",
"[",
"i",
"]",
"=",
"dad",
"[",
"i",
"]",
";",
"}",
"}",
"Individual",
"indSon1",
"=",
"Individual",
".",
"creator",
"(",
"entities",
"[",
"0",
"]",
".",
"getData",
"(",
")",
",",
"son1",
")",
";",
"Individual",
"indSon2",
"=",
"Individual",
".",
"creator",
"(",
"entities",
"[",
"0",
"]",
".",
"getData",
"(",
")",
",",
"son2",
")",
";",
"return",
"new",
"Individual",
"[",
"]",
"{",
"indSon1",
",",
"indSon2",
"}",
";",
"}",
"@",
"Override",
"public",
"boolean",
"shouldApply",
"(",
")",
"{",
"return",
"RandomGenerator",
".",
"getDouble",
"(",
")",
"<",
"this",
".",
"prob",
";",
"}",
"}",
"</s>"
] |
11,730 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"crossover",
";",
"import",
"java",
".",
"util",
".",
"List",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"model",
".",
"Individual",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"util",
".",
"RandomGenerator",
";",
"public",
"class",
"GeneCrossOver",
"implements",
"Crossover",
"{",
"private",
"double",
"prob",
";",
"public",
"GeneCrossOver",
"(",
"double",
"prob",
")",
"{",
"this",
".",
"prob",
"=",
"prob",
";",
"}",
"@",
"Override",
"public",
"Individual",
"[",
"]",
"cross",
"(",
"Individual",
"[",
"]",
"entities",
")",
"{",
"int",
"size",
"=",
"entities",
"[",
"0",
"]",
".",
"getLupusArray",
"(",
")",
".",
"length",
";",
"List",
"<",
"double",
"[",
"]",
"[",
"]",
">",
"dad",
"=",
"entities",
"[",
"0",
"]",
".",
"getLupusMatrix",
"(",
")",
";",
"List",
"<",
"double",
"[",
"]",
"[",
"]",
">",
"mom",
"=",
"entities",
"[",
"1",
"]",
".",
"getLupusMatrix",
"(",
")",
";",
"double",
"[",
"]",
"son1",
"=",
"new",
"double",
"[",
"size",
"]",
";",
"double",
"[",
"]",
"son2",
"=",
"new",
"double",
"[",
"size",
"]",
";",
"int",
"cutPoint",
"=",
"RandomGenerator",
".",
"getInt",
"(",
"1",
",",
"dad",
".",
"size",
"(",
")",
")",
";",
"int",
"index",
"=",
"0",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"cutPoint",
";",
"i",
"++",
")",
"{",
"double",
"[",
"]",
"[",
"]",
"dadMatrix",
"=",
"dad",
".",
"get",
"(",
"i",
")",
";",
"double",
"[",
"]",
"[",
"]",
"momMatrix",
"=",
"mom",
".",
"get",
"(",
"i",
")",
";",
"for",
"(",
"int",
"j",
"=",
"0",
";",
"j",
"<",
"dadMatrix",
".",
"length",
";",
"j",
"++",
")",
"{",
"for",
"(",
"int",
"k",
"=",
"0",
";",
"k",
"<",
"dadMatrix",
"[",
"j",
"]",
".",
"length",
";",
"k",
"++",
")",
"{",
"son1",
"[",
"index",
"]",
"=",
"dadMatrix",
"[",
"j",
"]",
"[",
"k",
"]",
";",
"son2",
"[",
"index",
"++",
"]",
"=",
"momMatrix",
"[",
"j",
"]",
"[",
"k",
"]",
";",
"}",
"}",
"}",
"for",
"(",
"int",
"i",
"=",
"cutPoint",
";",
"i",
"<",
"dad",
".",
"size",
"(",
")",
";",
"i",
"++",
")",
"{",
"double",
"[",
"]",
"[",
"]",
"dadMatrix",
"=",
"dad",
".",
"get",
"(",
"i",
")",
";",
"double",
"[",
"]",
"[",
"]",
"momMatrix",
"=",
"mom",
".",
"get",
"(",
"i",
")",
";",
"for",
"(",
"int",
"j",
"=",
"0",
";",
"j",
"<",
"dadMatrix",
".",
"length",
";",
"j",
"++",
")",
"{",
"for",
"(",
"int",
"k",
"=",
"0",
";",
"k",
"<",
"dadMatrix",
"[",
"j",
"]",
".",
"length",
";",
"k",
"++",
")",
"{",
"son1",
"[",
"index",
"]",
"=",
"dadMatrix",
"[",
"j",
"]",
"[",
"k",
"]",
";",
"son2",
"[",
"index",
"++",
"]",
"=",
"momMatrix",
"[",
"j",
"]",
"[",
"k",
"]",
";",
"}",
"}",
"}",
"Individual",
"indSon1",
"=",
"Individual",
".",
"creator",
"(",
"entities",
"[",
"0",
"]",
".",
"getData",
"(",
")",
",",
"son1",
")",
";",
"Individual",
"indSon2",
"=",
"Individual",
".",
"creator",
"(",
"entities",
"[",
"0",
"]",
".",
"getData",
"(",
")",
",",
"son2",
")",
";",
"return",
"new",
"Individual",
"[",
"]",
"{",
"indSon1",
",",
"indSon2",
"}",
";",
"}",
"@",
"Override",
"public",
"boolean",
"shouldApply",
"(",
")",
"{",
"return",
"RandomGenerator",
".",
"getDouble",
"(",
")",
"<",
"this",
".",
"prob",
";",
"}",
"}",
"</s>"
] |
11,731 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
";",
"import",
"com",
".",
"g4",
".",
"matlab",
".",
"ann",
".",
"ANN",
";",
"import",
"com",
".",
"mathworks",
".",
"toolbox",
".",
"javabuilder",
".",
"MWException",
";",
"public",
"class",
"MatlabSingleton",
"{",
"private",
"static",
"MatlabSingleton",
"instance",
"=",
"null",
";",
"private",
"ANN",
"ann",
";",
"public",
"static",
"MatlabSingleton",
"getInstance",
"(",
")",
"throws",
"MWException",
"{",
"if",
"(",
"instance",
"==",
"null",
")",
"{",
"instance",
"=",
"new",
"MatlabSingleton",
"(",
")",
";",
"}",
"return",
"instance",
";",
"}",
"public",
"MatlabSingleton",
"(",
")",
"throws",
"MWException",
"{",
"ann",
"=",
"new",
"ANN",
"(",
")",
";",
"}",
"public",
"ANN",
"getAnn",
"(",
")",
"{",
"return",
"ann",
";",
"}",
"}",
"</s>"
] |
11,732 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"selection",
";",
"import",
"java",
".",
"util",
".",
"List",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"model",
".",
"Individual",
";",
"public",
"class",
"BoltzmannSelection",
"extends",
"RuletteSelection",
"{",
"private",
"double",
"temperature",
";",
"private",
"double",
"varInTime",
";",
"private",
"final",
"double",
"maxTemperature",
";",
"private",
"final",
"double",
"minTemperature",
";",
"private",
"final",
"double",
"decrement",
";",
"public",
"BoltzmannSelection",
"(",
"final",
"double",
"maxTemperature",
",",
"final",
"double",
"minTemperature",
",",
"final",
"double",
"decrement",
",",
"final",
"int",
"toSelect",
")",
"{",
"super",
"(",
"toSelect",
")",
";",
"this",
".",
"maxTemperature",
"=",
"maxTemperature",
";",
"this",
".",
"minTemperature",
"=",
"minTemperature",
";",
"this",
".",
"decrement",
"=",
"decrement",
";",
"}",
"@",
"Override",
"public",
"double",
"filterFitness",
"(",
"double",
"fitness",
")",
"{",
"return",
"Math",
".",
"exp",
"(",
"fitness",
"/",
"temperature",
")",
"/",
"this",
".",
"varInTime",
";",
"}",
"@",
"Override",
"public",
"List",
"<",
"Individual",
">",
"select",
"(",
"List",
"<",
"Individual",
">",
"population",
",",
"int",
"generation",
")",
"{",
"calculateTemperature",
"(",
"generation",
")",
";",
"this",
".",
"varInTime",
"=",
"0",
";",
"for",
"(",
"Individual",
"ind",
":",
"population",
")",
"{",
"this",
".",
"varInTime",
"+=",
"Math",
".",
"exp",
"(",
"ind",
".",
"getApptitude",
"(",
")",
"/",
"this",
".",
"temperature",
")",
";",
"}",
"this",
".",
"varInTime",
"=",
"this",
".",
"varInTime",
"/",
"population",
".",
"size",
"(",
")",
";",
"return",
"super",
".",
"select",
"(",
"population",
",",
"generation",
")",
";",
"}",
"private",
"void",
"calculateTemperature",
"(",
"int",
"generation",
")",
"{",
"this",
".",
"temperature",
"=",
"maxTemperature",
"-",
"generation",
"*",
"this",
".",
"decrement",
";",
"if",
"(",
"this",
".",
"temperature",
"<",
"this",
".",
"minTemperature",
")",
"{",
"this",
".",
"temperature",
"=",
"this",
".",
"minTemperature",
";",
"}",
"}",
"}",
"</s>"
] |
11,733 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"selection",
";",
"import",
"java",
".",
"util",
".",
"ArrayList",
";",
"import",
"java",
".",
"util",
".",
"Collections",
";",
"import",
"java",
".",
"util",
".",
"Comparator",
";",
"import",
"java",
".",
"util",
".",
"List",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"model",
".",
"Individual",
";",
"public",
"class",
"EliteSelection",
"implements",
"Selection",
"{",
"private",
"int",
"toSelect",
";",
"public",
"EliteSelection",
"(",
"final",
"int",
"toSelect",
")",
"{",
"this",
".",
"toSelect",
"=",
"toSelect",
";",
"}",
"@",
"Override",
"public",
"List",
"<",
"Individual",
">",
"select",
"(",
"List",
"<",
"Individual",
">",
"population",
",",
"int",
"generation",
")",
"{",
"return",
"select",
"(",
"population",
",",
"generation",
",",
"this",
".",
"toSelect",
")",
";",
"}",
"@",
"Override",
"public",
"List",
"<",
"Individual",
">",
"select",
"(",
"List",
"<",
"Individual",
">",
"population",
",",
"int",
"generation",
",",
"int",
"ggToSelect",
")",
"{",
"List",
"<",
"Individual",
">",
"ret",
"=",
"new",
"ArrayList",
"<",
"Individual",
">",
"(",
"population",
")",
";",
"Collections",
".",
"sort",
"(",
"ret",
",",
"new",
"Comparator",
"<",
"Individual",
">",
"(",
")",
"{",
"@",
"Override",
"public",
"int",
"compare",
"(",
"Individual",
"i1",
",",
"Individual",
"i2",
")",
"{",
"final",
"double",
"i1Aptitude",
"=",
"i1",
".",
"getApptitude",
"(",
")",
";",
"final",
"double",
"i2Aptitude",
"=",
"i2",
".",
"getApptitude",
"(",
")",
";",
"if",
"(",
"i1Aptitude",
"<",
"i2Aptitude",
")",
"{",
"return",
"1",
";",
"}",
"else",
"if",
"(",
"i1Aptitude",
">",
"i2Aptitude",
")",
"{",
"return",
"-",
"1",
";",
"}",
"return",
"0",
";",
"}",
"}",
")",
";",
"return",
"ret",
".",
"subList",
"(",
"0",
",",
"ggToSelect",
")",
";",
"}",
"}",
"</s>"
] |
11,734 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"selection",
";",
"import",
"java",
".",
"util",
".",
"ArrayList",
";",
"import",
"java",
".",
"util",
".",
"List",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"model",
".",
"Individual",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"util",
".",
"RandomGenerator",
";",
"public",
"class",
"RuletteSelection",
"implements",
"Selection",
"{",
"protected",
"int",
"toSelect",
";",
"public",
"RuletteSelection",
"(",
"final",
"int",
"toSelect",
")",
"{",
"this",
".",
"toSelect",
"=",
"toSelect",
";",
"}",
"protected",
"double",
"filterFitness",
"(",
"double",
"fitness",
")",
"{",
"return",
"fitness",
";",
"}",
"@",
"Override",
"public",
"List",
"<",
"Individual",
">",
"select",
"(",
"List",
"<",
"Individual",
">",
"population",
",",
"int",
"generation",
")",
"{",
"return",
"select",
"(",
"population",
",",
"generation",
",",
"this",
".",
"toSelect",
")",
";",
"}",
"@",
"Override",
"public",
"List",
"<",
"Individual",
">",
"select",
"(",
"List",
"<",
"Individual",
">",
"population",
",",
"int",
"generation",
",",
"int",
"ggToSelect",
")",
"{",
"List",
"<",
"Individual",
">",
"newGeneration",
"=",
"new",
"ArrayList",
"<",
"Individual",
">",
"(",
"ggToSelect",
")",
";",
"double",
"fitnessSum",
"=",
"0",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"population",
".",
"size",
"(",
")",
";",
"i",
"++",
")",
"{",
"fitnessSum",
"+=",
"filterFitness",
"(",
"population",
".",
"get",
"(",
"i",
")",
".",
"getApptitude",
"(",
")",
")",
";",
"}",
"while",
"(",
"newGeneration",
".",
"size",
"(",
")",
"<",
"ggToSelect",
")",
"{",
"double",
"r",
"=",
"fitnessSum",
"*",
"RandomGenerator",
".",
"getDouble",
"(",
")",
";",
"int",
"j",
"=",
"0",
";",
"double",
"f",
"=",
"0",
";",
"Individual",
"individual",
"=",
"null",
";",
"do",
"{",
"if",
"(",
"j",
">=",
"population",
".",
"size",
"(",
")",
")",
"{",
"break",
";",
"}",
"individual",
"=",
"population",
".",
"get",
"(",
"j",
"++",
")",
";",
"f",
"+=",
"filterFitness",
"(",
"individual",
".",
"getApptitude",
"(",
")",
")",
";",
"}",
"while",
"(",
"f",
"<",
"r",
")",
";",
"newGeneration",
".",
"add",
"(",
"individual",
")",
";",
"}",
"return",
"newGeneration",
";",
"}",
"}",
"</s>"
] |
11,735 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"selection",
";",
"import",
"java",
".",
"util",
".",
"List",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"model",
".",
"Individual",
";",
"public",
"interface",
"Selection",
"{",
"List",
"<",
"Individual",
">",
"select",
"(",
"List",
"<",
"Individual",
">",
"population",
",",
"final",
"int",
"generation",
")",
";",
"List",
"<",
"Individual",
">",
"select",
"(",
"List",
"<",
"Individual",
">",
"population",
",",
"final",
"int",
"generation",
",",
"int",
"ggToSelect",
")",
";",
"}",
"</s>"
] |
11,736 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"selection",
";",
"import",
"java",
".",
"util",
".",
"ArrayList",
";",
"import",
"java",
".",
"util",
".",
"List",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"model",
".",
"Individual",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"util",
".",
"RandomGenerator",
";",
"public",
"class",
"UniversalSelection",
"implements",
"Selection",
"{",
"private",
"int",
"toSelect",
";",
"public",
"UniversalSelection",
"(",
"final",
"int",
"toSelect",
")",
"{",
"this",
".",
"toSelect",
"=",
"toSelect",
";",
"}",
"@",
"Override",
"public",
"List",
"<",
"Individual",
">",
"select",
"(",
"List",
"<",
"Individual",
">",
"population",
",",
"int",
"generation",
")",
"{",
"return",
"select",
"(",
"population",
",",
"generation",
",",
"this",
".",
"toSelect",
")",
";",
"}",
"@",
"Override",
"public",
"List",
"<",
"Individual",
">",
"select",
"(",
"List",
"<",
"Individual",
">",
"population",
",",
"int",
"generation",
",",
"int",
"ggToSelect",
")",
"{",
"List",
"<",
"Individual",
">",
"newGeneration",
"=",
"new",
"ArrayList",
"<",
"Individual",
">",
"(",
")",
";",
"double",
"distance",
"=",
"1.0d",
"/",
"ggToSelect",
";",
"double",
"r",
"=",
"RandomGenerator",
".",
"getDouble",
"(",
")",
"/",
"ggToSelect",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"ggToSelect",
";",
"i",
"++",
")",
"{",
"double",
"f",
"=",
"0",
";",
"int",
"j",
"=",
"0",
";",
"Individual",
"individual",
"=",
"null",
";",
"do",
"{",
"individual",
"=",
"population",
".",
"get",
"(",
"j",
"++",
")",
";",
"f",
"+=",
"individual",
".",
"getApptitude",
"(",
")",
";",
"}",
"while",
"(",
"f",
"<",
"r",
")",
";",
"newGeneration",
".",
"add",
"(",
"individual",
")",
";",
"r",
"+=",
"distance",
";",
"}",
"return",
"newGeneration",
";",
"}",
"}",
"</s>"
] |
11,737 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"selection",
";",
"import",
"java",
".",
"util",
".",
"ArrayList",
";",
"import",
"java",
".",
"util",
".",
"List",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"model",
".",
"Individual",
";",
"public",
"class",
"TournamentSelection",
"implements",
"Selection",
"{",
"private",
"int",
"tSize",
";",
"private",
"int",
"toSelect",
";",
"public",
"TournamentSelection",
"(",
"int",
"tSize",
",",
"final",
"int",
"toSelect",
")",
"{",
"this",
".",
"tSize",
"=",
"tSize",
";",
"this",
".",
"toSelect",
"=",
"toSelect",
";",
"}",
"@",
"Override",
"public",
"List",
"<",
"Individual",
">",
"select",
"(",
"List",
"<",
"Individual",
">",
"population",
",",
"int",
"generation",
")",
"{",
"return",
"select",
"(",
"population",
",",
"generation",
")",
";",
"}",
"@",
"Override",
"public",
"List",
"<",
"Individual",
">",
"select",
"(",
"List",
"<",
"Individual",
">",
"population",
",",
"int",
"generation",
",",
"int",
"ggToSelect",
")",
"{",
"List",
"<",
"Individual",
">",
"selected",
"=",
"new",
"ArrayList",
"<",
"Individual",
">",
"(",
"ggToSelect",
")",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"toSelect",
";",
"++",
"i",
")",
"{",
"double",
"bestAptitude",
"=",
"Double",
".",
"NEGATIVE_INFINITY",
";",
"Individual",
"auxEntity",
"=",
"null",
";",
"for",
"(",
"int",
"j",
"=",
"0",
";",
"j",
"<",
"tSize",
";",
"++",
"j",
")",
"{",
"int",
"index",
"=",
"(",
"int",
")",
"Math",
".",
"floor",
"(",
"Math",
".",
"random",
"(",
")",
"*",
"(",
"population",
".",
"size",
"(",
")",
")",
")",
";",
"double",
"curAptitude",
"=",
"population",
".",
"get",
"(",
"index",
")",
".",
"getApptitude",
"(",
")",
";",
"if",
"(",
"curAptitude",
">",
"bestAptitude",
")",
"{",
"auxEntity",
"=",
"population",
".",
"get",
"(",
"index",
")",
";",
"bestAptitude",
"=",
"curAptitude",
";",
"}",
"}",
"if",
"(",
"auxEntity",
"!=",
"null",
")",
"{",
"selected",
".",
"add",
"(",
"auxEntity",
")",
";",
"}",
"}",
"return",
"selected",
";",
"}",
"}",
"</s>"
] |
11,738 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
".",
"selection",
";",
"import",
"java",
".",
"util",
".",
"ArrayList",
";",
"import",
"java",
".",
"util",
".",
"List",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"model",
".",
"Individual",
";",
"public",
"class",
"MixSelection",
"implements",
"Selection",
"{",
"private",
"List",
"<",
"Selection",
">",
"selections",
";",
"public",
"MixSelection",
"(",
"List",
"<",
"Selection",
">",
"selections",
")",
"{",
"this",
".",
"selections",
"=",
"selections",
";",
"}",
"@",
"Override",
"public",
"List",
"<",
"Individual",
">",
"select",
"(",
"List",
"<",
"Individual",
">",
"population",
",",
"int",
"generation",
")",
"{",
"List",
"<",
"Individual",
">",
"selected",
"=",
"new",
"ArrayList",
"<",
"Individual",
">",
"(",
")",
";",
"for",
"(",
"Selection",
"selection",
":",
"selections",
")",
"{",
"selected",
".",
"addAll",
"(",
"selection",
".",
"select",
"(",
"population",
",",
"generation",
")",
")",
";",
"}",
"return",
"selected",
";",
"}",
"@",
"Override",
"public",
"List",
"<",
"Individual",
">",
"select",
"(",
"List",
"<",
"Individual",
">",
"population",
",",
"int",
"generation",
",",
"int",
"ggToSelect",
")",
"{",
"List",
"<",
"Individual",
">",
"selected",
"=",
"new",
"ArrayList",
"<",
"Individual",
">",
"(",
"ggToSelect",
")",
";",
"for",
"(",
"Selection",
"selection",
":",
"selections",
")",
"{",
"selected",
".",
"addAll",
"(",
"selection",
".",
"select",
"(",
"population",
",",
"generation",
",",
"ggToSelect",
")",
")",
";",
"}",
"return",
"selected",
";",
"}",
"}",
"</s>"
] |
11,739 | [
"<s>",
"package",
"com",
".",
"g4",
".",
"java",
";",
"import",
"java",
".",
"io",
".",
"BufferedWriter",
";",
"import",
"java",
".",
"io",
".",
"File",
";",
"import",
"java",
".",
"io",
".",
"FileNotFoundException",
";",
"import",
"java",
".",
"io",
".",
"FileWriter",
";",
"import",
"java",
".",
"io",
".",
"IOException",
";",
"import",
"java",
".",
"util",
".",
"ArrayList",
";",
"import",
"java",
".",
"util",
".",
"List",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"configuration",
".",
"Configuration",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"crossover",
".",
"Crossover",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"ending",
".",
"EndingMethod",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"model",
".",
"Individual",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"mutation",
".",
"Mutation",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"reproduction",
".",
"MonogamousReproduction",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"reproduction",
".",
"Reproduction",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"selection",
".",
"EliteSelection",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"selection",
".",
"MixSelection",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"util",
".",
"InputValues",
";",
"import",
"com",
".",
"g4",
".",
"java",
".",
"util",
".",
"Printer",
";",
"import",
"com",
".",
"g4",
".",
"matlab",
".",
"ann",
".",
"ANN",
";",
"import",
"com",
".",
"mathworks",
".",
"toolbox",
".",
"javabuilder",
".",
"MWArray",
";",
"import",
"com",
".",
"mathworks",
".",
"toolbox",
".",
"javabuilder",
".",
"MWCellArray",
";",
"import",
"com",
".",
"mathworks",
".",
"toolbox",
".",
"javabuilder",
".",
"MWException",
";",
"public",
"class",
"FunctionResolver",
"{",
"public",
"static",
"int",
"ARCHITECTURE",
";",
"private",
"int",
"POP_SIZE",
";",
"private",
"double",
"generationGap",
";",
"private",
"Configuration",
"configuration",
";",
"private",
"MixSelection",
"selection",
";",
"private",
"Mutation",
"mutation",
";",
"private",
"Crossover",
"crossover",
";",
"private",
"Reproduction",
"reproduction",
"=",
"new",
"MonogamousReproduction",
"(",
")",
";",
"private",
"EndingMethod",
"ending",
";",
"private",
"Backpropagation",
"backpropagation",
";",
"private",
"MixSelection",
"replacement",
";",
"private",
"List",
"<",
"Individual",
">",
"population",
"=",
"new",
"ArrayList",
"<",
"Individual",
">",
"(",
"POP_SIZE",
")",
";",
"private",
"Printer",
"debugger",
";",
"private",
"static",
"BufferedWriter",
"outFile",
";",
"private",
"ANN",
"ann",
";",
"public",
"static",
"void",
"main",
"(",
"String",
"[",
"]",
"args",
")",
"throws",
"FileNotFoundException",
",",
"IOException",
",",
"MWException",
"{",
"FunctionResolver",
"resolver",
"=",
"new",
"FunctionResolver",
"(",
")",
";",
"if",
"(",
"args",
".",
"length",
"!=",
"1",
")",
"{",
"System",
".",
"err",
".",
"println",
"(",
"\"\"",
")",
";",
"System",
".",
"exit",
"(",
"0",
")",
";",
"}",
"try",
"{",
"resolver",
".",
"configuration",
"=",
"new",
"Configuration",
"(",
"args",
"[",
"0",
"]",
")",
";",
"}",
"catch",
"(",
"FileNotFoundException",
"e",
")",
"{",
"System",
".",
"err",
".",
"println",
"(",
"\"\"",
"+",
"e",
".",
"getCause",
"(",
")",
")",
";",
"System",
".",
"exit",
"(",
"0",
")",
";",
"}",
"FunctionResolver",
".",
"ARCHITECTURE",
"=",
"resolver",
".",
"configuration",
".",
"getArchitecture",
"(",
")",
";",
"resolver",
".",
"POP_SIZE",
"=",
"resolver",
".",
"configuration",
".",
"getPopSize",
"(",
")",
";",
"resolver",
".",
"generationGap",
"=",
"resolver",
".",
"configuration",
".",
"getGenerationGap",
"(",
")",
";",
"resolver",
".",
"selection",
"=",
"new",
"MixSelection",
"(",
"resolver",
".",
"configuration",
".",
"getSelectionMethods",
"(",
")",
")",
";",
"resolver",
".",
"mutation",
"=",
"resolver",
".",
"configuration",
".",
"getMutation",
"(",
")",
";",
"resolver",
".",
"crossover",
"=",
"resolver",
".",
"configuration",
".",
"getCrossOverMethods",
"(",
")",
";",
"resolver",
".",
"ending",
"=",
"resolver",
".",
"configuration",
".",
"getEnding",
"(",
")",
";",
"resolver",
".",
"backpropagation",
"=",
"resolver",
".",
"configuration",
".",
"getBackpropagation",
"(",
")",
";",
"resolver",
".",
"replacement",
"=",
"new",
"MixSelection",
"(",
"resolver",
".",
"configuration",
".",
"getReplacementMethods",
"(",
")",
")",
";",
"resolver",
".",
"ann",
"=",
"MatlabSingleton",
".",
"getInstance",
"(",
")",
".",
"getAnn",
"(",
")",
";",
"resolver",
".",
"debugger",
"=",
"new",
"Printer",
"(",
")",
";",
"try",
"{",
"File",
"file",
"=",
"new",
"File",
"(",
"System",
".",
"getProperty",
"(",
"\"user.dir\"",
")",
"+",
"args",
"[",
"0",
"]",
")",
";",
"String",
"outFileName",
"=",
"file",
".",
"getName",
"(",
")",
";",
"file",
"=",
"new",
"File",
"(",
"System",
".",
"getProperty",
"(",
"\"user.dir\"",
")",
"+",
"\"/outputs/\"",
"+",
"outFileName",
"+",
"\".out\"",
")",
";",
"file",
".",
"delete",
"(",
")",
";",
"file",
".",
"createNewFile",
"(",
")",
";",
"FileWriter",
"fstream",
"=",
"new",
"FileWriter",
"(",
"file",
")",
";",
"outFile",
"=",
"new",
"BufferedWriter",
"(",
"fstream",
")",
";",
"}",
"catch",
"(",
"Exception",
"e",
")",
"{",
"System",
".",
"err",
".",
"println",
"(",
"\"Error:",
"\"",
"+",
"e",
".",
"getMessage",
"(",
")",
")",
";",
"}",
"try",
"{",
"resolver",
".",
"run",
"(",
")",
";",
"}",
"catch",
"(",
"MWException",
"e",
")",
"{",
"System",
".",
"err",
".",
"println",
"(",
"e",
".",
"getCause",
"(",
")",
")",
";",
"System",
".",
"exit",
"(",
"0",
")",
";",
"}",
"}",
"private",
"void",
"run",
"(",
")",
"throws",
"MWException",
"{",
"Object",
"[",
"]",
"inputResult",
"=",
"ann",
".",
"generateInputFromFile",
"(",
"4",
",",
"\"samples3.txt\"",
",",
".40f",
",",
"0",
")",
";",
"InputValues",
".",
"getInstance",
"(",
")",
".",
"setInputs",
"(",
"(",
"MWArray",
")",
"inputResult",
"[",
"0",
"]",
")",
";",
"InputValues",
".",
"getInstance",
"(",
")",
".",
"setExpectedOutputs",
"(",
"(",
"MWArray",
")",
"inputResult",
"[",
"1",
"]",
")",
";",
"InputValues",
".",
"getInstance",
"(",
")",
".",
"setInputsTest",
"(",
"(",
"MWArray",
")",
"inputResult",
"[",
"2",
"]",
")",
";",
"InputValues",
".",
"getInstance",
"(",
")",
".",
"setExpectedOutputsTest",
"(",
"(",
"MWArray",
")",
"inputResult",
"[",
"3",
"]",
")",
";",
"Function",
"function",
"=",
"new",
"Function",
"(",
"ann",
")",
";",
"long",
"creationStartTime",
"=",
"System",
".",
"currentTimeMillis",
"(",
")",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"POP_SIZE",
";",
"i",
"++",
")",
"{",
"Individual",
"individual",
"=",
"new",
"Individual",
"(",
")",
";",
"Object",
"[",
"]",
"createIndividualResult",
"=",
"ann",
".",
"createIndividual",
"(",
"1",
",",
"InputValues",
".",
"getInstance",
"(",
")",
".",
"getInputs",
"(",
")",
",",
"InputValues",
".",
"getInstance",
"(",
")",
".",
"getExpectedOutputs",
"(",
")",
",",
"InputValues",
".",
"getInstance",
"(",
")",
".",
"getInputsTest",
"(",
")",
",",
"InputValues",
".",
"getInstance",
"(",
")",
".",
"getExpectedOutputsTest",
"(",
")",
",",
"ARCHITECTURE",
")",
";",
"individual",
".",
"setData",
"(",
"(",
"MWCellArray",
")",
"createIndividualResult",
"[",
"0",
"]",
")",
";",
"population",
".",
"add",
"(",
"individual",
")",
";",
"}",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"POP_SIZE",
";",
"i",
"++",
")",
"{",
"population",
".",
"get",
"(",
"i",
")",
".",
"setApptitude",
"(",
"function",
".",
"eval",
"(",
"population",
".",
"get",
"(",
"i",
")",
")",
")",
";",
"}",
"System",
".",
"out",
".",
"println",
"(",
"\"\"",
"+",
"(",
"System",
".",
"currentTimeMillis",
"(",
")",
"-",
"creationStartTime",
")",
")",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"!",
"ending",
".",
"shouldEnd",
"(",
"population",
",",
"i",
")",
";",
"i",
"++",
")",
"{",
"long",
"initial",
"=",
"System",
".",
"currentTimeMillis",
"(",
")",
";",
"System",
".",
"out",
".",
"println",
"(",
"\"\"",
"+",
"i",
")",
";",
"mutation",
".",
"updateMutationProbability",
"(",
"i",
")",
";",
"int",
"toSelect",
"=",
"(",
"int",
")",
"(",
"POP_SIZE",
"*",
"this",
".",
"generationGap",
")",
";",
"List",
"<",
"Individual",
">",
"best",
"=",
"selection",
".",
"select",
"(",
"population",
",",
"i",
")",
";",
"List",
"<",
"Individual",
"[",
"]",
">",
"parents",
"=",
"reproduction",
".",
"getParents",
"(",
"best",
")",
";",
"List",
"<",
"Individual",
">",
"generation",
"=",
"new",
"ArrayList",
"<",
"Individual",
">",
"(",
")",
";",
"List",
"<",
"Individual",
">",
"sons",
"=",
"new",
"ArrayList",
"<",
"Individual",
">",
"(",
")",
";",
"for",
"(",
"Individual",
"[",
"]",
"family",
":",
"parents",
")",
"{",
"generation",
".",
"add",
"(",
"family",
"[",
"0",
"]",
")",
";",
"generation",
".",
"add",
"(",
"family",
"[",
"1",
"]",
")",
";",
"if",
"(",
"crossover",
".",
"shouldApply",
"(",
")",
")",
"{",
"Individual",
"[",
"]",
"childs",
"=",
"crossover",
".",
"cross",
"(",
"family",
")",
";",
"sons",
".",
"add",
"(",
"childs",
"[",
"0",
"]",
")",
";",
"sons",
".",
"add",
"(",
"childs",
"[",
"1",
"]",
")",
";",
"}",
"else",
"{",
"sons",
".",
"add",
"(",
"family",
"[",
"0",
"]",
")",
";",
"sons",
".",
"add",
"(",
"family",
"[",
"1",
"]",
")",
";",
"}",
"}",
"List",
"<",
"Individual",
">",
"sonsToAdd",
"=",
"new",
"ArrayList",
"<",
"Individual",
">",
"(",
")",
";",
"for",
"(",
"Individual",
"individual",
":",
"sons",
")",
"{",
"Individual",
"individualToAdd",
"=",
"individual",
";",
"if",
"(",
"mutation",
".",
"shouldMutate",
"(",
")",
")",
"{",
"individualToAdd",
"=",
"mutation",
".",
"mutate",
"(",
"individualToAdd",
",",
"i",
")",
";",
"}",
"if",
"(",
"backpropagation",
".",
"shouldApply",
"(",
")",
")",
"{",
"individualToAdd",
"=",
"backpropagation",
".",
"run",
"(",
"individualToAdd",
")",
";",
"}",
"sonsToAdd",
".",
"add",
"(",
"individualToAdd",
")",
";",
"}",
"sons",
".",
"clear",
"(",
")",
";",
"sons",
"=",
"null",
";",
"for",
"(",
"Individual",
"individual",
":",
"sonsToAdd",
")",
"{",
"individual",
".",
"setApptitude",
"(",
"function",
".",
"eval",
"(",
"individual",
")",
")",
";",
"}",
"population",
"=",
"replacement",
".",
"select",
"(",
"population",
",",
"i",
")",
";",
"population",
".",
"addAll",
"(",
"sonsToAdd",
")",
";",
"if",
"(",
"population",
".",
"size",
"(",
")",
"!=",
"POP_SIZE",
")",
"{",
"System",
".",
"err",
".",
"println",
"(",
"\"\"",
"+",
"population",
".",
"size",
"(",
")",
"+",
"\"\"",
"+",
"POP_SIZE",
"+",
"\"\"",
")",
";",
"System",
".",
"exit",
"(",
"-",
"1",
")",
";",
"}",
"EliteSelection",
"bestSel",
"=",
"new",
"EliteSelection",
"(",
"population",
".",
"size",
"(",
")",
")",
";",
"List",
"<",
"Individual",
">",
"bestList",
"=",
"bestSel",
".",
"select",
"(",
"population",
",",
"i",
")",
";",
"try",
"{",
"outFile",
".",
"write",
"(",
"i",
"+",
"\"",
"\"",
"+",
"bestList",
".",
"get",
"(",
"0",
")",
".",
"getApptitude",
"(",
")",
"+",
"\"",
"\"",
"+",
"bestList",
".",
"get",
"(",
"population",
".",
"size",
"(",
")",
"-",
"1",
")",
".",
"getApptitude",
"(",
")",
"+",
"\"",
"\"",
"+",
"this",
".",
"debugger",
".",
"mean",
"(",
"population",
")",
"+",
"\"",
"\"",
"+",
"this",
".",
"debugger",
".",
"sdForIndividual",
"(",
"population",
")",
"+",
"\"",
"n\"",
")",
";",
"outFile",
".",
"flush",
"(",
")",
";",
"}",
"catch",
"(",
"IOException",
"e",
")",
"{",
"e",
".",
"printStackTrace",
"(",
")",
";",
"}",
"System",
".",
"out",
".",
"println",
"(",
"\"\"",
"+",
"bestList",
".",
"get",
"(",
"0",
")",
".",
"getApptitude",
"(",
")",
"+",
"\"\"",
"+",
"bestList",
".",
"get",
"(",
"population",
".",
"size",
"(",
")",
"-",
"1",
")",
".",
"getApptitude",
"(",
")",
"+",
"\"",
"SD:",
"\"",
"+",
"this",
".",
"debugger",
".",
"sdForIndividual",
"(",
"population",
")",
"+",
"\"",
"MEAN:",
"\"",
"+",
"this",
".",
"debugger",
".",
"mean",
"(",
"population",
")",
")",
";",
"long",
"finish",
"=",
"System",
".",
"currentTimeMillis",
"(",
")",
";",
"System",
".",
"out",
".",
"println",
"(",
"\"\"",
"+",
"i",
"+",
"\"",
"in",
"\"",
"+",
"(",
"finish",
"-",
"initial",
")",
"/",
"1000",
"+",
"\"",
"seconds\"",
")",
";",
"}",
"}",
"}",
"</s>"
] |
11,740 | [
"<s>",
"package",
"g4",
";",
"import",
"java",
".",
"util",
".",
"ArrayList",
";",
"import",
"java",
".",
"util",
".",
"Collections",
";",
"import",
"java",
".",
"util",
".",
"List",
";",
"import",
"java",
".",
"util",
".",
"Random",
";",
"import",
"g4",
".",
"heuristics",
".",
"Heuristic",
";",
"import",
"gps",
".",
"api",
".",
"GPSProblem",
";",
"import",
"gps",
".",
"api",
".",
"GPSRule",
";",
"import",
"gps",
".",
"api",
".",
"GPSState",
";",
"public",
"abstract",
"class",
"MahjongProblem",
"implements",
"GPSProblem",
"{",
"protected",
"Heuristic",
"heuristic",
";",
"@",
"Override",
"public",
"List",
"<",
"GPSRule",
">",
"getRules",
"(",
"GPSState",
"state",
")",
"{",
"List",
"<",
"GPSRule",
">",
"rules",
"=",
"new",
"ArrayList",
"<",
"GPSRule",
">",
"(",
")",
";",
"final",
"MahjongGPSState",
"gpsState",
"=",
"(",
"MahjongGPSState",
")",
"state",
";",
"int",
"count",
"=",
"gpsState",
".",
"getBoard",
"(",
")",
".",
"getPayersCount",
"(",
")",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"count",
";",
"i",
"++",
")",
"{",
"rules",
".",
"add",
"(",
"new",
"MahjongGPSRule",
"(",
"i",
")",
")",
";",
"}",
"Collections",
".",
"shuffle",
"(",
"rules",
",",
"new",
"Random",
"(",
"692151",
")",
")",
";",
"return",
"rules",
";",
"}",
"public",
"float",
"getHValue",
"(",
"GPSState",
"state1",
")",
"{",
"return",
"heuristic",
".",
"getValue",
"(",
"state1",
")",
";",
"}",
"}",
"</s>"
] |
11,741 | [
"<s>",
"package",
"g4",
".",
"heuristics",
";",
"import",
"gps",
".",
"api",
".",
"GPSState",
";",
"public",
"interface",
"Heuristic",
"{",
"float",
"getValue",
"(",
"GPSState",
"state",
")",
";",
"}",
"</s>"
] |
11,742 | [
"<s>",
"package",
"g4",
".",
"heuristics",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Board",
";",
"import",
"g4",
".",
"MahjongGPSState",
";",
"import",
"gps",
".",
"api",
".",
"GPSState",
";",
"public",
"class",
"HStar",
"implements",
"Heuristic",
"{",
"@",
"Override",
"public",
"float",
"getValue",
"(",
"GPSState",
"state",
")",
"{",
"Board",
"board",
"=",
"(",
"(",
"MahjongGPSState",
")",
"state",
")",
".",
"getBoard",
"(",
")",
";",
"if",
"(",
"0",
"==",
"board",
".",
"getPayersCount",
"(",
")",
")",
"{",
"return",
"Float",
".",
"MAX_VALUE",
";",
"}",
"return",
"board",
".",
"getTilesCount",
"(",
")",
"*",
".5f",
";",
"}",
"}",
"</s>"
] |
11,743 | [
"<s>",
"package",
"g4",
".",
"heuristics",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Board",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Pair",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Position",
";",
"import",
"g4",
".",
"MahjongGPSState",
";",
"import",
"gps",
".",
"api",
".",
"GPSState",
";",
"public",
"class",
"BiggerRowsFirst",
"implements",
"Heuristic",
"{",
"@",
"Override",
"public",
"float",
"getValue",
"(",
"GPSState",
"state1",
")",
"{",
"float",
"ret",
"=",
"0",
";",
"MahjongGPSState",
"state",
"=",
"(",
"MahjongGPSState",
")",
"state1",
";",
"Board",
"board",
"=",
"state",
".",
"getBoard",
"(",
")",
";",
"Pair",
"pair",
"=",
"state",
".",
"getMove",
"(",
")",
";",
"int",
"pairs",
"=",
"board",
".",
"getTilesCount",
"(",
")",
"/",
"2",
";",
"int",
"payersCount",
"=",
"board",
".",
"getPayersCount",
"(",
")",
";",
"if",
"(",
"pairs",
"==",
"0",
")",
"{",
"return",
"0f",
";",
"}",
"if",
"(",
"payersCount",
"==",
"0",
")",
"{",
"return",
"Float",
".",
"MAX_VALUE",
";",
"}",
"ret",
"=",
"(",
"board",
".",
"getTilesCount",
"(",
")",
"-",
"tileValue",
"(",
"pair",
".",
"getPosition1",
"(",
")",
",",
"board",
")",
"-",
"tileValue",
"(",
"pair",
".",
"getPosition2",
"(",
")",
",",
"board",
")",
")",
"/",
"2",
";",
"if",
"(",
"ret",
"<=",
"0",
"&&",
"board",
".",
"getTilesCount",
"(",
")",
">",
"0",
")",
"{",
"ret",
"=",
"1",
";",
"}",
"return",
"ret",
";",
"}",
"public",
"int",
"tileValue",
"(",
"Position",
"position",
",",
"Board",
"board",
")",
"{",
"return",
"getAmountHorizontalBlockers",
"(",
"position",
",",
"board",
")",
"*",
"(",
"position",
".",
"getLayer",
"(",
")",
"+",
"1",
")",
";",
"}",
"public",
"int",
"getAmountHorizontalBlockers",
"(",
"Position",
"position",
",",
"Board",
"board",
")",
"{",
"int",
"x",
"=",
"position",
".",
"getColumn",
"(",
")",
";",
"int",
"y",
"=",
"position",
".",
"getRow",
"(",
")",
";",
"int",
"z",
"=",
"position",
".",
"getLayer",
"(",
")",
";",
"int",
"inc",
"=",
"0",
";",
"int",
"ret",
"=",
"0",
";",
"if",
"(",
"board",
".",
"getItem",
"(",
"z",
",",
"y",
",",
"x",
"+",
"1",
")",
"!=",
"null",
")",
"{",
"inc",
"=",
"1",
";",
"}",
"else",
"{",
"inc",
"=",
"-",
"1",
";",
"}",
"while",
"(",
"board",
".",
"getItem",
"(",
"z",
",",
"y",
",",
"x",
"+",
"inc",
")",
"!=",
"null",
")",
"{",
"ret",
"++",
";",
"}",
"return",
"ret",
"/",
"2",
";",
"}",
"}",
"</s>"
] |
11,744 | [
"<s>",
"package",
"g4",
".",
"heuristics",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Board",
";",
"import",
"g4",
".",
"MahjongGPSState",
";",
"import",
"gps",
".",
"api",
".",
"GPSState",
";",
"public",
"class",
"MorePayers",
"implements",
"Heuristic",
"{",
"@",
"Override",
"public",
"float",
"getValue",
"(",
"GPSState",
"state",
")",
"{",
"Board",
"board",
"=",
"(",
"(",
"MahjongGPSState",
")",
"state",
")",
".",
"getBoard",
"(",
")",
";",
"float",
"pairs",
"=",
"board",
".",
"getTilesCount",
"(",
")",
"*",
".5f",
";",
"float",
"payersCount",
"=",
"board",
".",
"getPayersCount",
"(",
")",
";",
"if",
"(",
"pairs",
"==",
"0",
")",
"{",
"return",
"0f",
";",
"}",
"if",
"(",
"payersCount",
"==",
"0",
")",
"{",
"return",
"Float",
".",
"MAX_VALUE",
";",
"}",
"float",
"ret",
"=",
"pairs",
"-",
"payersCount",
";",
"return",
"(",
"ret",
">",
"0",
")",
"?",
"ret",
":",
"1",
";",
"}",
"}",
"</s>"
] |
11,745 | [
"<s>",
"package",
"g4",
".",
"heuristics",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Board",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Pair",
";",
"import",
"g4",
".",
"MahjongGPSState",
";",
"import",
"gps",
".",
"api",
".",
"GPSState",
";",
"public",
"class",
"UpperLevelFirst",
"implements",
"Heuristic",
"{",
"@",
"Override",
"public",
"float",
"getValue",
"(",
"GPSState",
"state1",
")",
"{",
"MahjongGPSState",
"state",
"=",
"(",
"MahjongGPSState",
")",
"state1",
";",
"Board",
"board",
"=",
"state",
".",
"getBoard",
"(",
")",
";",
"int",
"pairs",
"=",
"board",
".",
"getTilesCount",
"(",
")",
"/",
"2",
";",
"Pair",
"pair",
"=",
"state",
".",
"getMove",
"(",
")",
";",
"int",
"height",
"=",
"pair",
".",
"getPosition1",
"(",
")",
".",
"getLayer",
"(",
")",
"+",
"pair",
".",
"getPosition2",
"(",
")",
".",
"getLayer",
"(",
")",
";",
"float",
"ret",
"=",
"pairs",
"-",
"height",
";",
"if",
"(",
"pairs",
"==",
"0",
")",
"{",
"return",
"0f",
";",
"}",
"if",
"(",
"board",
".",
"getPayersCount",
"(",
")",
"==",
"0",
")",
"{",
"return",
"Float",
".",
"MAX_VALUE",
";",
"}",
"return",
"(",
"ret",
">",
"0",
")",
"?",
"ret",
":",
"1f",
";",
"}",
"}",
"</s>"
] |
11,746 | [
"<s>",
"package",
"g4",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Board",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Pair",
";",
"import",
"gps",
".",
"api",
".",
"GPSRule",
";",
"import",
"gps",
".",
"api",
".",
"GPSState",
";",
"import",
"gps",
".",
"exception",
".",
"NotAppliableException",
";",
"public",
"class",
"MahjongGPSRule",
"implements",
"GPSRule",
"{",
"private",
"static",
"float",
"cost",
"=",
"1",
";",
"private",
"int",
"indexToUse",
";",
"public",
"MahjongGPSRule",
"(",
"int",
"indexToUse",
")",
"{",
"this",
".",
"indexToUse",
"=",
"indexToUse",
";",
"}",
"public",
"static",
"void",
"setCost",
"(",
"float",
"cost1",
")",
"{",
"cost",
"=",
"cost1",
";",
"}",
"@",
"Override",
"public",
"float",
"getCost",
"(",
")",
"{",
"return",
"cost",
";",
"}",
"@",
"Override",
"public",
"String",
"getName",
"(",
")",
"{",
"return",
"String",
".",
"format",
"(",
"\"\"",
",",
"indexToUse",
")",
";",
"}",
"@",
"Override",
"public",
"GPSState",
"evalRule",
"(",
"GPSState",
"state",
")",
"throws",
"NotAppliableException",
"{",
"MahjongGPSState",
"original",
"=",
"(",
"MahjongGPSState",
")",
"state",
";",
"if",
"(",
"original",
".",
"getBoard",
"(",
")",
".",
"getPayersCount",
"(",
")",
"==",
"0",
")",
"{",
"throw",
"new",
"NotAppliableException",
"(",
")",
";",
"}",
"Pair",
"pair",
"=",
"null",
";",
"try",
"{",
"pair",
"=",
"original",
".",
"getBoard",
"(",
")",
".",
"getPairs",
"(",
")",
"[",
"indexToUse",
"]",
";",
"}",
"catch",
"(",
"IndexOutOfBoundsException",
"e",
")",
"{",
"throw",
"new",
"NotAppliableException",
"(",
")",
";",
"}",
"MahjongGPSState",
"clone",
"=",
"null",
";",
"try",
"{",
"clone",
"=",
"(",
"MahjongGPSState",
")",
"original",
".",
"clone",
"(",
")",
";",
"}",
"catch",
"(",
"CloneNotSupportedException",
"e",
")",
"{",
"throw",
"new",
"NotAppliableException",
"(",
")",
";",
"}",
"Board",
"board",
"=",
"clone",
".",
"getBoard",
"(",
")",
";",
"Pair",
"toRemove",
"=",
"board",
".",
"getPairs",
"(",
")",
"[",
"indexToUse",
"]",
";",
"board",
".",
"setItem",
"(",
"toRemove",
".",
"getPosition1",
"(",
")",
",",
"null",
")",
";",
"board",
".",
"setItem",
"(",
"toRemove",
".",
"getPosition2",
"(",
")",
",",
"null",
")",
";",
"clone",
".",
"setMove",
"(",
"pair",
")",
";",
"return",
"clone",
";",
"}",
"}",
"</s>"
] |
11,747 | [
"<s>",
"package",
"g4",
";",
"import",
"g4",
".",
"heuristics",
".",
"Heuristic",
";",
"import",
"g4",
".",
"parseLine",
".",
"CommandLineParser",
";",
"import",
"g4",
".",
"parseLine",
".",
"HeuristicFactory",
";",
"import",
"g4",
".",
"parseLine",
".",
"ProblemFactory",
";",
"import",
"gps",
".",
"SearchStrategy",
";",
"import",
"gps",
".",
"api",
".",
"GPSProblem",
";",
"import",
"org",
".",
"kohsuke",
".",
"args4j",
".",
"CmdLineException",
";",
"import",
"org",
".",
"kohsuke",
".",
"args4j",
".",
"CmdLineParser",
";",
"public",
"class",
"Main",
"{",
"public",
"static",
"void",
"main",
"(",
"String",
"[",
"]",
"args",
")",
"{",
"CommandLineParser",
"arguments",
"=",
"new",
"CommandLineParser",
"(",
")",
";",
"CmdLineParser",
"parser",
"=",
"new",
"CmdLineParser",
"(",
"arguments",
")",
";",
"try",
"{",
"parser",
".",
"parseArgument",
"(",
"args",
")",
";",
"}",
"catch",
"(",
"CmdLineException",
"e",
")",
"{",
"System",
".",
"err",
".",
"println",
"(",
"\"\"",
")",
";",
"parser",
".",
"printUsage",
"(",
"System",
".",
"err",
")",
";",
"System",
".",
"exit",
"(",
"1",
")",
";",
"}",
"if",
"(",
"arguments",
".",
"help",
")",
"{",
"parser",
".",
"printUsage",
"(",
"System",
".",
"out",
")",
";",
"System",
".",
"exit",
"(",
"1",
")",
";",
"}",
"if",
"(",
"arguments",
".",
"getStrategy",
"(",
")",
"==",
"null",
")",
"{",
"System",
".",
"err",
".",
"println",
"(",
"\"\"",
")",
";",
"parser",
".",
"printUsage",
"(",
"System",
".",
"err",
")",
";",
"System",
".",
"exit",
"(",
"1",
")",
";",
"}",
"if",
"(",
"arguments",
".",
"getHeuristic",
"(",
")",
"==",
"null",
"&&",
"arguments",
".",
"getStrategy",
"(",
")",
"!=",
"SearchStrategy",
".",
"DFS",
"&&",
"arguments",
".",
"getStrategy",
"(",
")",
"!=",
"SearchStrategy",
".",
"BFS",
"&&",
"arguments",
".",
"getStrategy",
"(",
")",
"!=",
"SearchStrategy",
".",
"IterativeDepth",
")",
"{",
"System",
".",
"err",
".",
"println",
"(",
"\"\"",
")",
";",
"parser",
".",
"printUsage",
"(",
"System",
".",
"err",
")",
";",
"System",
".",
"exit",
"(",
"1",
")",
";",
"}",
"Heuristic",
"heuristic",
"=",
"null",
";",
"if",
"(",
"arguments",
".",
"getStrategy",
"(",
")",
"!=",
"SearchStrategy",
".",
"DFS",
"&&",
"arguments",
".",
"getStrategy",
"(",
")",
"!=",
"SearchStrategy",
".",
"BFS",
"&&",
"arguments",
".",
"getStrategy",
"(",
")",
"!=",
"SearchStrategy",
".",
"IterativeDepth",
")",
"{",
"heuristic",
"=",
"HeuristicFactory",
".",
"createHeuristicFromString",
"(",
"arguments",
".",
"getHeuristic",
"(",
")",
")",
";",
"if",
"(",
"heuristic",
"==",
"null",
")",
"{",
"System",
".",
"err",
".",
"println",
"(",
"\"\"",
")",
";",
"parser",
".",
"printUsage",
"(",
"System",
".",
"err",
")",
";",
"System",
".",
"exit",
"(",
"1",
")",
";",
"}",
"}",
"if",
"(",
"arguments",
".",
"getCost",
"(",
")",
"!=",
"null",
")",
"{",
"MahjongGPSRule",
".",
"setCost",
"(",
"arguments",
".",
"getCost",
"(",
")",
")",
";",
"}",
"SearchStrategy",
"strategy",
"=",
"arguments",
".",
"getStrategy",
"(",
")",
";",
"GPSProblem",
"problem",
"=",
"ProblemFactory",
".",
"createProblem",
"(",
"arguments",
".",
"getLevel",
"(",
")",
",",
"heuristic",
")",
";",
"if",
"(",
"problem",
"==",
"null",
")",
"{",
"System",
".",
"err",
".",
"println",
"(",
"\"\"",
")",
";",
"System",
".",
"exit",
"(",
"1",
")",
";",
"}",
"if",
"(",
"strategy",
"==",
"null",
")",
"{",
"System",
".",
"err",
".",
"println",
"(",
"\"\"",
")",
";",
"System",
".",
"exit",
"(",
"1",
")",
";",
"}",
"G4GPSEngine",
"engine",
"=",
"new",
"G4GPSEngine",
"(",
")",
";",
"engine",
".",
"engine",
"(",
"problem",
",",
"strategy",
")",
";",
"}",
"}",
"</s>"
] |
11,748 | [
"<s>",
"package",
"g4",
";",
"import",
"gps",
".",
"GPSEngine",
";",
"import",
"gps",
".",
"GPSNode",
";",
"import",
"gps",
".",
"SearchStrategy",
";",
"import",
"gps",
".",
"api",
".",
"GPSProblem",
";",
"import",
"java",
".",
"util",
".",
"Collections",
";",
"import",
"java",
".",
"util",
".",
"Comparator",
";",
"import",
"java",
".",
"util",
".",
"LinkedList",
";",
"import",
"java",
".",
"util",
".",
"List",
";",
"import",
"com",
".",
"google",
".",
"common",
".",
"base",
".",
"Predicate",
";",
"import",
"com",
".",
"google",
".",
"common",
".",
"collect",
".",
"Collections2",
";",
"import",
"com",
".",
"google",
".",
"common",
".",
"collect",
".",
"Lists",
";",
"public",
"class",
"G4GPSEngine",
"extends",
"GPSEngine",
"{",
"protected",
"int",
"depthLevel",
"=",
"0",
";",
"protected",
"int",
"generatedNodes",
";",
"@",
"Override",
"public",
"void",
"engine",
"(",
"GPSProblem",
"myProblem",
",",
"SearchStrategy",
"myStrategy",
")",
"{",
"generatedNodes",
"=",
"0",
";",
"super",
".",
"engine",
"(",
"myProblem",
",",
"myStrategy",
")",
";",
"}",
"@",
"Override",
"public",
"void",
"addNode",
"(",
"GPSNode",
"node",
")",
"{",
"switch",
"(",
"strategy",
")",
"{",
"case",
"BFS",
":",
"open",
".",
"add",
"(",
"node",
")",
";",
"break",
";",
"case",
"IterativeDepth",
":",
"if",
"(",
"node",
".",
"getTreeLevel",
"(",
")",
">",
"depthLevel",
"+",
"1",
")",
"{",
"generatedNodes",
"+=",
"open",
".",
"size",
"(",
")",
"+",
"closed",
".",
"size",
"(",
")",
";",
"closed",
".",
"clear",
"(",
")",
";",
"open",
".",
"clear",
"(",
")",
";",
"open",
".",
"add",
"(",
"rootNode",
")",
";",
"depthLevel",
"++",
";",
"break",
";",
"}",
"else",
"if",
"(",
"node",
".",
"getTreeLevel",
"(",
")",
">",
"depthLevel",
")",
"{",
"open",
".",
"add",
"(",
"node",
")",
";",
"break",
";",
"}",
"case",
"DFS",
":",
"(",
"(",
"LinkedList",
"<",
"GPSNode",
">",
")",
"open",
")",
".",
"addFirst",
"(",
"node",
")",
";",
"break",
";",
"case",
"AStar",
":",
"int",
"index",
"=",
"Collections",
".",
"binarySearch",
"(",
"open",
",",
"node",
",",
"new",
"Comparator",
"<",
"GPSNode",
">",
"(",
")",
"{",
"@",
"Override",
"public",
"int",
"compare",
"(",
"GPSNode",
"o1",
",",
"GPSNode",
"o2",
")",
"{",
"Float",
"f1",
"=",
"o1",
".",
"getCost",
"(",
")",
"+",
"problem",
".",
"getHValue",
"(",
"o1",
".",
"getState",
"(",
")",
")",
";",
"Float",
"f2",
"=",
"o2",
".",
"getCost",
"(",
")",
"+",
"problem",
".",
"getHValue",
"(",
"o2",
".",
"getState",
"(",
")",
")",
";",
"if",
"(",
"f1",
"<",
"f2",
")",
"{",
"return",
"-",
"1",
";",
"}",
"else",
"if",
"(",
"f1",
"==",
"f2",
")",
"{",
"return",
"0",
";",
"}",
"else",
"{",
"return",
"1",
";",
"}",
"}",
"}",
")",
";",
"if",
"(",
"index",
">=",
"0",
")",
"{",
"(",
"(",
"LinkedList",
"<",
"GPSNode",
">",
")",
"open",
")",
".",
"add",
"(",
"index",
",",
"node",
")",
";",
"}",
"else",
"{",
"(",
"(",
"LinkedList",
"<",
"GPSNode",
">",
")",
"open",
")",
".",
"add",
"(",
"-",
"1",
"*",
"(",
"index",
"+",
"1",
")",
",",
"node",
")",
";",
"}",
"break",
";",
"case",
"Greedy",
":",
"if",
"(",
"open",
".",
"isEmpty",
"(",
")",
"||",
"!",
"open",
".",
"get",
"(",
"0",
")",
".",
"getParent",
"(",
")",
".",
"equals",
"(",
"node",
".",
"getParent",
"(",
")",
")",
")",
"{",
"(",
"(",
"LinkedList",
"<",
"GPSNode",
">",
")",
"open",
")",
".",
"addFirst",
"(",
"node",
")",
";",
"}",
"else",
"{",
"final",
"GPSNode",
"node2",
"=",
"node",
";",
"List",
"<",
"GPSNode",
">",
"openParent",
"=",
"Lists",
".",
"newArrayList",
"(",
"Collections2",
".",
"filter",
"(",
"open",
",",
"new",
"Predicate",
"<",
"GPSNode",
">",
"(",
")",
"{",
"@",
"Override",
"public",
"boolean",
"apply",
"(",
"GPSNode",
"input",
")",
"{",
"return",
"input",
".",
"getParent",
"(",
")",
".",
"equals",
"(",
"node2",
".",
"getParent",
"(",
")",
")",
";",
"}",
"}",
")",
")",
";",
"int",
"index2",
"=",
"Collections",
".",
"binarySearch",
"(",
"openParent",
",",
"node",
",",
"new",
"Comparator",
"<",
"GPSNode",
">",
"(",
")",
"{",
"@",
"Override",
"public",
"int",
"compare",
"(",
"GPSNode",
"o1",
",",
"GPSNode",
"o2",
")",
"{",
"return",
"(",
"int",
")",
"(",
"problem",
".",
"getHValue",
"(",
"o1",
".",
"getState",
"(",
")",
")",
"-",
"problem",
".",
"getHValue",
"(",
"o2",
".",
"getState",
"(",
")",
")",
")",
";",
"}",
"}",
")",
";",
"if",
"(",
"index2",
">=",
"0",
")",
"{",
"(",
"(",
"LinkedList",
"<",
"GPSNode",
">",
")",
"open",
")",
".",
"add",
"(",
"index2",
",",
"node",
")",
";",
"}",
"else",
"{",
"(",
"(",
"LinkedList",
"<",
"GPSNode",
">",
")",
"open",
")",
".",
"add",
"(",
"-",
"1",
"*",
"(",
"index2",
"+",
"1",
")",
",",
"node",
")",
";",
"}",
"}",
"break",
";",
"default",
":",
"open",
".",
"add",
"(",
"node",
")",
";",
"break",
";",
"}",
"}",
"}",
"</s>"
] |
11,749 | [
"<s>",
"package",
"g4",
".",
"parseLine",
";",
"import",
"g4",
".",
"heuristics",
".",
"BiggerRowsFirst",
";",
"import",
"g4",
".",
"heuristics",
".",
"HStar",
";",
"import",
"g4",
".",
"heuristics",
".",
"Heuristic",
";",
"import",
"g4",
".",
"heuristics",
".",
"MorePayers",
";",
"import",
"g4",
".",
"heuristics",
".",
"UpperLevelFirst",
";",
"public",
"class",
"HeuristicFactory",
"{",
"public",
"static",
"Heuristic",
"createHeuristicFromString",
"(",
"String",
"heuristic",
")",
"{",
"if",
"(",
"heuristic",
"==",
"null",
")",
"{",
"return",
"null",
";",
"}",
"if",
"(",
"heuristic",
".",
"compareToIgnoreCase",
"(",
"\"\"",
")",
"==",
"0",
")",
"{",
"return",
"new",
"BiggerRowsFirst",
"(",
")",
";",
"}",
"if",
"(",
"heuristic",
".",
"compareToIgnoreCase",
"(",
"\"MOREPAYERS\"",
")",
"==",
"0",
")",
"{",
"return",
"new",
"MorePayers",
"(",
")",
";",
"}",
"if",
"(",
"heuristic",
".",
"compareToIgnoreCase",
"(",
"\"\"",
")",
"==",
"0",
")",
"{",
"return",
"new",
"UpperLevelFirst",
"(",
")",
";",
"}",
"if",
"(",
"heuristic",
".",
"compareToIgnoreCase",
"(",
"\"HSTAR\"",
")",
"==",
"0",
")",
"{",
"return",
"new",
"HStar",
"(",
")",
";",
"}",
"return",
"null",
";",
"}",
"}",
"</s>"
] |
11,750 | [
"<s>",
"package",
"g4",
".",
"parseLine",
";",
"import",
"gps",
".",
"SearchStrategy",
";",
"import",
"org",
".",
"kohsuke",
".",
"args4j",
".",
"Option",
";",
"public",
"class",
"CommandLineParser",
"{",
"@",
"Option",
"(",
"name",
"=",
"\"-s\"",
",",
"aliases",
"=",
"{",
"\"--strategy\"",
"}",
",",
"usage",
"=",
"\"\"",
")",
"private",
"SearchStrategy",
"strategies",
";",
"@",
"Option",
"(",
"name",
"=",
"\"-l\"",
",",
"aliases",
"=",
"{",
"\"--level\"",
"}",
",",
"usage",
"=",
"\"\"",
")",
"private",
"int",
"level",
";",
"@",
"Option",
"(",
"name",
"=",
"\"-h\"",
",",
"aliases",
"=",
"{",
"\"--heuristic\"",
"}",
",",
"usage",
"=",
"\"\"",
")",
"private",
"String",
"heuristic",
";",
"@",
"Option",
"(",
"name",
"=",
"\"-c\"",
",",
"aliases",
"=",
"{",
"\"--cost\"",
"}",
",",
"usage",
"=",
"\"\"",
")",
"private",
"Float",
"cost",
";",
"private",
"boolean",
"hasToDraw",
"=",
"false",
";",
"public",
"boolean",
"help",
"=",
"false",
";",
"public",
"SearchStrategy",
"getStrategy",
"(",
")",
"{",
"return",
"strategies",
";",
"}",
"public",
"Float",
"getCost",
"(",
")",
"{",
"return",
"cost",
";",
"}",
"public",
"int",
"getLevel",
"(",
")",
"{",
"return",
"level",
";",
"}",
"public",
"boolean",
"hasToDraw",
"(",
")",
"{",
"return",
"hasToDraw",
";",
"}",
"public",
"String",
"getHeuristic",
"(",
")",
"{",
"return",
"heuristic",
";",
"}",
"@",
"Option",
"(",
"name",
"=",
"\"--help\"",
",",
"usage",
"=",
"\"\"",
")",
"public",
"void",
"showHelp",
"(",
"boolean",
"flag",
")",
"{",
"help",
"=",
"true",
";",
"}",
"}",
"</s>"
] |
11,751 | [
"<s>",
"package",
"g4",
".",
"parseLine",
";",
"import",
"g4",
".",
"heuristics",
".",
"Heuristic",
";",
"import",
"g4",
".",
"layouts",
".",
"layout1",
".",
"Layout1Problem",
";",
"import",
"g4",
".",
"layouts",
".",
"layout2",
".",
"Layout2Problem",
";",
"import",
"g4",
".",
"layouts",
".",
"layout3",
".",
"Layout3Problem",
";",
"import",
"g4",
".",
"layouts",
".",
"layout4",
".",
"Layout4Problem",
";",
"import",
"gps",
".",
"api",
".",
"GPSProblem",
";",
"public",
"class",
"ProblemFactory",
"{",
"public",
"static",
"GPSProblem",
"createProblem",
"(",
"int",
"level",
",",
"Heuristic",
"heuristic",
")",
"{",
"GPSProblem",
"problem",
"=",
"null",
";",
"switch",
"(",
"level",
")",
"{",
"case",
"1",
":",
"problem",
"=",
"new",
"Layout1Problem",
"(",
"heuristic",
")",
";",
"break",
";",
"case",
"2",
":",
"problem",
"=",
"new",
"Layout2Problem",
"(",
"heuristic",
")",
";",
"break",
";",
"case",
"3",
":",
"problem",
"=",
"new",
"Layout3Problem",
"(",
"heuristic",
")",
";",
"case",
"4",
":",
"problem",
"=",
"new",
"Layout4Problem",
"(",
"heuristic",
")",
";",
"default",
":",
"break",
";",
"}",
"return",
"problem",
";",
"}",
"}",
"</s>"
] |
11,752 | [
"<s>",
"package",
"g4",
";",
"import",
"gps",
".",
"api",
".",
"GPSState",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Board",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Pair",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Tile",
";",
"public",
"class",
"MahjongGPSState",
"implements",
"GPSState",
"{",
"private",
"Board",
"board",
";",
"private",
"Pair",
"move",
";",
"@",
"Override",
"public",
"boolean",
"compare",
"(",
"GPSState",
"state",
")",
"{",
"MahjongGPSState",
"other",
"=",
"(",
"MahjongGPSState",
")",
"state",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"other",
".",
"getBoard",
"(",
")",
".",
"getLayerCount",
"(",
")",
";",
"i",
"++",
")",
"{",
"for",
"(",
"int",
"j",
"=",
"0",
";",
"j",
"<",
"other",
".",
"getBoard",
"(",
")",
".",
"getRowCount",
"(",
")",
";",
"j",
"++",
")",
"{",
"for",
"(",
"int",
"k",
"=",
"0",
";",
"k",
"<",
"other",
".",
"getBoard",
"(",
")",
".",
"getColumnCount",
"(",
")",
";",
"k",
"++",
")",
"{",
"Tile",
"tile1",
"=",
"other",
".",
"getBoard",
"(",
")",
".",
"getItem",
"(",
"i",
",",
"j",
",",
"k",
")",
";",
"Tile",
"tile2",
"=",
"board",
".",
"getItem",
"(",
"i",
",",
"j",
",",
"k",
")",
";",
"if",
"(",
"tile1",
"==",
"null",
"&&",
"tile2",
"!=",
"null",
")",
"{",
"return",
"false",
";",
"}",
"else",
"if",
"(",
"tile1",
"!=",
"null",
"&&",
"tile2",
"==",
"null",
")",
"{",
"return",
"false",
";",
"}",
"else",
"if",
"(",
"tile1",
"==",
"null",
"&&",
"tile2",
"==",
"null",
")",
"{",
"continue",
";",
"}",
"else",
"{",
"if",
"(",
"!",
"tile1",
".",
"equals",
"(",
"tile2",
")",
")",
"{",
"return",
"false",
";",
"}",
"}",
"}",
"}",
"}",
"return",
"true",
";",
"}",
"public",
"void",
"setBoard",
"(",
"Board",
"board",
")",
"{",
"this",
".",
"board",
"=",
"board",
";",
"}",
"public",
"Board",
"getBoard",
"(",
")",
"{",
"return",
"board",
";",
"}",
"@",
"Override",
"public",
"String",
"toString",
"(",
")",
"{",
"return",
"\"\"",
"+",
"board",
".",
"toString",
"(",
")",
";",
"}",
"@",
"Override",
"protected",
"Object",
"clone",
"(",
")",
"throws",
"CloneNotSupportedException",
"{",
"MahjongGPSState",
"clone",
"=",
"new",
"MahjongGPSState",
"(",
")",
";",
"Board",
"board",
"=",
"(",
"Board",
")",
"this",
".",
"board",
".",
"clone",
"(",
")",
";",
"clone",
".",
"setBoard",
"(",
"board",
")",
";",
"return",
"clone",
";",
"}",
"public",
"Pair",
"getMove",
"(",
")",
"{",
"return",
"move",
";",
"}",
"public",
"void",
"setMove",
"(",
"Pair",
"move",
")",
"{",
"this",
".",
"move",
"=",
"move",
";",
"}",
"}",
"</s>"
] |
11,753 | [
"<s>",
"package",
"g4",
".",
"layouts",
".",
"layout2",
";",
"import",
"g4",
".",
"MahjongGPSState",
";",
"import",
"g4",
".",
"MahjongProblem",
";",
"import",
"g4",
".",
"heuristics",
".",
"Heuristic",
";",
"import",
"gps",
".",
"api",
".",
"GPSState",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Board",
";",
"public",
"class",
"Layout2Problem",
"extends",
"MahjongProblem",
"{",
"public",
"Layout2Problem",
"(",
"Heuristic",
"heuristic1",
")",
"{",
"this",
".",
"heuristic",
"=",
"heuristic1",
";",
"}",
"@",
"Override",
"public",
"GPSState",
"getInitState",
"(",
")",
"{",
"MahjongGPSState",
"gpsState",
"=",
"new",
"MahjongGPSState",
"(",
")",
";",
"Board",
"board",
"=",
"new",
"Board",
"(",
"new",
"Layout2",
"(",
")",
")",
";",
"Layout2Arrange",
"arrange",
"=",
"new",
"Layout2Arrange",
"(",
")",
";",
"arrange",
".",
"arrange",
"(",
"board",
")",
";",
"gpsState",
".",
"setBoard",
"(",
"board",
")",
";",
"assert",
"(",
"board",
".",
"getPayersCount",
"(",
")",
">",
"0",
")",
";",
"return",
"gpsState",
";",
"}",
"@",
"Override",
"public",
"GPSState",
"getGoalState",
"(",
")",
"{",
"MahjongGPSState",
"gpsState",
"=",
"new",
"MahjongGPSState",
"(",
")",
";",
"Board",
"board",
"=",
"new",
"Board",
"(",
"new",
"Layout2",
"(",
")",
")",
";",
"gpsState",
".",
"setBoard",
"(",
"board",
")",
";",
"assert",
"(",
"board",
".",
"getPayersCount",
"(",
")",
"==",
"0",
")",
";",
"return",
"gpsState",
";",
"}",
"}",
"</s>"
] |
11,754 | [
"<s>",
"package",
"g4",
".",
"layouts",
".",
"layout2",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Board",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"IArrangeStrategy",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Position",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Tile",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"TileKind",
";",
"public",
"class",
"Layout2Arrange",
"implements",
"IArrangeStrategy",
"{",
"@",
"Override",
"public",
"void",
"arrange",
"(",
"Board",
"board",
")",
"{",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"0",
",",
"7",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"5",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"0",
",",
"9",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"7",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"0",
",",
"19",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"0",
",",
"21",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"6",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"2",
",",
"4",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"5",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"2",
",",
"6",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"2",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"2",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"8",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"2",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"2",
",",
"16",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dragon",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"2",
",",
"18",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"2",
",",
"20",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"2",
",",
"22",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"2",
",",
"24",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"4",
",",
"3",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dragon",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"4",
",",
"5",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"4",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"8",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"4",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"6",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"4",
",",
"16",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"4",
",",
"18",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"5",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"4",
",",
"22",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"4",
",",
"24",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"8",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"6",
",",
"0",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"7",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"6",
",",
"2",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"6",
",",
"4",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"6",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"6",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"7",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"6",
",",
"16",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"6",
",",
"18",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"9",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"6",
",",
"22",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"6",
",",
"24",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dragon",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"8",
",",
"0",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"7",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"8",
",",
"2",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"8",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dragon",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"8",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"8",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"7",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"8",
",",
"16",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"8",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"8",
",",
"18",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"7",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"8",
",",
"22",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Flower",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"8",
",",
"24",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dragon",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"9",
",",
"26",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"9",
",",
"28",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"9",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"10",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"10",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"8",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"10",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"10",
",",
"14",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"6",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"10",
",",
"16",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"10",
",",
"18",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"6",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"10",
",",
"22",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"5",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"10",
",",
"24",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"12",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"9",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"12",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dragon",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"12",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"12",
",",
"14",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Flower",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"12",
",",
"16",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"12",
",",
"18",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"5",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"14",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"9",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"14",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"14",
",",
"14",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"5",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"14",
",",
"16",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"5",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"0",
",",
"7",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"0",
",",
"9",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"0",
",",
"19",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dragon",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"0",
",",
"21",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"6",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"2",
",",
"4",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dragon",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"2",
",",
"6",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"6",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"2",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"2",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"2",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"2",
",",
"16",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"5",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"2",
",",
"18",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"2",
",",
"20",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"9",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"2",
",",
"22",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"8",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"2",
",",
"24",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"4",
",",
"3",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"4",
",",
"5",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"4",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"9",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"4",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"8",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"4",
",",
"16",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"4",
",",
"18",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"4",
",",
"22",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"4",
",",
"24",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Flower",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"6",
",",
"0",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"6",
",",
"2",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"6",
",",
"4",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"8",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"6",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Season",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"6",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"6",
",",
"16",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"8",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"6",
",",
"18",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"6",
",",
"22",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dragon",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"6",
",",
"24",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"8",
",",
"0",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"8",
",",
"2",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Season",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"8",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"8",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"7",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"8",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"8",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"8",
",",
"16",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"8",
",",
"18",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"5",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"8",
",",
"22",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"7",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"8",
",",
"24",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"6",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"9",
",",
"26",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"6",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"10",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"6",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"10",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"9",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"10",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"9",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"10",
",",
"14",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"8",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"10",
",",
"16",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"10",
",",
"18",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"10",
",",
"22",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"9",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"10",
",",
"24",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"12",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"12",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"7",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"12",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"9",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"12",
",",
"14",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"12",
",",
"16",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"9",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"12",
",",
"18",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"7",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"14",
",",
"11",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dragon",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"14",
",",
"13",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dragon",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"14",
",",
"15",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"4",
",",
"11",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"4",
",",
"17",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"7",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"6",
",",
"11",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"5",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"6",
",",
"17",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"5",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"7",
",",
"1",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"8",
",",
"11",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"8",
",",
"17",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"10",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Season",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"10",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dragon",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"10",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Season",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"10",
",",
"14",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"10",
",",
"16",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"6",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"10",
",",
"18",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"5",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"12",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"7",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"12",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"6",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"12",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"9",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"12",
",",
"14",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"8",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"12",
",",
"16",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Flower",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"12",
",",
"18",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"6",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"14",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"14",
",",
"14",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"3",
",",
"11",
",",
"9",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"3",
",",
"11",
",",
"11",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"3",
",",
"11",
",",
"13",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"3",
",",
"11",
",",
"15",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"3",
",",
"11",
",",
"17",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"4",
")",
")",
";",
"}",
"}",
"</s>"
] |
11,755 | [
"<s>",
"package",
"g4",
".",
"layouts",
".",
"layout2",
";",
"import",
"java",
".",
"util",
".",
"ArrayList",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Layout",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Position",
";",
"public",
"class",
"Layout2",
"extends",
"Layout",
"{",
"private",
"static",
"final",
"long",
"serialVersionUID",
"=",
"1L",
";",
"public",
"Layout2",
"(",
")",
"{",
"name",
"=",
"\"Layout2\"",
";",
"layerCount",
"=",
"4",
";",
"rowCount",
"=",
"16",
";",
"columnCount",
"=",
"30",
";",
"positions",
"=",
"new",
"ArrayList",
"<",
"Position",
">",
"(",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"0",
",",
"7",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"0",
",",
"9",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"0",
",",
"19",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"0",
",",
"21",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"2",
",",
"4",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"2",
",",
"6",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"2",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"2",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"2",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"2",
",",
"16",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"2",
",",
"18",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"2",
",",
"20",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"2",
",",
"22",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"2",
",",
"24",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"4",
",",
"3",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"4",
",",
"5",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"4",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"4",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"4",
",",
"16",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"4",
",",
"18",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"4",
",",
"22",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"4",
",",
"24",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"6",
",",
"0",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"6",
",",
"2",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"6",
",",
"4",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"6",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"6",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"6",
",",
"16",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"6",
",",
"18",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"6",
",",
"22",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"6",
",",
"24",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"8",
",",
"0",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"8",
",",
"2",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"8",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"8",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"8",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"8",
",",
"16",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"8",
",",
"18",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"8",
",",
"22",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"8",
",",
"24",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"9",
",",
"26",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"9",
",",
"28",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"10",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"10",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"10",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"10",
",",
"14",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"10",
",",
"16",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"10",
",",
"18",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"10",
",",
"22",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"10",
",",
"24",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"12",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"12",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"12",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"12",
",",
"14",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"12",
",",
"16",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"12",
",",
"18",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"14",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"14",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"14",
",",
"14",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"14",
",",
"16",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"0",
",",
"7",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"0",
",",
"9",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"0",
",",
"19",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"0",
",",
"21",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"2",
",",
"4",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"2",
",",
"6",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"2",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"2",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"2",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"2",
",",
"16",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"2",
",",
"18",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"2",
",",
"20",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"2",
",",
"22",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"2",
",",
"24",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"4",
",",
"3",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"4",
",",
"5",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"4",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"4",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"4",
",",
"16",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"4",
",",
"18",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"4",
",",
"22",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"4",
",",
"24",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"6",
",",
"0",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"6",
",",
"2",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"6",
",",
"4",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"6",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"6",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"6",
",",
"16",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"6",
",",
"18",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"6",
",",
"22",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"6",
",",
"24",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"8",
",",
"0",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"8",
",",
"2",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"8",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"8",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"8",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"8",
",",
"16",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"8",
",",
"18",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"8",
",",
"22",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"8",
",",
"24",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"9",
",",
"26",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"10",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"10",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"10",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"10",
",",
"14",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"10",
",",
"16",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"10",
",",
"18",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"10",
",",
"22",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"10",
",",
"24",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"12",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"12",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"12",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"12",
",",
"14",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"12",
",",
"16",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"12",
",",
"18",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"14",
",",
"11",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"14",
",",
"13",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"14",
",",
"15",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"4",
",",
"11",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"4",
",",
"17",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"6",
",",
"11",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"6",
",",
"17",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"7",
",",
"1",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"8",
",",
"11",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"8",
",",
"17",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"10",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"10",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"10",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"10",
",",
"14",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"10",
",",
"16",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"10",
",",
"18",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"12",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"12",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"12",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"12",
",",
"14",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"12",
",",
"16",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"12",
",",
"18",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"14",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"14",
",",
"14",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"3",
",",
"11",
",",
"9",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"3",
",",
"11",
",",
"11",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"3",
",",
"11",
",",
"13",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"3",
",",
"11",
",",
"15",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"3",
",",
"11",
",",
"17",
")",
")",
";",
"}",
"}",
"</s>"
] |
11,756 | [
"<s>",
"package",
"g4",
".",
"layouts",
".",
"layout4",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Board",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"IArrangeStrategy",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Position",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Tile",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"TileKind",
";",
"public",
"class",
"Layout4Arrange",
"implements",
"IArrangeStrategy",
"{",
"@",
"Override",
"public",
"void",
"arrange",
"(",
"Board",
"board",
")",
"{",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"1",
",",
"14",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"3",
",",
"14",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"5",
",",
"14",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"7",
",",
"14",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"21",
",",
"14",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"23",
",",
"14",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"25",
",",
"14",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"27",
",",
"14",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"1",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"5",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"3",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"5",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"5",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"6",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"7",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"6",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"9",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"7",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"12",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"7",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"14",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"8",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"16",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"8",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"19",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"9",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"21",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"9",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"23",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"25",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"27",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"1",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"3",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"5",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"9",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"11",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"13",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"5",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"15",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"5",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"17",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"6",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"19",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"6",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"23",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"7",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"25",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"7",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"27",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"8",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"1",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"8",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"3",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"9",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"5",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"9",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"7",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"9",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"11",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"13",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"15",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"17",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"19",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"21",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"23",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"5",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"25",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"5",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"27",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"6",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"11",
",",
"6",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"6",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"13",
",",
"6",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"7",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"15",
",",
"6",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"7",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"17",
",",
"6",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"8",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"12",
",",
"4",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"8",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"14",
",",
"4",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"9",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"16",
",",
"4",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"9",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"7",
",",
"2",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"9",
",",
"2",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"11",
",",
"2",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"13",
",",
"2",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"15",
",",
"2",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"17",
",",
"2",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"19",
",",
"2",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"21",
",",
"2",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"13",
",",
"0",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dragon",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"15",
",",
"0",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dragon",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"3",
",",
"14",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dragon",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"5",
",",
"14",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dragon",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"23",
",",
"14",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dragon",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"25",
",",
"14",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dragon",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"1",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Flower",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"3",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Flower",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"5",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Season",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"7",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Season",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"9",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"12",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"14",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"16",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"19",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"21",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"23",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"25",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"27",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"5",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"1",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"5",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"3",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"6",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"5",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"6",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"9",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"7",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"11",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"7",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"13",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"8",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"15",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"8",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"17",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"9",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"19",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"9",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"23",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"25",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"27",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"3",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"5",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"7",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"11",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"13",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"15",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"5",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"17",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"5",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"21",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"6",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"23",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"6",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"25",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"7",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"11",
",",
"6",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"7",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"13",
",",
"6",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"8",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"15",
",",
"6",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"8",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"17",
",",
"6",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"9",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"12",
",",
"4",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"9",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"14",
",",
"4",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"16",
",",
"4",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"13",
",",
"2",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"15",
",",
"2",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"14",
",",
"0",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"3",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"5",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"23",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"25",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"5",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"1",
",",
"11",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"5",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"27",
",",
"11",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"6",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"3",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"6",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"5",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"7",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"11",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"7",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"13",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"8",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"15",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"8",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"17",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"9",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"23",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"9",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"25",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"4",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"11",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"13",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"15",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"17",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"24",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"11",
",",
"6",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"13",
",",
"6",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dragon",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"15",
",",
"6",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dragon",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"17",
",",
"6",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dragon",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"3",
",",
"4",
",",
"11",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dragon",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"3",
",",
"24",
",",
"11",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dragon",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"3",
",",
"13",
",",
"9",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dragon",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"3",
",",
"15",
",",
"9",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Flower",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"3",
",",
"13",
",",
"7",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Flower",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"3",
",",
"15",
",",
"7",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Season",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"4",
",",
"14",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Season",
",",
"4",
")",
")",
";",
"}",
"}",
"</s>"
] |
11,757 | [
"<s>",
"package",
"g4",
".",
"layouts",
".",
"layout4",
";",
"import",
"g4",
".",
"MahjongGPSState",
";",
"import",
"g4",
".",
"MahjongProblem",
";",
"import",
"g4",
".",
"heuristics",
".",
"Heuristic",
";",
"import",
"gps",
".",
"api",
".",
"GPSState",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Board",
";",
"public",
"class",
"Layout4Problem",
"extends",
"MahjongProblem",
"{",
"public",
"Layout4Problem",
"(",
"Heuristic",
"heuristic1",
")",
"{",
"this",
".",
"heuristic",
"=",
"heuristic1",
";",
"}",
"@",
"Override",
"public",
"GPSState",
"getInitState",
"(",
")",
"{",
"MahjongGPSState",
"gpsState",
"=",
"new",
"MahjongGPSState",
"(",
")",
";",
"Board",
"board",
"=",
"new",
"Board",
"(",
"new",
"Layout4",
"(",
")",
")",
";",
"Layout4Arrange",
"arrange",
"=",
"new",
"Layout4Arrange",
"(",
")",
";",
"arrange",
".",
"arrange",
"(",
"board",
")",
";",
"gpsState",
".",
"setBoard",
"(",
"board",
")",
";",
"if",
"(",
"board",
".",
"getPayersCount",
"(",
")",
"==",
"0",
")",
"{",
"System",
".",
"out",
".",
"println",
"(",
"\"\"",
")",
";",
"return",
"null",
";",
"}",
"if",
"(",
"!",
"board",
".",
"isValid",
"(",
")",
")",
"{",
"return",
"null",
";",
"}",
"return",
"gpsState",
";",
"}",
"@",
"Override",
"public",
"GPSState",
"getGoalState",
"(",
")",
"{",
"MahjongGPSState",
"gpsState",
"=",
"new",
"MahjongGPSState",
"(",
")",
";",
"Board",
"board",
"=",
"new",
"Board",
"(",
"new",
"Layout4",
"(",
")",
")",
";",
"gpsState",
".",
"setBoard",
"(",
"board",
")",
";",
"assert",
"(",
"board",
".",
"getPayersCount",
"(",
")",
"==",
"0",
")",
";",
"return",
"gpsState",
";",
"}",
"}",
"</s>"
] |
11,758 | [
"<s>",
"package",
"g4",
".",
"layouts",
".",
"layout4",
";",
"import",
"java",
".",
"util",
".",
"ArrayList",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Layout",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Position",
";",
"public",
"class",
"Layout4",
"extends",
"Layout",
"{",
"private",
"static",
"final",
"long",
"serialVersionUID",
"=",
"1L",
";",
"public",
"Layout4",
"(",
")",
"{",
"name",
"=",
"\"Layout4\"",
";",
"layerCount",
"=",
"5",
";",
"rowCount",
"=",
"30",
";",
"columnCount",
"=",
"16",
";",
"positions",
"=",
"new",
"ArrayList",
"<",
"Position",
">",
"(",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"1",
",",
"14",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"3",
",",
"14",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"5",
",",
"14",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"7",
",",
"14",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"21",
",",
"14",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"23",
",",
"14",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"25",
",",
"14",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"27",
",",
"14",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"1",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"3",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"5",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"7",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"9",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"12",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"14",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"16",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"19",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"21",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"23",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"25",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"27",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"1",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"3",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"5",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"9",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"11",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"13",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"15",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"17",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"19",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"23",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"25",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"27",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"1",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"3",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"5",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"7",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"9",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"11",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"13",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"15",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"17",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"19",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"21",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"23",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"25",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"27",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"11",
",",
"6",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"13",
",",
"6",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"15",
",",
"6",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"17",
",",
"6",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"12",
",",
"4",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"14",
",",
"4",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"16",
",",
"4",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"7",
",",
"2",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"9",
",",
"2",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"11",
",",
"2",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"13",
",",
"2",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"15",
",",
"2",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"17",
",",
"2",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"19",
",",
"2",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"21",
",",
"2",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"13",
",",
"0",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"15",
",",
"0",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"3",
",",
"14",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"5",
",",
"14",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"23",
",",
"14",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"25",
",",
"14",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"1",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"3",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"5",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"7",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"9",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"12",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"14",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"16",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"19",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"21",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"23",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"25",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"27",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"1",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"3",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"5",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"9",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"11",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"13",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"15",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"17",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"19",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"23",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"25",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"27",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"3",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"5",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"7",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"11",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"13",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"15",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"17",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"21",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"23",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"25",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"11",
",",
"6",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"13",
",",
"6",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"15",
",",
"6",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"17",
",",
"6",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"12",
",",
"4",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"14",
",",
"4",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"16",
",",
"4",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"13",
",",
"2",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"15",
",",
"2",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"14",
",",
"0",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"3",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"5",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"23",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"25",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"1",
",",
"11",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"27",
",",
"11",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"3",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"5",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"11",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"13",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"15",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"17",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"23",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"25",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"4",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"11",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"13",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"15",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"17",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"24",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"11",
",",
"6",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"13",
",",
"6",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"15",
",",
"6",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"17",
",",
"6",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"3",
",",
"4",
",",
"11",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"3",
",",
"24",
",",
"11",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"3",
",",
"13",
",",
"9",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"3",
",",
"15",
",",
"9",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"3",
",",
"13",
",",
"7",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"3",
",",
"15",
",",
"7",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"4",
",",
"14",
",",
"8",
")",
")",
";",
"}",
"}",
"</s>"
] |
11,759 | [
"<s>",
"package",
"g4",
".",
"layouts",
".",
"layout1",
";",
"import",
"java",
".",
"util",
".",
"ArrayList",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Layout",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Position",
";",
"public",
"class",
"Layout1",
"extends",
"Layout",
"{",
"private",
"static",
"final",
"long",
"serialVersionUID",
"=",
"1L",
";",
"public",
"Layout1",
"(",
")",
"{",
"name",
"=",
"\"Layout1\"",
";",
"layerCount",
"=",
"4",
";",
"rowCount",
"=",
"5",
";",
"columnCount",
"=",
"7",
";",
"positions",
"=",
"new",
"ArrayList",
"<",
"Position",
">",
"(",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"0",
",",
"0",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"2",
",",
"0",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"0",
",",
"2",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"2",
",",
"2",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"1",
",",
"4",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"1",
",",
"1",
",",
"4",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"2",
",",
"1",
",",
"4",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"3",
",",
"1",
",",
"4",
")",
")",
";",
"}",
"}",
"</s>"
] |
11,760 | [
"<s>",
"package",
"g4",
".",
"layouts",
".",
"layout1",
";",
"import",
"g4",
".",
"MahjongGPSState",
";",
"import",
"g4",
".",
"MahjongProblem",
";",
"import",
"g4",
".",
"heuristics",
".",
"Heuristic",
";",
"import",
"gps",
".",
"api",
".",
"GPSState",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Board",
";",
"public",
"class",
"Layout1Problem",
"extends",
"MahjongProblem",
"{",
"public",
"Layout1Problem",
"(",
"Heuristic",
"heuristic1",
")",
"{",
"this",
".",
"heuristic",
"=",
"heuristic1",
";",
"}",
"@",
"Override",
"public",
"GPSState",
"getInitState",
"(",
")",
"{",
"MahjongGPSState",
"gpsState",
"=",
"new",
"MahjongGPSState",
"(",
")",
";",
"Board",
"board",
"=",
"new",
"Board",
"(",
"new",
"Layout1",
"(",
")",
")",
";",
"Layout1Arrange",
"arrange",
"=",
"new",
"Layout1Arrange",
"(",
")",
";",
"arrange",
".",
"arrange",
"(",
"board",
")",
";",
"gpsState",
".",
"setBoard",
"(",
"board",
")",
";",
"if",
"(",
"board",
".",
"getPayersCount",
"(",
")",
"==",
"0",
")",
"{",
"System",
".",
"out",
".",
"println",
"(",
"\"\"",
")",
";",
"return",
"null",
";",
"}",
"if",
"(",
"!",
"board",
".",
"isValid",
"(",
")",
")",
"{",
"return",
"null",
";",
"}",
"return",
"gpsState",
";",
"}",
"@",
"Override",
"public",
"GPSState",
"getGoalState",
"(",
")",
"{",
"MahjongGPSState",
"gpsState",
"=",
"new",
"MahjongGPSState",
"(",
")",
";",
"Board",
"board",
"=",
"new",
"Board",
"(",
"new",
"Layout1",
"(",
")",
")",
";",
"gpsState",
".",
"setBoard",
"(",
"board",
")",
";",
"assert",
"(",
"board",
".",
"getPayersCount",
"(",
")",
"==",
"0",
")",
";",
"return",
"gpsState",
";",
"}",
"}",
"</s>"
] |
11,761 | [
"<s>",
"package",
"g4",
".",
"layouts",
".",
"layout1",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Board",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"IArrangeStrategy",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Position",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Tile",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"TileKind",
";",
"public",
"class",
"Layout1Arrange",
"implements",
"IArrangeStrategy",
"{",
"@",
"Override",
"public",
"void",
"arrange",
"(",
"Board",
"board",
")",
"{",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"0",
",",
"0",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"2",
",",
"0",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"0",
",",
"2",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"2",
",",
"2",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"1",
",",
"4",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"1",
",",
"1",
",",
"4",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"2",
",",
"1",
",",
"4",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"3",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"3",
",",
"1",
",",
"4",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"1",
")",
")",
";",
"}",
"}",
"</s>"
] |
11,762 | [
"<s>",
"package",
"g4",
".",
"layouts",
".",
"layout3",
";",
"import",
"java",
".",
"util",
".",
"ArrayList",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Layout",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Position",
";",
"public",
"class",
"Layout3",
"extends",
"Layout",
"{",
"private",
"static",
"final",
"long",
"serialVersionUID",
"=",
"1L",
";",
"public",
"Layout3",
"(",
")",
"{",
"name",
"=",
"\"Layout1\"",
";",
"layerCount",
"=",
"1",
";",
"rowCount",
"=",
"14",
";",
"columnCount",
"=",
"14",
";",
"positions",
"=",
"new",
"ArrayList",
"<",
"Position",
">",
"(",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"0",
",",
"0",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"2",
",",
"0",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"4",
",",
"0",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"8",
",",
"0",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"10",
",",
"0",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"12",
",",
"0",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"0",
",",
"2",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"8",
",",
"4",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"12",
",",
"4",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"6",
",",
"6",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"10",
",",
"6",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"12",
",",
"6",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"6",
",",
"8",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"2",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"4",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"8",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"12",
",",
"10",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"0",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"6",
",",
"12",
")",
")",
";",
"positions",
".",
"add",
"(",
"new",
"Position",
"(",
"0",
",",
"10",
",",
"12",
")",
")",
";",
"}",
"}",
"</s>"
] |
11,763 | [
"<s>",
"package",
"g4",
".",
"layouts",
".",
"layout3",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Board",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"IArrangeStrategy",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Position",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Tile",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"TileKind",
";",
"public",
"class",
"Layout3Arrange",
"implements",
"IArrangeStrategy",
"{",
"@",
"Override",
"public",
"void",
"arrange",
"(",
"Board",
"board",
")",
"{",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"0",
",",
"0",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"2",
",",
"0",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"4",
",",
"0",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"5",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"8",
",",
"0",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"10",
",",
"0",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"12",
",",
"0",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"5",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"0",
",",
"2",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"8",
",",
"4",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"2",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"12",
",",
"4",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"6",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"6",
",",
"6",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"10",
",",
"6",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"8",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"12",
",",
"6",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"6",
",",
"8",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"2",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"4",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"4",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"6",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"8",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"8",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"12",
",",
"10",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"0",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"6",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dragon",
",",
"1",
")",
")",
";",
"board",
".",
"setItem",
"(",
"new",
"Position",
"(",
"0",
",",
"10",
",",
"12",
")",
",",
"new",
"Tile",
"(",
"TileKind",
".",
"Dragon",
",",
"1",
")",
")",
";",
"}",
"}",
"</s>"
] |
11,764 | [
"<s>",
"package",
"g4",
".",
"layouts",
".",
"layout3",
";",
"import",
"g4",
".",
"MahjongGPSState",
";",
"import",
"g4",
".",
"MahjongProblem",
";",
"import",
"g4",
".",
"heuristics",
".",
"Heuristic",
";",
"import",
"gps",
".",
"api",
".",
"GPSState",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Board",
";",
"public",
"class",
"Layout3Problem",
"extends",
"MahjongProblem",
"{",
"public",
"Layout3Problem",
"(",
"Heuristic",
"heuristic1",
")",
"{",
"this",
".",
"heuristic",
"=",
"heuristic1",
";",
"}",
"@",
"Override",
"public",
"GPSState",
"getInitState",
"(",
")",
"{",
"MahjongGPSState",
"gpsState",
"=",
"new",
"MahjongGPSState",
"(",
")",
";",
"Board",
"board",
"=",
"new",
"Board",
"(",
"new",
"Layout3",
"(",
")",
")",
";",
"Layout3Arrange",
"arrange",
"=",
"new",
"Layout3Arrange",
"(",
")",
";",
"arrange",
".",
"arrange",
"(",
"board",
")",
";",
"gpsState",
".",
"setBoard",
"(",
"board",
")",
";",
"if",
"(",
"board",
".",
"getPayersCount",
"(",
")",
"==",
"0",
")",
"{",
"System",
".",
"out",
".",
"println",
"(",
"\"\"",
")",
";",
"return",
"null",
";",
"}",
"if",
"(",
"!",
"board",
".",
"isValid",
"(",
")",
")",
"{",
"return",
"null",
";",
"}",
"return",
"gpsState",
";",
"}",
"@",
"Override",
"public",
"GPSState",
"getGoalState",
"(",
")",
"{",
"MahjongGPSState",
"gpsState",
"=",
"new",
"MahjongGPSState",
"(",
")",
";",
"Board",
"board",
"=",
"new",
"Board",
"(",
"new",
"Layout3",
"(",
")",
")",
";",
"gpsState",
".",
"setBoard",
"(",
"board",
")",
";",
"assert",
"(",
"board",
".",
"getPayersCount",
"(",
")",
"==",
"0",
")",
";",
"return",
"gpsState",
";",
"}",
"}",
"</s>"
] |
11,765 | [
"<s>",
"package",
"gps",
".",
"api",
";",
"import",
"java",
".",
"util",
".",
"List",
";",
"public",
"interface",
"GPSProblem",
"{",
"GPSState",
"getInitState",
"(",
")",
";",
"GPSState",
"getGoalState",
"(",
")",
";",
"List",
"<",
"GPSRule",
">",
"getRules",
"(",
"GPSState",
"state",
")",
";",
"float",
"getHValue",
"(",
"GPSState",
"state",
")",
";",
"}",
"</s>"
] |
11,766 | [
"<s>",
"package",
"gps",
".",
"api",
";",
"import",
"gps",
".",
"exception",
".",
"NotAppliableException",
";",
"public",
"interface",
"GPSRule",
"{",
"float",
"getCost",
"(",
")",
";",
"String",
"getName",
"(",
")",
";",
"GPSState",
"evalRule",
"(",
"GPSState",
"state",
")",
"throws",
"NotAppliableException",
";",
"}",
"</s>"
] |
11,767 | [
"<s>",
"package",
"gps",
".",
"api",
";",
"public",
"interface",
"GPSState",
"{",
"boolean",
"compare",
"(",
"GPSState",
"state",
")",
";",
"}",
"</s>"
] |
11,768 | [
"<s>",
"package",
"gps",
".",
"exception",
";",
"public",
"class",
"NotAppliableException",
"extends",
"Exception",
"{",
"private",
"static",
"final",
"long",
"serialVersionUID",
"=",
"1L",
";",
"}",
"</s>"
] |
11,769 | [
"<s>",
"package",
"gps",
";",
"import",
"g4",
".",
"MahjongGPSState",
";",
"import",
"gps",
".",
"api",
".",
"GPSProblem",
";",
"import",
"gps",
".",
"api",
".",
"GPSRule",
";",
"import",
"gps",
".",
"api",
".",
"GPSState",
";",
"import",
"gps",
".",
"exception",
".",
"NotAppliableException",
";",
"import",
"java",
".",
"util",
".",
"ArrayList",
";",
"import",
"java",
".",
"util",
".",
"LinkedList",
";",
"import",
"java",
".",
"util",
".",
"List",
";",
"public",
"abstract",
"class",
"GPSEngine",
"{",
"private",
"static",
"final",
"long",
"TIME_LIMIT",
"=",
"1000",
"*",
"60",
"*",
"5",
";",
"protected",
"List",
"<",
"GPSNode",
">",
"open",
"=",
"new",
"LinkedList",
"<",
"GPSNode",
">",
"(",
")",
";",
"protected",
"List",
"<",
"GPSNode",
">",
"closed",
"=",
"new",
"ArrayList",
"<",
"GPSNode",
">",
"(",
")",
";",
"protected",
"GPSProblem",
"problem",
";",
"protected",
"GPSNode",
"rootNode",
";",
"protected",
"SearchStrategy",
"strategy",
";",
"public",
"void",
"engine",
"(",
"GPSProblem",
"myProblem",
",",
"SearchStrategy",
"myStrategy",
")",
"{",
"problem",
"=",
"myProblem",
";",
"strategy",
"=",
"myStrategy",
";",
"rootNode",
"=",
"new",
"GPSNode",
"(",
"problem",
".",
"getInitState",
"(",
")",
",",
"0",
")",
";",
"boolean",
"finished",
"=",
"false",
";",
"boolean",
"failed",
"=",
"false",
";",
"boolean",
"timeUp",
"=",
"false",
";",
"long",
"start",
"=",
"System",
".",
"currentTimeMillis",
"(",
")",
";",
"long",
"explosionCounter",
"=",
"0",
";",
"GPSNode",
"currentNode",
"=",
"null",
";",
"open",
".",
"add",
"(",
"rootNode",
")",
";",
"while",
"(",
"!",
"failed",
"&&",
"!",
"finished",
"&&",
"!",
"timeUp",
")",
"{",
"if",
"(",
"open",
".",
"size",
"(",
")",
"<=",
"0",
")",
"{",
"failed",
"=",
"true",
";",
"}",
"else",
"{",
"currentNode",
"=",
"open",
".",
"get",
"(",
"0",
")",
";",
"closed",
".",
"add",
"(",
"currentNode",
")",
";",
"open",
".",
"remove",
"(",
"0",
")",
";",
"if",
"(",
"isGoal",
"(",
"currentNode",
")",
")",
"{",
"finished",
"=",
"true",
";",
"System",
".",
"out",
".",
"println",
"(",
"currentNode",
".",
"getSolution",
"(",
")",
")",
";",
"currentNode",
".",
"printDiff",
"(",
")",
";",
"System",
".",
"out",
".",
"println",
"(",
"\"\"",
"+",
"currentNode",
".",
"getHeight",
"(",
"0",
")",
")",
";",
"System",
".",
"out",
".",
"println",
"(",
"\"\"",
"+",
"open",
".",
"size",
"(",
")",
")",
";",
"System",
".",
"out",
".",
"println",
"(",
"\"\"",
"+",
"closed",
".",
"size",
"(",
")",
")",
";",
"System",
".",
"out",
".",
"println",
"(",
"\"\"",
"+",
"explosionCounter",
")",
";",
"}",
"else",
"{",
"explosionCounter",
"++",
";",
"explode",
"(",
"currentNode",
")",
";",
"}",
"}",
"if",
"(",
"(",
"System",
".",
"currentTimeMillis",
"(",
")",
"-",
"start",
")",
">=",
"TIME_LIMIT",
")",
"{",
"timeUp",
"=",
"true",
";",
"}",
"}",
"if",
"(",
"finished",
")",
"{",
"System",
".",
"out",
".",
"println",
"(",
"\"time:",
"\"",
"+",
"(",
"System",
".",
"currentTimeMillis",
"(",
")",
"-",
"start",
")",
")",
";",
"System",
".",
"out",
".",
"println",
"(",
"\"\"",
")",
";",
"}",
"else",
"if",
"(",
"failed",
")",
"{",
"System",
".",
"err",
".",
"println",
"(",
"\"\"",
")",
";",
"}",
"else",
"if",
"(",
"timeUp",
")",
"{",
"System",
".",
"err",
".",
"println",
"(",
"\"Time's",
"up!\"",
")",
";",
"System",
".",
"out",
".",
"println",
"(",
"\"\"",
"+",
"open",
".",
"size",
"(",
")",
")",
";",
"System",
".",
"out",
".",
"println",
"(",
"\"\"",
"+",
"closed",
".",
"size",
"(",
")",
")",
";",
"System",
".",
"out",
".",
"println",
"(",
"\"\"",
"+",
"explosionCounter",
")",
";",
"}",
"}",
"private",
"boolean",
"isGoal",
"(",
"GPSNode",
"currentNode",
")",
"{",
"return",
"currentNode",
".",
"getState",
"(",
")",
"!=",
"null",
"&&",
"currentNode",
".",
"getState",
"(",
")",
".",
"compare",
"(",
"problem",
".",
"getGoalState",
"(",
")",
")",
";",
"}",
"private",
"boolean",
"explode",
"(",
"GPSNode",
"node",
")",
"{",
"MahjongGPSState",
"state",
"=",
"(",
"MahjongGPSState",
")",
"node",
".",
"getState",
"(",
")",
";",
"System",
".",
"out",
".",
"println",
"(",
"\"\"",
"+",
"state",
".",
"getBoard",
"(",
")",
".",
"getPayersCount",
"(",
")",
"+",
"\"\"",
"+",
"state",
".",
"getBoard",
"(",
")",
".",
"getTilesCount",
"(",
")",
")",
";",
"for",
"(",
"GPSRule",
"rule",
":",
"problem",
".",
"getRules",
"(",
"node",
".",
"getState",
"(",
")",
")",
")",
"{",
"GPSState",
"newState",
"=",
"null",
";",
"try",
"{",
"newState",
"=",
"rule",
".",
"evalRule",
"(",
"node",
".",
"getState",
"(",
")",
")",
";",
"}",
"catch",
"(",
"NotAppliableException",
"e",
")",
"{",
"}",
"if",
"(",
"newState",
"!=",
"null",
"&&",
"!",
"checkBranch",
"(",
"node",
",",
"newState",
")",
"&&",
"!",
"checkOpenAndClosed",
"(",
"node",
".",
"getCost",
"(",
")",
"+",
"rule",
".",
"getCost",
"(",
")",
",",
"newState",
")",
")",
"{",
"GPSNode",
"newNode",
"=",
"new",
"GPSNode",
"(",
"newState",
",",
"node",
".",
"getCost",
"(",
")",
"+",
"rule",
".",
"getCost",
"(",
")",
")",
";",
"newNode",
".",
"setParent",
"(",
"node",
")",
";",
"addNode",
"(",
"newNode",
")",
";",
"}",
"}",
"return",
"true",
";",
"}",
"private",
"boolean",
"checkOpenAndClosed",
"(",
"float",
"cost",
",",
"GPSState",
"state",
")",
"{",
"for",
"(",
"GPSNode",
"openNode",
":",
"open",
")",
"{",
"if",
"(",
"openNode",
".",
"getState",
"(",
")",
".",
"compare",
"(",
"state",
")",
"&&",
"openNode",
".",
"getCost",
"(",
")",
"<",
"cost",
")",
"{",
"return",
"true",
";",
"}",
"}",
"for",
"(",
"GPSNode",
"closedNode",
":",
"closed",
")",
"{",
"if",
"(",
"closedNode",
".",
"getState",
"(",
")",
".",
"compare",
"(",
"state",
")",
"&&",
"closedNode",
".",
"getCost",
"(",
")",
"<",
"cost",
")",
"{",
"return",
"true",
";",
"}",
"}",
"return",
"false",
";",
"}",
"private",
"boolean",
"checkBranch",
"(",
"GPSNode",
"parent",
",",
"GPSState",
"state",
")",
"{",
"if",
"(",
"parent",
"==",
"null",
")",
"{",
"return",
"false",
";",
"}",
"return",
"checkBranch",
"(",
"parent",
".",
"getParent",
"(",
")",
",",
"state",
")",
"||",
"state",
".",
"compare",
"(",
"parent",
".",
"getState",
"(",
")",
")",
";",
"}",
"public",
"abstract",
"void",
"addNode",
"(",
"GPSNode",
"node",
")",
";",
"}",
"</s>"
] |
11,770 | [
"<s>",
"package",
"gps",
";",
"import",
"g4",
".",
"MahjongGPSState",
";",
"import",
"gps",
".",
"api",
".",
"GPSState",
";",
"import",
"aga",
".",
"mahjong",
".",
"core",
".",
"Board",
";",
"public",
"class",
"GPSNode",
"{",
"private",
"GPSState",
"state",
";",
"private",
"GPSNode",
"parent",
";",
"private",
"float",
"cost",
";",
"private",
"Integer",
"treeLevel",
";",
"public",
"GPSNode",
"(",
"GPSState",
"state",
",",
"float",
"cost",
")",
"{",
"super",
"(",
")",
";",
"this",
".",
"state",
"=",
"state",
";",
"this",
".",
"cost",
"=",
"cost",
";",
"this",
".",
"treeLevel",
"=",
"0",
";",
"}",
"public",
"GPSNode",
"getParent",
"(",
")",
"{",
"return",
"parent",
";",
"}",
"public",
"void",
"setParent",
"(",
"GPSNode",
"parent",
")",
"{",
"this",
".",
"parent",
"=",
"parent",
";",
"if",
"(",
"parent",
"!=",
"null",
")",
"{",
"this",
".",
"treeLevel",
"=",
"parent",
".",
"getTreeLevel",
"(",
")",
"+",
"1",
";",
"}",
"}",
"public",
"GPSState",
"getState",
"(",
")",
"{",
"return",
"state",
";",
"}",
"public",
"float",
"getCost",
"(",
")",
"{",
"return",
"cost",
";",
"}",
"public",
"Integer",
"getTreeLevel",
"(",
")",
"{",
"return",
"treeLevel",
";",
"}",
"@",
"Override",
"public",
"String",
"toString",
"(",
")",
"{",
"return",
"state",
".",
"toString",
"(",
")",
";",
"}",
"public",
"int",
"getHeight",
"(",
"int",
"height",
")",
"{",
"if",
"(",
"this",
".",
"parent",
"==",
"null",
")",
"{",
"return",
"height",
";",
"}",
"return",
"this",
".",
"parent",
".",
"getHeight",
"(",
"height",
"+",
"1",
")",
";",
"}",
"public",
"String",
"getSolution",
"(",
")",
"{",
"if",
"(",
"this",
".",
"parent",
"==",
"null",
")",
"{",
"return",
"this",
".",
"state",
".",
"toString",
"(",
")",
";",
"}",
"return",
"this",
".",
"parent",
".",
"getSolution",
"(",
")",
"+",
"\"n\"",
"+",
"this",
".",
"state",
";",
"}",
"@",
"Override",
"public",
"int",
"hashCode",
"(",
")",
"{",
"final",
"int",
"prime",
"=",
"31",
";",
"int",
"result",
"=",
"1",
";",
"result",
"=",
"(",
"int",
")",
"(",
"prime",
"*",
"result",
"+",
"cost",
")",
";",
"result",
"=",
"prime",
"*",
"result",
"+",
"(",
"(",
"parent",
"==",
"null",
")",
"?",
"0",
":",
"parent",
".",
"hashCode",
"(",
")",
")",
";",
"result",
"=",
"prime",
"*",
"result",
"+",
"(",
"(",
"state",
"==",
"null",
")",
"?",
"0",
":",
"state",
".",
"hashCode",
"(",
")",
")",
";",
"return",
"result",
";",
"}",
"@",
"Override",
"public",
"boolean",
"equals",
"(",
"Object",
"obj",
")",
"{",
"if",
"(",
"this",
"==",
"obj",
")",
"return",
"true",
";",
"if",
"(",
"obj",
"==",
"null",
")",
"return",
"false",
";",
"if",
"(",
"getClass",
"(",
")",
"!=",
"obj",
".",
"getClass",
"(",
")",
")",
"return",
"false",
";",
"GPSNode",
"other",
"=",
"(",
"GPSNode",
")",
"obj",
";",
"if",
"(",
"cost",
"!=",
"other",
".",
"cost",
")",
"return",
"false",
";",
"if",
"(",
"parent",
"==",
"null",
")",
"{",
"if",
"(",
"other",
".",
"parent",
"!=",
"null",
")",
"return",
"false",
";",
"}",
"else",
"if",
"(",
"!",
"parent",
".",
"equals",
"(",
"other",
".",
"parent",
")",
")",
"return",
"false",
";",
"if",
"(",
"state",
"==",
"null",
")",
"{",
"if",
"(",
"other",
".",
"state",
"!=",
"null",
")",
"return",
"false",
";",
"}",
"else",
"if",
"(",
"!",
"state",
".",
"equals",
"(",
"other",
".",
"state",
")",
")",
"return",
"false",
";",
"return",
"true",
";",
"}",
"public",
"void",
"printDiff",
"(",
")",
"{",
"if",
"(",
"this",
".",
"parent",
"==",
"null",
")",
"{",
"return",
";",
"}",
"String",
"moved",
"=",
"Board",
".",
"getMove",
"(",
"(",
"(",
"MahjongGPSState",
")",
"this",
".",
"state",
")",
".",
"getBoard",
"(",
")",
",",
"(",
"(",
"MahjongGPSState",
")",
"this",
".",
"parent",
".",
"state",
")",
".",
"getBoard",
"(",
")",
")",
";",
"this",
".",
"parent",
".",
"printDiff",
"(",
")",
";",
"System",
".",
"out",
".",
"println",
"(",
"moved",
")",
";",
"}",
"}",
"</s>"
] |
11,771 | [
"<s>",
"package",
"gps",
";",
"public",
"enum",
"SearchStrategy",
"{",
"BFS",
"(",
"\"BFS\"",
")",
",",
"DFS",
"(",
"\"DFS\"",
")",
",",
"IterativeDepth",
"(",
"\"ITERATIVE\"",
")",
",",
"AStar",
"(",
"\"ASTAR\"",
")",
",",
"Greedy",
"(",
"\"GREEDY\"",
")",
";",
"public",
"String",
"value",
";",
"private",
"SearchStrategy",
"(",
"String",
"value",
")",
"{",
"this",
".",
"value",
"=",
"value",
";",
"}",
"public",
"static",
"SearchStrategy",
"fromString",
"(",
"String",
"text",
")",
"{",
"if",
"(",
"text",
"!=",
"null",
")",
"{",
"for",
"(",
"SearchStrategy",
"s",
":",
"SearchStrategy",
".",
"values",
"(",
")",
")",
"{",
"if",
"(",
"text",
".",
"toUpperCase",
"(",
")",
".",
"equalsIgnoreCase",
"(",
"s",
".",
"value",
")",
")",
"{",
"return",
"s",
";",
"}",
"}",
"}",
"return",
"null",
";",
"}",
"}",
"</s>"
] |
11,772 | [
"<s>",
"package",
"com",
".",
"g7",
".",
"rules",
";",
"import",
"gps",
".",
"api",
".",
"GPSRule",
";",
"import",
"gps",
".",
"api",
".",
"GPSState",
";",
"import",
"gps",
".",
"exception",
".",
"NotAppliableException",
";",
"import",
"com",
".",
"g7",
".",
"Jar",
";",
"import",
"com",
".",
"g7",
".",
"JarsState",
";",
"public",
"class",
"DropThree",
"implements",
"GPSRule",
"{",
"@",
"Override",
"public",
"GPSState",
"evalRule",
"(",
"GPSState",
"arg0",
")",
"throws",
"NotAppliableException",
"{",
"JarsState",
"oldJS",
"=",
"(",
"JarsState",
")",
"arg0",
";",
"Jar",
"[",
"]",
"jars",
"=",
"oldJS",
".",
"getJars",
"(",
")",
";",
"if",
"(",
"jars",
"[",
"2",
"]",
".",
"getUsed",
"(",
")",
"==",
"0",
")",
"{",
"throw",
"new",
"NotAppliableException",
"(",
")",
";",
"}",
"JarsState",
"newJS",
"=",
"new",
"JarsState",
"(",
"jars",
"[",
"0",
"]",
".",
"getUsed",
"(",
")",
",",
"jars",
"[",
"1",
"]",
".",
"getUsed",
"(",
")",
",",
"0",
")",
";",
"return",
"newJS",
";",
"}",
"@",
"Override",
"public",
"float",
"getCost",
"(",
")",
"{",
"return",
"1",
";",
"}",
"@",
"Override",
"public",
"String",
"getName",
"(",
")",
"{",
"return",
"\"Drop",
"Three\"",
";",
"}",
"}",
"</s>"
] |
11,773 | [
"<s>",
"package",
"com",
".",
"g7",
".",
"rules",
";",
"import",
"gps",
".",
"api",
".",
"GPSRule",
";",
"import",
"gps",
".",
"api",
".",
"GPSState",
";",
"import",
"gps",
".",
"exception",
".",
"NotAppliableException",
";",
"import",
"com",
".",
"g7",
".",
"Jar",
";",
"import",
"com",
".",
"g7",
".",
"JarsState",
";",
"public",
"class",
"ThreeToTen",
"implements",
"GPSRule",
"{",
"@",
"Override",
"public",
"GPSState",
"evalRule",
"(",
"GPSState",
"arg0",
")",
"throws",
"NotAppliableException",
"{",
"JarsState",
"oldJS",
"=",
"(",
"JarsState",
")",
"arg0",
";",
"Jar",
"[",
"]",
"jars",
"=",
"oldJS",
".",
"getJars",
"(",
")",
";",
"int",
"qty",
"=",
"Math",
".",
"min",
"(",
"jars",
"[",
"2",
"]",
".",
"getUsed",
"(",
")",
",",
"jars",
"[",
"0",
"]",
".",
"getMaxLiters",
"(",
")",
"-",
"jars",
"[",
"0",
"]",
".",
"getUsed",
"(",
")",
")",
";",
"if",
"(",
"qty",
"==",
"0",
")",
"{",
"throw",
"new",
"NotAppliableException",
"(",
")",
";",
"}",
"JarsState",
"newJS",
"=",
"new",
"JarsState",
"(",
"jars",
"[",
"0",
"]",
".",
"getUsed",
"(",
")",
"+",
"qty",
",",
"jars",
"[",
"1",
"]",
".",
"getUsed",
"(",
")",
",",
"jars",
"[",
"2",
"]",
".",
"getUsed",
"(",
")",
"-",
"qty",
")",
";",
"return",
"newJS",
";",
"}",
"@",
"Override",
"public",
"float",
"getCost",
"(",
")",
"{",
"return",
"1",
";",
"}",
"@",
"Override",
"public",
"String",
"getName",
"(",
")",
"{",
"return",
"\"Three",
"To",
"Ten\"",
";",
"}",
"}",
"</s>"
] |
11,774 | [
"<s>",
"package",
"com",
".",
"g7",
".",
"rules",
";",
"import",
"gps",
".",
"api",
".",
"GPSRule",
";",
"import",
"gps",
".",
"api",
".",
"GPSState",
";",
"import",
"gps",
".",
"exception",
".",
"NotAppliableException",
";",
"import",
"com",
".",
"g7",
".",
"Jar",
";",
"import",
"com",
".",
"g7",
".",
"JarsState",
";",
"public",
"class",
"SevenToTen",
"implements",
"GPSRule",
"{",
"@",
"Override",
"public",
"GPSState",
"evalRule",
"(",
"GPSState",
"arg0",
")",
"throws",
"NotAppliableException",
"{",
"JarsState",
"oldJS",
"=",
"(",
"JarsState",
")",
"arg0",
";",
"Jar",
"[",
"]",
"jars",
"=",
"oldJS",
".",
"getJars",
"(",
")",
";",
"int",
"qty",
"=",
"Math",
".",
"min",
"(",
"jars",
"[",
"1",
"]",
".",
"getUsed",
"(",
")",
",",
"jars",
"[",
"0",
"]",
".",
"getMaxLiters",
"(",
")",
"-",
"jars",
"[",
"0",
"]",
".",
"getUsed",
"(",
")",
")",
";",
"if",
"(",
"qty",
"==",
"0",
")",
"{",
"throw",
"new",
"NotAppliableException",
"(",
")",
";",
"}",
"JarsState",
"newJS",
"=",
"new",
"JarsState",
"(",
"jars",
"[",
"0",
"]",
".",
"getUsed",
"(",
")",
"+",
"qty",
",",
"jars",
"[",
"1",
"]",
".",
"getUsed",
"(",
")",
"-",
"qty",
",",
"jars",
"[",
"2",
"]",
".",
"getUsed",
"(",
")",
")",
";",
"return",
"newJS",
";",
"}",
"@",
"Override",
"public",
"float",
"getCost",
"(",
")",
"{",
"return",
"1",
";",
"}",
"@",
"Override",
"public",
"String",
"getName",
"(",
")",
"{",
"return",
"\"Seven",
"To",
"Ten\"",
";",
"}",
"}",
"</s>"
] |
11,775 | [
"<s>",
"package",
"com",
".",
"g7",
".",
"rules",
";",
"import",
"gps",
".",
"api",
".",
"GPSRule",
";",
"import",
"gps",
".",
"api",
".",
"GPSState",
";",
"import",
"gps",
".",
"exception",
".",
"NotAppliableException",
";",
"import",
"com",
".",
"g7",
".",
"Jar",
";",
"import",
"com",
".",
"g7",
".",
"JarsState",
";",
"public",
"class",
"DropSeven",
"implements",
"GPSRule",
"{",
"@",
"Override",
"public",
"GPSState",
"evalRule",
"(",
"GPSState",
"arg0",
")",
"throws",
"NotAppliableException",
"{",
"JarsState",
"oldJS",
"=",
"(",
"JarsState",
")",
"arg0",
";",
"Jar",
"[",
"]",
"jars",
"=",
"oldJS",
".",
"getJars",
"(",
")",
";",
"if",
"(",
"jars",
"[",
"1",
"]",
".",
"getUsed",
"(",
")",
"==",
"0",
")",
"{",
"throw",
"new",
"NotAppliableException",
"(",
")",
";",
"}",
"JarsState",
"newJS",
"=",
"new",
"JarsState",
"(",
"jars",
"[",
"0",
"]",
".",
"getUsed",
"(",
")",
",",
"0",
",",
"jars",
"[",
"2",
"]",
".",
"getUsed",
"(",
")",
")",
";",
"return",
"newJS",
";",
"}",
"@",
"Override",
"public",
"float",
"getCost",
"(",
")",
"{",
"return",
"1",
";",
"}",
"@",
"Override",
"public",
"String",
"getName",
"(",
")",
"{",
"return",
"\"Drop",
"Seven\"",
";",
"}",
"}",
"</s>"
] |
11,776 | [
"<s>",
"package",
"com",
".",
"g7",
".",
"rules",
";",
"import",
"com",
".",
"g7",
".",
"Jar",
";",
"import",
"com",
".",
"g7",
".",
"JarsState",
";",
"import",
"gps",
".",
"api",
".",
"GPSRule",
";",
"import",
"gps",
".",
"api",
".",
"GPSState",
";",
"import",
"gps",
".",
"exception",
".",
"NotAppliableException",
";",
"public",
"class",
"TenToSeven",
"implements",
"GPSRule",
"{",
"@",
"Override",
"public",
"GPSState",
"evalRule",
"(",
"GPSState",
"arg0",
")",
"throws",
"NotAppliableException",
"{",
"JarsState",
"oldJS",
"=",
"(",
"JarsState",
")",
"arg0",
";",
"Jar",
"[",
"]",
"jars",
"=",
"oldJS",
".",
"getJars",
"(",
")",
";",
"int",
"qty",
"=",
"Math",
".",
"min",
"(",
"jars",
"[",
"0",
"]",
".",
"getUsed",
"(",
")",
",",
"jars",
"[",
"1",
"]",
".",
"getMaxLiters",
"(",
")",
"-",
"jars",
"[",
"1",
"]",
".",
"getUsed",
"(",
")",
")",
";",
"if",
"(",
"qty",
"==",
"0",
")",
"{",
"throw",
"new",
"NotAppliableException",
"(",
")",
";",
"}",
"JarsState",
"newJS",
"=",
"new",
"JarsState",
"(",
"jars",
"[",
"0",
"]",
".",
"getUsed",
"(",
")",
"-",
"qty",
",",
"jars",
"[",
"1",
"]",
".",
"getUsed",
"(",
")",
"+",
"qty",
",",
"jars",
"[",
"2",
"]",
".",
"getUsed",
"(",
")",
")",
";",
"return",
"newJS",
";",
"}",
"@",
"Override",
"public",
"float",
"getCost",
"(",
")",
"{",
"return",
"1",
";",
"}",
"@",
"Override",
"public",
"String",
"getName",
"(",
")",
"{",
"return",
"\"Ten",
"To",
"Seven\"",
";",
"}",
"}",
"</s>"
] |
11,777 | [
"<s>",
"package",
"com",
".",
"g7",
".",
"rules",
";",
"import",
"gps",
".",
"api",
".",
"GPSRule",
";",
"import",
"gps",
".",
"api",
".",
"GPSState",
";",
"import",
"gps",
".",
"exception",
".",
"NotAppliableException",
";",
"import",
"com",
".",
"g7",
".",
"Jar",
";",
"import",
"com",
".",
"g7",
".",
"JarsState",
";",
"public",
"class",
"DropTen",
"implements",
"GPSRule",
"{",
"@",
"Override",
"public",
"GPSState",
"evalRule",
"(",
"GPSState",
"arg0",
")",
"throws",
"NotAppliableException",
"{",
"JarsState",
"oldJS",
"=",
"(",
"JarsState",
")",
"arg0",
";",
"Jar",
"[",
"]",
"jars",
"=",
"oldJS",
".",
"getJars",
"(",
")",
";",
"if",
"(",
"jars",
"[",
"0",
"]",
".",
"getUsed",
"(",
")",
"==",
"0",
")",
"{",
"throw",
"new",
"NotAppliableException",
"(",
")",
";",
"}",
"JarsState",
"newJS",
"=",
"new",
"JarsState",
"(",
"0",
",",
"jars",
"[",
"1",
"]",
".",
"getUsed",
"(",
")",
",",
"jars",
"[",
"2",
"]",
".",
"getUsed",
"(",
")",
")",
";",
"return",
"newJS",
";",
"}",
"@",
"Override",
"public",
"float",
"getCost",
"(",
")",
"{",
"return",
"1",
";",
"}",
"@",
"Override",
"public",
"String",
"getName",
"(",
")",
"{",
"return",
"\"Drop",
"Ten\"",
";",
"}",
"}",
"</s>"
] |
11,778 | [
"<s>",
"package",
"com",
".",
"g7",
".",
"rules",
";",
"import",
"gps",
".",
"api",
".",
"GPSRule",
";",
"import",
"gps",
".",
"api",
".",
"GPSState",
";",
"import",
"gps",
".",
"exception",
".",
"NotAppliableException",
";",
"import",
"com",
".",
"g7",
".",
"Jar",
";",
"import",
"com",
".",
"g7",
".",
"JarsState",
";",
"public",
"class",
"SevenToThree",
"implements",
"GPSRule",
"{",
"@",
"Override",
"public",
"GPSState",
"evalRule",
"(",
"GPSState",
"arg0",
")",
"throws",
"NotAppliableException",
"{",
"JarsState",
"oldJS",
"=",
"(",
"JarsState",
")",
"arg0",
";",
"Jar",
"[",
"]",
"jars",
"=",
"oldJS",
".",
"getJars",
"(",
")",
";",
"int",
"qty",
"=",
"Math",
".",
"min",
"(",
"jars",
"[",
"1",
"]",
".",
"getUsed",
"(",
")",
",",
"jars",
"[",
"2",
"]",
".",
"getMaxLiters",
"(",
")",
"-",
"jars",
"[",
"2",
"]",
".",
"getUsed",
"(",
")",
")",
";",
"if",
"(",
"qty",
"==",
"0",
")",
"{",
"throw",
"new",
"NotAppliableException",
"(",
")",
";",
"}",
"JarsState",
"newJS",
"=",
"new",
"JarsState",
"(",
"jars",
"[",
"0",
"]",
".",
"getUsed",
"(",
")",
",",
"jars",
"[",
"1",
"]",
".",
"getUsed",
"(",
")",
"-",
"qty",
",",
"jars",
"[",
"2",
"]",
".",
"getUsed",
"(",
")",
"+",
"qty",
")",
";",
"return",
"newJS",
";",
"}",
"@",
"Override",
"public",
"float",
"getCost",
"(",
")",
"{",
"return",
"1",
";",
"}",
"@",
"Override",
"public",
"String",
"getName",
"(",
")",
"{",
"return",
"\"\"",
";",
"}",
"}",
"</s>"
] |
11,779 | [
"<s>",
"package",
"com",
".",
"g7",
".",
"rules",
";",
"import",
"gps",
".",
"api",
".",
"GPSRule",
";",
"import",
"gps",
".",
"api",
".",
"GPSState",
";",
"import",
"gps",
".",
"exception",
".",
"NotAppliableException",
";",
"import",
"com",
".",
"g7",
".",
"Jar",
";",
"import",
"com",
".",
"g7",
".",
"JarsState",
";",
"public",
"class",
"ThreeToSeven",
"implements",
"GPSRule",
"{",
"@",
"Override",
"public",
"GPSState",
"evalRule",
"(",
"GPSState",
"arg0",
")",
"throws",
"NotAppliableException",
"{",
"JarsState",
"oldJS",
"=",
"(",
"JarsState",
")",
"arg0",
";",
"Jar",
"[",
"]",
"jars",
"=",
"oldJS",
".",
"getJars",
"(",
")",
";",
"int",
"qty",
"=",
"Math",
".",
"min",
"(",
"jars",
"[",
"2",
"]",
".",
"getUsed",
"(",
")",
",",
"jars",
"[",
"1",
"]",
".",
"getMaxLiters",
"(",
")",
"-",
"jars",
"[",
"1",
"]",
".",
"getUsed",
"(",
")",
")",
";",
"if",
"(",
"qty",
"==",
"0",
")",
"{",
"throw",
"new",
"NotAppliableException",
"(",
")",
";",
"}",
"JarsState",
"newJS",
"=",
"new",
"JarsState",
"(",
"jars",
"[",
"0",
"]",
".",
"getUsed",
"(",
")",
",",
"jars",
"[",
"1",
"]",
".",
"getUsed",
"(",
")",
"+",
"qty",
",",
"jars",
"[",
"2",
"]",
".",
"getUsed",
"(",
")",
"-",
"qty",
")",
";",
"return",
"newJS",
";",
"}",
"@",
"Override",
"public",
"float",
"getCost",
"(",
")",
"{",
"return",
"1",
";",
"}",
"@",
"Override",
"public",
"String",
"getName",
"(",
")",
"{",
"return",
"\"\"",
";",
"}",
"}",
"</s>"
] |
11,780 | [
"<s>",
"package",
"com",
".",
"g7",
".",
"rules",
";",
"import",
"com",
".",
"g7",
".",
"Jar",
";",
"import",
"com",
".",
"g7",
".",
"JarsState",
";",
"import",
"gps",
".",
"api",
".",
"GPSRule",
";",
"import",
"gps",
".",
"api",
".",
"GPSState",
";",
"import",
"gps",
".",
"exception",
".",
"NotAppliableException",
";",
"public",
"class",
"TenToThree",
"implements",
"GPSRule",
"{",
"@",
"Override",
"public",
"GPSState",
"evalRule",
"(",
"GPSState",
"arg0",
")",
"throws",
"NotAppliableException",
"{",
"JarsState",
"oldJS",
"=",
"(",
"JarsState",
")",
"arg0",
";",
"Jar",
"[",
"]",
"jars",
"=",
"oldJS",
".",
"getJars",
"(",
")",
";",
"int",
"qty",
"=",
"Math",
".",
"min",
"(",
"jars",
"[",
"0",
"]",
".",
"getUsed",
"(",
")",
",",
"jars",
"[",
"2",
"]",
".",
"getMaxLiters",
"(",
")",
"-",
"jars",
"[",
"2",
"]",
".",
"getUsed",
"(",
")",
")",
";",
"if",
"(",
"qty",
"==",
"0",
")",
"{",
"throw",
"new",
"NotAppliableException",
"(",
")",
";",
"}",
"JarsState",
"newJS",
"=",
"new",
"JarsState",
"(",
"jars",
"[",
"0",
"]",
".",
"getUsed",
"(",
")",
"-",
"qty",
",",
"jars",
"[",
"1",
"]",
".",
"getUsed",
"(",
")",
",",
"jars",
"[",
"2",
"]",
".",
"getUsed",
"(",
")",
"+",
"qty",
")",
";",
"return",
"newJS",
";",
"}",
"@",
"Override",
"public",
"float",
"getCost",
"(",
")",
"{",
"return",
"1",
";",
"}",
"@",
"Override",
"public",
"String",
"getName",
"(",
")",
"{",
"return",
"\"Ten",
"To",
"Three\"",
";",
"}",
"}",
"</s>"
] |
11,781 | [
"<s>",
"package",
"com",
".",
"g7",
";",
"import",
"gps",
".",
"api",
".",
"GPSProblem",
";",
"import",
"gps",
".",
"api",
".",
"GPSRule",
";",
"import",
"gps",
".",
"api",
".",
"GPSState",
";",
"import",
"java",
".",
"util",
".",
"ArrayList",
";",
"import",
"java",
".",
"util",
".",
"List",
";",
"import",
"com",
".",
"g7",
".",
"rules",
".",
"DropSeven",
";",
"import",
"com",
".",
"g7",
".",
"rules",
".",
"DropTen",
";",
"import",
"com",
".",
"g7",
".",
"rules",
".",
"DropThree",
";",
"import",
"com",
".",
"g7",
".",
"rules",
".",
"SevenToTen",
";",
"import",
"com",
".",
"g7",
".",
"rules",
".",
"SevenToThree",
";",
"import",
"com",
".",
"g7",
".",
"rules",
".",
"TenToSeven",
";",
"import",
"com",
".",
"g7",
".",
"rules",
".",
"TenToThree",
";",
"import",
"com",
".",
"g7",
".",
"rules",
".",
"ThreeToSeven",
";",
"import",
"com",
".",
"g7",
".",
"rules",
".",
"ThreeToTen",
";",
"public",
"class",
"JarsProblem",
"implements",
"GPSProblem",
"{",
"@",
"Override",
"public",
"GPSState",
"getGoalState",
"(",
")",
"{",
"return",
"new",
"JarsState",
"(",
"5",
",",
"0",
",",
"0",
")",
";",
"}",
"@",
"Override",
"public",
"float",
"getHValue",
"(",
"GPSState",
"arg0",
")",
"{",
"JarsState",
"js",
"=",
"(",
"JarsState",
")",
"arg0",
";",
"Jar",
"[",
"]",
"jars",
"=",
"js",
".",
"getJars",
"(",
")",
";",
"int",
"totalQuantity",
"=",
"jars",
"[",
"0",
"]",
".",
"getUsed",
"(",
")",
"+",
"jars",
"[",
"1",
"]",
".",
"getUsed",
"(",
")",
"+",
"jars",
"[",
"2",
"]",
".",
"getUsed",
"(",
")",
";",
"if",
"(",
"totalQuantity",
"<",
"5",
")",
"return",
"Float",
".",
"MAX_VALUE",
";",
"if",
"(",
"jars",
"[",
"0",
"]",
".",
"getUsed",
"(",
")",
"==",
"5",
")",
"{",
"return",
"0",
";",
"}",
"return",
"300",
";",
"}",
"@",
"Override",
"public",
"GPSState",
"getInitState",
"(",
")",
"{",
"return",
"new",
"JarsState",
"(",
")",
";",
"}",
"@",
"Override",
"public",
"List",
"<",
"GPSRule",
">",
"getRules",
"(",
"GPSState",
"state",
")",
"{",
"ArrayList",
"<",
"GPSRule",
">",
"ret",
"=",
"new",
"ArrayList",
"<",
"GPSRule",
">",
"(",
"9",
")",
";",
"ret",
".",
"add",
"(",
"new",
"DropTen",
"(",
")",
")",
";",
"ret",
".",
"add",
"(",
"new",
"DropSeven",
"(",
")",
")",
";",
"ret",
".",
"add",
"(",
"new",
"DropThree",
"(",
")",
")",
";",
"ret",
".",
"add",
"(",
"new",
"TenToSeven",
"(",
")",
")",
";",
"ret",
".",
"add",
"(",
"new",
"TenToThree",
"(",
")",
")",
";",
"ret",
".",
"add",
"(",
"new",
"SevenToTen",
"(",
")",
")",
";",
"ret",
".",
"add",
"(",
"new",
"SevenToThree",
"(",
")",
")",
";",
"ret",
".",
"add",
"(",
"new",
"ThreeToTen",
"(",
")",
")",
";",
"ret",
".",
"add",
"(",
"new",
"ThreeToSeven",
"(",
")",
")",
";",
"return",
"ret",
";",
"}",
"}",
"</s>"
] |
11,782 | [
"<s>",
"package",
"com",
".",
"g7",
";",
"import",
"gps",
".",
"api",
".",
"GPSState",
";",
"public",
"class",
"JarsState",
"implements",
"GPSState",
"{",
"public",
"static",
"int",
"STEP",
";",
"private",
"Jar",
"[",
"]",
"jars",
"=",
"new",
"Jar",
"[",
"3",
"]",
";",
"public",
"JarsState",
"(",
")",
"{",
"jars",
"[",
"0",
"]",
"=",
"new",
"Jar",
"(",
"10",
",",
"10",
")",
";",
"jars",
"[",
"1",
"]",
"=",
"new",
"Jar",
"(",
"7",
",",
"0",
")",
";",
"jars",
"[",
"2",
"]",
"=",
"new",
"Jar",
"(",
"3",
",",
"0",
")",
";",
"}",
"public",
"JarsState",
"(",
"int",
"ten",
",",
"int",
"seven",
",",
"int",
"three",
")",
"{",
"this",
".",
"jars",
"[",
"0",
"]",
"=",
"new",
"Jar",
"(",
"10",
",",
"ten",
")",
";",
"this",
".",
"jars",
"[",
"1",
"]",
"=",
"new",
"Jar",
"(",
"7",
",",
"seven",
")",
";",
"this",
".",
"jars",
"[",
"2",
"]",
"=",
"new",
"Jar",
"(",
"3",
",",
"three",
")",
";",
"}",
"@",
"Override",
"public",
"boolean",
"compare",
"(",
"GPSState",
"var",
")",
"{",
"JarsState",
"js",
"=",
"(",
"JarsState",
")",
"var",
";",
"Jar",
"[",
"]",
"jars",
"=",
"js",
".",
"getJars",
"(",
")",
";",
"if",
"(",
"this",
".",
"jars",
"[",
"0",
"]",
".",
"getUsed",
"(",
")",
"==",
"5",
"&&",
"jars",
"[",
"0",
"]",
".",
"getUsed",
"(",
")",
"==",
"5",
")",
"return",
"true",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"jars",
".",
"length",
";",
"i",
"++",
")",
"{",
"if",
"(",
"jars",
"[",
"i",
"]",
".",
"getMaxLiters",
"(",
")",
"!=",
"this",
".",
"jars",
"[",
"i",
"]",
".",
"getMaxLiters",
"(",
")",
")",
"return",
"false",
";",
"if",
"(",
"jars",
"[",
"i",
"]",
".",
"getUsed",
"(",
")",
"!=",
"this",
".",
"jars",
"[",
"i",
"]",
".",
"getUsed",
"(",
")",
")",
"return",
"false",
";",
"}",
"return",
"true",
";",
"}",
"public",
"Jar",
"[",
"]",
"getJars",
"(",
")",
"{",
"return",
"jars",
";",
"}",
"public",
"void",
"setJars",
"(",
"Jar",
"[",
"]",
"jars",
")",
"{",
"this",
".",
"jars",
"=",
"jars",
";",
"}",
"public",
"String",
"toString",
"(",
")",
"{",
"return",
"String",
".",
"format",
"(",
"\"\"",
",",
"STEP",
"++",
",",
"this",
".",
"jars",
"[",
"0",
"]",
".",
"getUsed",
"(",
")",
",",
"this",
".",
"jars",
"[",
"1",
"]",
".",
"getUsed",
"(",
")",
",",
"this",
".",
"jars",
"[",
"2",
"]",
".",
"getUsed",
"(",
")",
")",
";",
"}",
"}",
"</s>"
] |
11,783 | [
"<s>",
"package",
"com",
".",
"g7",
";",
"public",
"class",
"Jar",
"{",
"private",
"int",
"maxLiters",
";",
"private",
"int",
"used",
";",
"public",
"Jar",
"(",
"int",
"maxLiters",
",",
"int",
"used",
")",
"{",
"this",
".",
"maxLiters",
"=",
"maxLiters",
";",
"this",
".",
"used",
"=",
"used",
";",
"}",
"public",
"int",
"getMaxLiters",
"(",
")",
"{",
"return",
"maxLiters",
";",
"}",
"public",
"void",
"setMaxLiters",
"(",
"int",
"maxLiters",
")",
"{",
"this",
".",
"maxLiters",
"=",
"maxLiters",
";",
"}",
"public",
"int",
"getUsed",
"(",
")",
"{",
"return",
"used",
";",
"}",
"public",
"void",
"setUsed",
"(",
"int",
"used",
")",
"{",
"this",
".",
"used",
"=",
"used",
";",
"}",
"}",
"</s>"
] |
11,784 | [
"<s>",
"package",
"aga",
".",
"mahjong",
".",
"core",
";",
"import",
"java",
".",
"util",
".",
"ArrayList",
";",
"public",
"class",
"SolvableArrange",
"implements",
"IArrangeStrategy",
"{",
"public",
"void",
"arrange",
"(",
"Board",
"board",
")",
"{",
"java",
".",
"util",
".",
"Random",
"rnd",
"=",
"new",
"java",
".",
"util",
".",
"Random",
"(",
")",
";",
"ArrayList",
"<",
"Tile",
">",
"tiles",
"=",
"new",
"ArrayList",
"<",
"Tile",
">",
"(",
"TileSet",
".",
"getAllTiles",
"(",
")",
")",
";",
"while",
"(",
"tiles",
".",
"size",
"(",
")",
">",
"0",
")",
"{",
"Tile",
"tile1",
"=",
"tiles",
".",
"get",
"(",
"0",
")",
";",
"Tile",
"tile2",
"=",
"tiles",
".",
"get",
"(",
"0",
")",
";",
"Cell",
"[",
"]",
"freePositions",
"=",
"board",
".",
"getFreePositions",
"(",
")",
";",
"if",
"(",
"freePositions",
".",
"length",
"==",
"0",
")",
"{",
"System",
".",
"out",
".",
"println",
"(",
"\"\"",
")",
";",
"break",
";",
"}",
"Position",
"pos1",
"=",
"freePositions",
"[",
"rnd",
".",
"nextInt",
"(",
"freePositions",
".",
"length",
")",
"]",
".",
"getPosition",
"(",
")",
";",
"board",
".",
"setItem",
"(",
"pos1",
",",
"tile1",
")",
";",
"freePositions",
"=",
"board",
".",
"getFreePositions",
"(",
")",
";",
"if",
"(",
"freePositions",
".",
"length",
"==",
"0",
")",
"{",
"System",
".",
"out",
".",
"println",
"(",
"\"\"",
")",
";",
"break",
";",
"}",
"Position",
"pos2",
"=",
"freePositions",
"[",
"rnd",
".",
"nextInt",
"(",
"freePositions",
".",
"length",
")",
"]",
".",
"getPosition",
"(",
")",
";",
"board",
".",
"setItem",
"(",
"pos2",
",",
"tile2",
")",
";",
"tiles",
".",
"remove",
"(",
"tile1",
")",
";",
"tiles",
".",
"remove",
"(",
"tile2",
")",
";",
"}",
"}",
"}",
"</s>"
] |
11,785 | [
"<s>",
"package",
"aga",
".",
"mahjong",
".",
"core",
";",
"import",
"java",
".",
"io",
".",
"Serializable",
";",
"public",
"final",
"class",
"Tile",
"implements",
"Serializable",
"{",
"private",
"static",
"final",
"long",
"serialVersionUID",
"=",
"-",
"1138962143340254654L",
";",
"private",
"final",
"TileKind",
"kind",
";",
"private",
"final",
"int",
"number",
";",
"public",
"TileKind",
"getKind",
"(",
")",
"{",
"return",
"kind",
";",
"}",
"public",
"int",
"getNumber",
"(",
")",
"{",
"return",
"number",
";",
"}",
"public",
"Tile",
"(",
"TileKind",
"kind",
",",
"int",
"number",
")",
"{",
"this",
".",
"kind",
"=",
"kind",
";",
"this",
".",
"number",
"=",
"number",
";",
"}",
"@",
"Override",
"public",
"String",
"toString",
"(",
")",
"{",
"String",
"str",
"=",
"\"\"",
";",
"switch",
"(",
"getKind",
"(",
")",
")",
"{",
"case",
"Bamboo",
":",
"str",
"=",
"\"B\"",
";",
"break",
";",
"case",
"Character",
":",
"str",
"=",
"\"C\"",
";",
"break",
";",
"case",
"Dot",
":",
"str",
"=",
"\"D\"",
";",
"break",
";",
"case",
"Dragon",
":",
"str",
"=",
"\"R\"",
";",
"break",
";",
"case",
"Flower",
":",
"str",
"=",
"\"F\"",
";",
"break",
";",
"case",
"Season",
":",
"str",
"=",
"\"S\"",
";",
"break",
";",
"case",
"Wind",
":",
"str",
"=",
"\"W\"",
";",
"break",
";",
"}",
"return",
"String",
".",
"format",
"(",
"\"%1$s%2$s\"",
",",
"str",
",",
"getNumber",
"(",
")",
")",
";",
"}",
"public",
"static",
"boolean",
"isMatch",
"(",
"Tile",
"a",
",",
"Tile",
"b",
")",
"{",
"if",
"(",
"a",
".",
"getKind",
"(",
")",
".",
"equals",
"(",
"b",
".",
"getKind",
"(",
")",
")",
")",
"{",
"if",
"(",
"a",
".",
"getKind",
"(",
")",
".",
"equals",
"(",
"TileKind",
".",
"Season",
")",
"||",
"a",
".",
"getKind",
"(",
")",
".",
"equals",
"(",
"TileKind",
".",
"Flower",
")",
")",
"{",
"return",
"true",
";",
"}",
"else",
"{",
"return",
"a",
".",
"getNumber",
"(",
")",
"==",
"b",
".",
"getNumber",
"(",
")",
";",
"}",
"}",
"else",
"{",
"return",
"false",
";",
"}",
"}",
"@",
"Override",
"public",
"int",
"hashCode",
"(",
")",
"{",
"final",
"int",
"prime",
"=",
"31",
";",
"int",
"result",
"=",
"1",
";",
"result",
"=",
"prime",
"*",
"result",
"+",
"(",
"(",
"kind",
"==",
"null",
")",
"?",
"0",
":",
"kind",
".",
"hashCode",
"(",
")",
")",
";",
"result",
"=",
"prime",
"*",
"result",
"+",
"number",
";",
"return",
"result",
";",
"}",
"@",
"Override",
"public",
"boolean",
"equals",
"(",
"Object",
"obj",
")",
"{",
"if",
"(",
"this",
"==",
"obj",
")",
"return",
"true",
";",
"if",
"(",
"obj",
"==",
"null",
")",
"return",
"false",
";",
"if",
"(",
"getClass",
"(",
")",
"!=",
"obj",
".",
"getClass",
"(",
")",
")",
"return",
"false",
";",
"Tile",
"other",
"=",
"(",
"Tile",
")",
"obj",
";",
"if",
"(",
"kind",
"!=",
"other",
".",
"kind",
")",
"return",
"false",
";",
"if",
"(",
"number",
"!=",
"other",
".",
"number",
")",
"return",
"false",
";",
"return",
"true",
";",
"}",
"}",
"</s>"
] |
11,786 | [
"<s>",
"package",
"aga",
".",
"mahjong",
".",
"core",
";",
"import",
"java",
".",
"io",
".",
"Serializable",
";",
"public",
"final",
"class",
"Cell",
"implements",
"Serializable",
"{",
"private",
"static",
"final",
"long",
"serialVersionUID",
"=",
"2303277354058270968L",
";",
"private",
"final",
"Position",
"position",
";",
"private",
"final",
"Tile",
"tile",
";",
"public",
"Position",
"getPosition",
"(",
")",
"{",
"return",
"position",
";",
"}",
"public",
"Tile",
"getTile",
"(",
")",
"{",
"return",
"tile",
";",
"}",
"public",
"Cell",
"(",
"Position",
"pos",
",",
"Tile",
"tile",
")",
"{",
"this",
".",
"position",
"=",
"pos",
";",
"this",
".",
"tile",
"=",
"tile",
";",
"}",
"@",
"Override",
"public",
"String",
"toString",
"(",
")",
"{",
"return",
"String",
".",
"format",
"(",
"\"%1$s",
"=",
"%2$s\"",
",",
"getPosition",
"(",
")",
",",
"getTile",
"(",
")",
")",
";",
"}",
"@",
"Override",
"public",
"int",
"hashCode",
"(",
")",
"{",
"final",
"int",
"prime",
"=",
"31",
";",
"int",
"result",
"=",
"1",
";",
"result",
"=",
"prime",
"*",
"result",
"+",
"(",
"(",
"position",
"==",
"null",
")",
"?",
"0",
":",
"position",
".",
"hashCode",
"(",
")",
")",
";",
"result",
"=",
"prime",
"*",
"result",
"+",
"(",
"(",
"tile",
"==",
"null",
")",
"?",
"0",
":",
"tile",
".",
"hashCode",
"(",
")",
")",
";",
"return",
"result",
";",
"}",
"@",
"Override",
"public",
"boolean",
"equals",
"(",
"Object",
"obj",
")",
"{",
"if",
"(",
"this",
"==",
"obj",
")",
"return",
"true",
";",
"if",
"(",
"obj",
"==",
"null",
")",
"return",
"false",
";",
"if",
"(",
"getClass",
"(",
")",
"!=",
"obj",
".",
"getClass",
"(",
")",
")",
"return",
"false",
";",
"Cell",
"other",
"=",
"(",
"Cell",
")",
"obj",
";",
"if",
"(",
"position",
"==",
"null",
")",
"{",
"if",
"(",
"other",
".",
"position",
"!=",
"null",
")",
"return",
"false",
";",
"}",
"else",
"if",
"(",
"!",
"position",
".",
"equals",
"(",
"other",
".",
"position",
")",
")",
"return",
"false",
";",
"if",
"(",
"tile",
"==",
"null",
")",
"{",
"if",
"(",
"other",
".",
"tile",
"!=",
"null",
")",
"return",
"false",
";",
"}",
"else",
"if",
"(",
"!",
"tile",
".",
"equals",
"(",
"other",
".",
"tile",
")",
")",
"return",
"false",
";",
"return",
"true",
";",
"}",
"}",
"</s>"
] |
11,787 | [
"<s>",
"package",
"aga",
".",
"mahjong",
".",
"core",
";",
"public",
"interface",
"IArrangeStrategy",
"{",
"void",
"arrange",
"(",
"Board",
"board",
")",
";",
"}",
"</s>"
] |
11,788 | [
"<s>",
"package",
"aga",
".",
"mahjong",
".",
"core",
";",
"import",
"java",
".",
"io",
".",
"IOException",
";",
"import",
"java",
".",
"io",
".",
"InputStream",
";",
"import",
"java",
".",
"io",
".",
"OutputStream",
";",
"import",
"java",
".",
"io",
".",
"Serializable",
";",
"public",
"final",
"class",
"Position",
"implements",
"Serializable",
"{",
"private",
"static",
"final",
"long",
"serialVersionUID",
"=",
"-",
"3293495485141107663L",
";",
"private",
"final",
"int",
"row",
";",
"private",
"final",
"int",
"column",
";",
"private",
"final",
"int",
"layer",
";",
"public",
"int",
"getRow",
"(",
")",
"{",
"return",
"row",
";",
"}",
"public",
"int",
"getColumn",
"(",
")",
"{",
"return",
"column",
";",
"}",
"public",
"int",
"getLayer",
"(",
")",
"{",
"return",
"layer",
";",
"}",
"public",
"Position",
"(",
"int",
"layer",
",",
"int",
"row",
",",
"int",
"column",
")",
"{",
"this",
".",
"layer",
"=",
"layer",
";",
"this",
".",
"row",
"=",
"row",
";",
"this",
".",
"column",
"=",
"column",
";",
"}",
"@",
"Override",
"public",
"String",
"toString",
"(",
")",
"{",
"return",
"String",
".",
"format",
"(",
"\"\"",
",",
"getLayer",
"(",
")",
",",
"getRow",
"(",
")",
",",
"getColumn",
"(",
")",
")",
";",
"}",
"public",
"void",
"write",
"(",
"OutputStream",
"stream",
")",
"throws",
"IOException",
"{",
"stream",
".",
"write",
"(",
"(",
"byte",
")",
"layer",
")",
";",
"stream",
".",
"write",
"(",
"(",
"byte",
")",
"row",
")",
";",
"stream",
".",
"write",
"(",
"(",
"byte",
")",
"column",
")",
";",
"}",
"public",
"static",
"Position",
"read",
"(",
"InputStream",
"stream",
")",
"throws",
"IOException",
"{",
"int",
"lay",
"=",
"stream",
".",
"read",
"(",
")",
";",
"int",
"row",
"=",
"stream",
".",
"read",
"(",
")",
";",
"int",
"col",
"=",
"stream",
".",
"read",
"(",
")",
";",
"return",
"new",
"Position",
"(",
"lay",
",",
"row",
",",
"col",
")",
";",
"}",
"@",
"Override",
"public",
"int",
"hashCode",
"(",
")",
"{",
"final",
"int",
"prime",
"=",
"31",
";",
"int",
"result",
"=",
"1",
";",
"result",
"=",
"prime",
"*",
"result",
"+",
"column",
";",
"result",
"=",
"prime",
"*",
"result",
"+",
"layer",
";",
"result",
"=",
"prime",
"*",
"result",
"+",
"row",
";",
"return",
"result",
";",
"}",
"@",
"Override",
"public",
"boolean",
"equals",
"(",
"Object",
"obj",
")",
"{",
"if",
"(",
"this",
"==",
"obj",
")",
"return",
"true",
";",
"if",
"(",
"obj",
"==",
"null",
")",
"return",
"false",
";",
"if",
"(",
"getClass",
"(",
")",
"!=",
"obj",
".",
"getClass",
"(",
")",
")",
"return",
"false",
";",
"Position",
"other",
"=",
"(",
"Position",
")",
"obj",
";",
"if",
"(",
"column",
"!=",
"other",
".",
"column",
")",
"return",
"false",
";",
"if",
"(",
"layer",
"!=",
"other",
".",
"layer",
")",
"return",
"false",
";",
"if",
"(",
"row",
"!=",
"other",
".",
"row",
")",
"return",
"false",
";",
"return",
"true",
";",
"}",
"}",
"</s>"
] |
11,789 | [
"<s>",
"package",
"aga",
".",
"mahjong",
".",
"core",
";",
"import",
"java",
".",
"io",
".",
"IOException",
";",
"import",
"java",
".",
"io",
".",
"InputStream",
";",
"import",
"java",
".",
"io",
".",
"OutputStream",
";",
"import",
"java",
".",
"io",
".",
"Serializable",
";",
"import",
"java",
".",
"util",
".",
"ArrayList",
";",
"public",
"class",
"Layout",
"implements",
"Serializable",
"{",
"private",
"static",
"final",
"long",
"serialVersionUID",
"=",
"-",
"3732566188318873821L",
";",
"protected",
"ArrayList",
"<",
"Position",
">",
"positions",
"=",
"new",
"ArrayList",
"<",
"Position",
">",
"(",
")",
";",
"protected",
"String",
"name",
";",
"protected",
"int",
"layerCount",
";",
"protected",
"int",
"rowCount",
";",
"protected",
"int",
"columnCount",
";",
"public",
"java",
".",
"util",
".",
"ArrayList",
"<",
"Position",
">",
"getPositions",
"(",
")",
"{",
"return",
"positions",
";",
"}",
"public",
"String",
"getName",
"(",
")",
"{",
"return",
"name",
";",
"}",
"public",
"void",
"setName",
"(",
"String",
"name",
")",
"{",
"this",
".",
"name",
"=",
"name",
";",
"}",
"public",
"int",
"getLayerCount",
"(",
")",
"{",
"return",
"layerCount",
";",
"}",
"public",
"int",
"getRowCount",
"(",
")",
"{",
"return",
"rowCount",
";",
"}",
"public",
"int",
"getColumnCount",
"(",
")",
"{",
"return",
"columnCount",
";",
"}",
"@",
"Override",
"public",
"String",
"toString",
"(",
")",
"{",
"return",
"getName",
"(",
")",
";",
"}",
"public",
"static",
"Layout",
"load",
"(",
"InputStream",
"stream",
")",
"throws",
"IOException",
"{",
"Layout",
"res",
"=",
"new",
"Layout",
"(",
")",
";",
"int",
"count",
"=",
"stream",
".",
"read",
"(",
")",
";",
"res",
".",
"positions",
"=",
"new",
"java",
".",
"util",
".",
"ArrayList",
"<",
"Position",
">",
"(",
"count",
")",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"count",
";",
"i",
"++",
")",
"{",
"Position",
"pos",
"=",
"Position",
".",
"read",
"(",
"stream",
")",
";",
"res",
".",
"getPositions",
"(",
")",
".",
"add",
"(",
"pos",
")",
";",
"res",
".",
"layerCount",
"=",
"Math",
".",
"max",
"(",
"res",
".",
"layerCount",
",",
"pos",
".",
"getLayer",
"(",
")",
"+",
"1",
")",
";",
"res",
".",
"rowCount",
"=",
"Math",
".",
"max",
"(",
"res",
".",
"rowCount",
",",
"pos",
".",
"getRow",
"(",
")",
"+",
"1",
")",
";",
"res",
".",
"columnCount",
"=",
"Math",
".",
"max",
"(",
"res",
".",
"columnCount",
",",
"pos",
".",
"getColumn",
"(",
")",
"+",
"1",
")",
";",
"}",
"return",
"res",
";",
"}",
"public",
"void",
"save",
"(",
"OutputStream",
"stream",
")",
"throws",
"IOException",
"{",
"stream",
".",
"write",
"(",
"getPositions",
"(",
")",
".",
"size",
"(",
")",
")",
";",
"for",
"(",
"Position",
"pos",
":",
"getPositions",
"(",
")",
")",
"{",
"pos",
".",
"write",
"(",
"stream",
")",
";",
"}",
"}",
"}",
"</s>"
] |
11,790 | [
"<s>",
"package",
"aga",
".",
"mahjong",
".",
"core",
";",
"public",
"class",
"Pair",
"{",
"private",
"final",
"Position",
"position1",
";",
"private",
"final",
"Position",
"position2",
";",
"public",
"Position",
"getPosition1",
"(",
")",
"{",
"return",
"position1",
";",
"}",
"public",
"Position",
"getPosition2",
"(",
")",
"{",
"return",
"position2",
";",
"}",
"public",
"Pair",
"(",
"Position",
"pos1",
",",
"Position",
"pos2",
")",
"{",
"position1",
"=",
"pos1",
";",
"position2",
"=",
"pos2",
";",
"}",
"@",
"Override",
"public",
"String",
"toString",
"(",
")",
"{",
"return",
"String",
".",
"format",
"(",
"\"%1$s",
"-",
"%2$s\"",
",",
"getPosition1",
"(",
")",
",",
"getPosition2",
"(",
")",
")",
";",
"}",
"@",
"Override",
"public",
"boolean",
"equals",
"(",
"Object",
"o",
")",
"{",
"Pair",
"x",
"=",
"this",
";",
"Pair",
"y",
"=",
"(",
"Pair",
")",
"o",
";",
"return",
"(",
"(",
"x",
".",
"getPosition1",
"(",
")",
".",
"equals",
"(",
"y",
".",
"getPosition1",
"(",
")",
")",
"&&",
"x",
".",
"getPosition2",
"(",
")",
".",
"equals",
"(",
"y",
".",
"getPosition2",
"(",
")",
")",
")",
"||",
"(",
"x",
".",
"getPosition1",
"(",
")",
".",
"equals",
"(",
"y",
".",
"getPosition2",
"(",
")",
")",
"&&",
"x",
".",
"getPosition2",
"(",
")",
".",
"equals",
"(",
"y",
".",
"getPosition1",
"(",
")",
")",
")",
")",
";",
"}",
"@",
"Override",
"public",
"int",
"hashCode",
"(",
")",
"{",
"return",
"0",
";",
"}",
"}",
"</s>"
] |
11,791 | [
"<s>",
"package",
"aga",
".",
"mahjong",
".",
"core",
";",
"import",
"java",
".",
"util",
".",
"ArrayList",
";",
"import",
"java",
".",
"util",
".",
"Collection",
";",
"public",
"class",
"TileSet",
"{",
"private",
"static",
"ArrayList",
"<",
"Tile",
">",
"list",
";",
"public",
"static",
"Collection",
"<",
"Tile",
">",
"getAllTiles",
"(",
")",
"{",
"if",
"(",
"list",
"==",
"null",
")",
"{",
"list",
"=",
"new",
"java",
".",
"util",
".",
"ArrayList",
"<",
"Tile",
">",
"(",
")",
";",
"for",
"(",
"int",
"n",
"=",
"1",
";",
"n",
"<=",
"4",
";",
"n",
"++",
")",
"{",
"for",
"(",
"int",
"i",
"=",
"1",
";",
"i",
"<=",
"9",
";",
"i",
"++",
")",
"{",
"list",
".",
"add",
"(",
"new",
"Tile",
"(",
"TileKind",
".",
"Dot",
",",
"i",
")",
")",
";",
"}",
"}",
"for",
"(",
"int",
"n",
"=",
"1",
";",
"n",
"<=",
"4",
";",
"n",
"++",
")",
"{",
"for",
"(",
"int",
"i",
"=",
"1",
";",
"i",
"<=",
"9",
";",
"i",
"++",
")",
"{",
"list",
".",
"add",
"(",
"new",
"Tile",
"(",
"TileKind",
".",
"Bamboo",
",",
"i",
")",
")",
";",
"}",
"}",
"for",
"(",
"int",
"n",
"=",
"1",
";",
"n",
"<=",
"4",
";",
"n",
"++",
")",
"{",
"for",
"(",
"int",
"i",
"=",
"1",
";",
"i",
"<=",
"9",
";",
"i",
"++",
")",
"{",
"list",
".",
"add",
"(",
"new",
"Tile",
"(",
"TileKind",
".",
"Character",
",",
"i",
")",
")",
";",
"}",
"}",
"for",
"(",
"int",
"n",
"=",
"1",
";",
"n",
"<=",
"4",
";",
"n",
"++",
")",
"{",
"for",
"(",
"int",
"i",
"=",
"1",
";",
"i",
"<=",
"4",
";",
"i",
"++",
")",
"{",
"list",
".",
"add",
"(",
"new",
"Tile",
"(",
"TileKind",
".",
"Wind",
",",
"i",
")",
")",
";",
"}",
"}",
"for",
"(",
"int",
"n",
"=",
"1",
";",
"n",
"<=",
"4",
";",
"n",
"++",
")",
"{",
"for",
"(",
"int",
"i",
"=",
"1",
";",
"i",
"<=",
"3",
";",
"i",
"++",
")",
"{",
"list",
".",
"add",
"(",
"new",
"Tile",
"(",
"TileKind",
".",
"Dragon",
",",
"i",
")",
")",
";",
"}",
"}",
"for",
"(",
"int",
"i",
"=",
"1",
";",
"i",
"<=",
"4",
";",
"i",
"++",
")",
"{",
"list",
".",
"add",
"(",
"new",
"Tile",
"(",
"TileKind",
".",
"Season",
",",
"i",
")",
")",
";",
"}",
"for",
"(",
"int",
"i",
"=",
"1",
";",
"i",
"<=",
"4",
";",
"i",
"++",
")",
"{",
"list",
".",
"add",
"(",
"new",
"Tile",
"(",
"TileKind",
".",
"Flower",
",",
"i",
")",
")",
";",
"}",
"assert",
"list",
".",
"size",
"(",
")",
"==",
"144",
";",
"}",
"return",
"list",
";",
"}",
"}",
"</s>"
] |
11,792 | [
"<s>",
"package",
"aga",
".",
"mahjong",
".",
"core",
";",
"public",
"enum",
"TileKind",
"{",
"None",
",",
"Dot",
",",
"Character",
",",
"Bamboo",
",",
"Wind",
",",
"Dragon",
",",
"Season",
",",
"Flower",
";",
"public",
"int",
"getValue",
"(",
")",
"{",
"return",
"this",
".",
"ordinal",
"(",
")",
";",
"}",
"public",
"static",
"TileKind",
"forValue",
"(",
"int",
"value",
")",
"{",
"return",
"values",
"(",
")",
"[",
"value",
"]",
";",
"}",
"}",
"</s>"
] |
11,793 | [
"<s>",
"package",
"aga",
".",
"mahjong",
".",
"core",
";",
"import",
"java",
".",
"io",
".",
"Serializable",
";",
"import",
"java",
".",
"util",
".",
"ArrayList",
";",
"import",
"java",
".",
"util",
".",
"HashMap",
";",
"import",
"java",
".",
"util",
".",
"HashSet",
";",
"public",
"class",
"Board",
"implements",
"Serializable",
"{",
"private",
"static",
"final",
"long",
"serialVersionUID",
"=",
"-",
"5903179874925723302L",
";",
"private",
"ArrayList",
"<",
"Position",
">",
"selection",
"=",
"new",
"ArrayList",
"<",
"Position",
">",
"(",
")",
";",
"private",
"final",
"Layout",
"layout",
";",
"private",
"Tile",
"[",
"]",
"[",
"]",
"[",
"]",
"tiles",
";",
"private",
"int",
"layerCount",
",",
"rowCount",
",",
"columnCount",
";",
"private",
"int",
"tilesCount",
",",
"payersCount",
";",
"public",
"static",
"String",
"getMove",
"(",
"Board",
"a",
",",
"Board",
"b",
")",
"{",
"StringBuilder",
"sb",
"=",
"new",
"StringBuilder",
"(",
")",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"a",
".",
"layerCount",
";",
"i",
"++",
")",
"{",
"for",
"(",
"int",
"j",
"=",
"0",
";",
"j",
"<",
"a",
".",
"rowCount",
";",
"j",
"++",
")",
"{",
"for",
"(",
"int",
"k",
"=",
"0",
";",
"k",
"<",
"a",
".",
"columnCount",
";",
"k",
"++",
")",
"{",
"Tile",
"tile1",
"=",
"a",
".",
"getItem",
"(",
"i",
",",
"j",
",",
"k",
")",
";",
"Tile",
"tile2",
"=",
"b",
".",
"getItem",
"(",
"i",
",",
"j",
",",
"k",
")",
";",
"if",
"(",
"tile1",
"==",
"null",
"&&",
"tile2",
"!=",
"null",
")",
"{",
"sb",
".",
"append",
"(",
"String",
".",
"format",
"(",
"\"\"",
",",
"tile2",
".",
"toString",
"(",
")",
",",
"i",
",",
"j",
",",
"k",
")",
")",
";",
"}",
"else",
"if",
"(",
"tile1",
"!=",
"null",
"&&",
"tile2",
"==",
"null",
")",
"{",
"sb",
".",
"append",
"(",
"String",
".",
"format",
"(",
"\"\"",
",",
"tile1",
".",
"toString",
"(",
")",
",",
"i",
",",
"j",
",",
"k",
")",
")",
";",
"}",
"}",
"}",
"}",
"sb",
".",
"append",
"(",
"\"n\"",
")",
";",
"return",
"sb",
".",
"toString",
"(",
")",
";",
"}",
"public",
"static",
"Pair",
"getMoveInPair",
"(",
"Board",
"a",
",",
"Board",
"b",
")",
"{",
"Position",
"pos1",
"=",
"null",
";",
"Position",
"pos2",
"=",
"null",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"a",
".",
"layerCount",
";",
"i",
"++",
")",
"{",
"for",
"(",
"int",
"j",
"=",
"0",
";",
"j",
"<",
"a",
".",
"rowCount",
";",
"j",
"++",
")",
"{",
"for",
"(",
"int",
"k",
"=",
"0",
";",
"k",
"<",
"a",
".",
"columnCount",
";",
"k",
"++",
")",
"{",
"Tile",
"tile1",
"=",
"a",
".",
"getItem",
"(",
"i",
",",
"j",
",",
"k",
")",
";",
"Tile",
"tile2",
"=",
"b",
".",
"getItem",
"(",
"i",
",",
"j",
",",
"k",
")",
";",
"if",
"(",
"tile1",
"==",
"null",
"&&",
"tile2",
"!=",
"null",
")",
"{",
"if",
"(",
"pos1",
"==",
"null",
")",
"{",
"pos1",
"=",
"new",
"Position",
"(",
"i",
",",
"j",
",",
"k",
")",
";",
"}",
"else",
"{",
"pos2",
"=",
"new",
"Position",
"(",
"i",
",",
"j",
",",
"k",
")",
";",
"break",
";",
"}",
"}",
"else",
"if",
"(",
"tile1",
"!=",
"null",
"&&",
"tile2",
"==",
"null",
")",
"{",
"if",
"(",
"pos1",
"==",
"null",
")",
"{",
"pos1",
"=",
"new",
"Position",
"(",
"i",
",",
"j",
",",
"k",
")",
";",
"}",
"else",
"{",
"pos2",
"=",
"new",
"Position",
"(",
"i",
",",
"j",
",",
"k",
")",
";",
"break",
";",
"}",
"}",
"}",
"}",
"}",
"return",
"new",
"Pair",
"(",
"pos1",
",",
"pos2",
")",
";",
"}",
"public",
"boolean",
"isValid",
"(",
")",
"{",
"HashMap",
"<",
"String",
",",
"Integer",
">",
"map",
"=",
"new",
"HashMap",
"<",
"String",
",",
"Integer",
">",
"(",
")",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"layerCount",
";",
"i",
"++",
")",
"{",
"for",
"(",
"int",
"j",
"=",
"0",
";",
"j",
"<",
"rowCount",
";",
"j",
"++",
")",
"{",
"for",
"(",
"int",
"k",
"=",
"0",
";",
"k",
"<",
"columnCount",
";",
"k",
"++",
")",
"{",
"Tile",
"tile",
"=",
"getItem",
"(",
"i",
",",
"j",
",",
"k",
")",
";",
"if",
"(",
"tile",
"==",
"null",
")",
"{",
"continue",
";",
"}",
"String",
"key",
"=",
"null",
";",
"if",
"(",
"tile",
".",
"toString",
"(",
")",
".",
"contains",
"(",
"\"S\"",
")",
")",
"{",
"key",
"=",
"\"S\"",
";",
"}",
"else",
"if",
"(",
"tile",
".",
"toString",
"(",
")",
".",
"contains",
"(",
"\"F\"",
")",
")",
"{",
"key",
"=",
"\"F\"",
";",
"}",
"else",
"{",
"key",
"=",
"tile",
".",
"toString",
"(",
")",
";",
"}",
"Integer",
"amount",
"=",
"map",
".",
"get",
"(",
"key",
")",
";",
"if",
"(",
"amount",
"==",
"null",
")",
"{",
"map",
".",
"put",
"(",
"key",
",",
"1",
")",
";",
"}",
"else",
"{",
"map",
".",
"put",
"(",
"key",
",",
"amount",
"+",
"1",
")",
";",
"}",
"}",
"}",
"}",
"boolean",
"ret",
"=",
"true",
";",
"for",
"(",
"String",
"key",
":",
"map",
".",
"keySet",
"(",
")",
")",
"{",
"Integer",
"amount",
"=",
"map",
".",
"get",
"(",
"key",
")",
";",
"if",
"(",
"amount",
"%",
"2",
"!=",
"0",
")",
"{",
"System",
".",
"out",
".",
"println",
"(",
"\"\"",
"+",
"key",
"+",
"\"",
"amount:",
"\"",
"+",
"amount",
")",
";",
"ret",
"=",
"false",
";",
"break",
";",
"}",
"}",
"return",
"ret",
";",
"}",
"@",
"Override",
"public",
"Object",
"clone",
"(",
")",
"throws",
"CloneNotSupportedException",
"{",
"Board",
"clone",
"=",
"new",
"Board",
"(",
"layout",
")",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"layerCount",
";",
"i",
"++",
")",
"{",
"for",
"(",
"int",
"j",
"=",
"0",
";",
"j",
"<",
"rowCount",
";",
"j",
"++",
")",
"{",
"for",
"(",
"int",
"k",
"=",
"0",
";",
"k",
"<",
"columnCount",
";",
"k",
"++",
")",
"{",
"clone",
".",
"tiles",
"[",
"i",
"]",
"[",
"j",
"]",
"[",
"k",
"]",
"=",
"tiles",
"[",
"i",
"]",
"[",
"j",
"]",
"[",
"k",
"]",
";",
"}",
"}",
"}",
"clone",
".",
"layerCount",
"=",
"layerCount",
";",
"clone",
".",
"rowCount",
"=",
"rowCount",
";",
"clone",
".",
"columnCount",
"=",
"columnCount",
";",
"clone",
".",
"tilesCount",
"=",
"tilesCount",
";",
"clone",
".",
"payersCount",
"=",
"payersCount",
";",
"return",
"clone",
";",
"}",
"@",
"Override",
"public",
"String",
"toString",
"(",
")",
"{",
"StringBuilder",
"sb",
"=",
"new",
"StringBuilder",
"(",
")",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"layerCount",
";",
"i",
"++",
")",
"{",
"for",
"(",
"int",
"j",
"=",
"0",
";",
"j",
"<",
"rowCount",
";",
"j",
"++",
")",
"{",
"for",
"(",
"int",
"k",
"=",
"0",
";",
"k",
"<",
"columnCount",
";",
"k",
"++",
")",
"{",
"if",
"(",
"tiles",
"[",
"i",
"]",
"[",
"j",
"]",
"[",
"k",
"]",
"==",
"null",
")",
"{",
"sb",
".",
"append",
"(",
"\"-\"",
")",
";",
"}",
"else",
"{",
"sb",
".",
"append",
"(",
"tiles",
"[",
"i",
"]",
"[",
"j",
"]",
"[",
"k",
"]",
".",
"toString",
"(",
")",
")",
";",
"}",
"}",
"sb",
".",
"append",
"(",
"\"n\"",
")",
";",
"}",
"sb",
".",
"append",
"(",
"\"\"",
"+",
"i",
"+",
"\"",
"******n\"",
")",
";",
"}",
"return",
"sb",
".",
"toString",
"(",
")",
";",
"}",
"public",
"Tile",
"getItem",
"(",
"Position",
"pos",
")",
"{",
"return",
"tiles",
"[",
"pos",
".",
"getLayer",
"(",
")",
"]",
"[",
"pos",
".",
"getRow",
"(",
")",
"]",
"[",
"pos",
".",
"getColumn",
"(",
")",
"]",
";",
"}",
"public",
"void",
"setItem",
"(",
"Position",
"pos",
",",
"Tile",
"value",
")",
"{",
"setItem",
"(",
"pos",
".",
"getLayer",
"(",
")",
",",
"pos",
".",
"getRow",
"(",
")",
",",
"pos",
".",
"getColumn",
"(",
")",
",",
"value",
")",
";",
"}",
"public",
"Tile",
"getItem",
"(",
"int",
"layer",
",",
"int",
"row",
",",
"int",
"column",
")",
"{",
"if",
"(",
"layer",
"<",
"getLayerCount",
"(",
")",
"&&",
"row",
"<",
"getRowCount",
"(",
")",
"&&",
"column",
"<",
"getColumnCount",
"(",
")",
"&&",
"layer",
">=",
"0",
"&&",
"row",
">=",
"0",
"&&",
"column",
">=",
"0",
")",
"{",
"return",
"tiles",
"[",
"layer",
"]",
"[",
"row",
"]",
"[",
"column",
"]",
";",
"}",
"else",
"{",
"return",
"null",
";",
"}",
"}",
"public",
"void",
"setItem",
"(",
"int",
"layer",
",",
"int",
"row",
",",
"int",
"column",
",",
"Tile",
"value",
")",
"{",
"if",
"(",
"layer",
"<",
"getLayerCount",
"(",
")",
"&&",
"row",
"<",
"getRowCount",
"(",
")",
"&&",
"column",
"<",
"getColumnCount",
"(",
")",
"&&",
"layer",
">=",
"0",
"&&",
"row",
">=",
"0",
"&&",
"column",
">=",
"0",
")",
"{",
"tiles",
"[",
"layer",
"]",
"[",
"row",
"]",
"[",
"column",
"]",
"=",
"value",
";",
"resetStatus",
"(",
")",
";",
"}",
"}",
"public",
"java",
".",
"util",
".",
"List",
"<",
"Position",
">",
"getSelection",
"(",
")",
"{",
"return",
"selection",
";",
"}",
"public",
"int",
"getLayerCount",
"(",
")",
"{",
"return",
"layerCount",
";",
"}",
"public",
"int",
"getRowCount",
"(",
")",
"{",
"return",
"rowCount",
";",
"}",
"public",
"int",
"getColumnCount",
"(",
")",
"{",
"return",
"columnCount",
";",
"}",
"public",
"Iterable",
"<",
"Position",
">",
"getAllPositions",
"(",
")",
"{",
"return",
"layout",
".",
"getPositions",
"(",
")",
";",
"}",
"public",
"synchronized",
"int",
"getTilesCount",
"(",
")",
"{",
"if",
"(",
"tilesCount",
"<",
"0",
")",
"{",
"tilesCount",
"=",
"0",
";",
"for",
"(",
"Position",
"p",
":",
"getAllPositions",
"(",
")",
")",
"{",
"if",
"(",
"getItem",
"(",
"p",
")",
"!=",
"null",
")",
"tilesCount",
"++",
";",
"}",
"}",
"return",
"tilesCount",
";",
"}",
"public",
"int",
"getPayersCount",
"(",
")",
"{",
"if",
"(",
"payersCount",
"<",
"0",
")",
"{",
"payersCount",
"=",
"getPairs",
"(",
")",
".",
"length",
";",
"}",
"return",
"payersCount",
";",
"}",
"public",
"Board",
"(",
"Layout",
"layout",
")",
"{",
"this",
".",
"layout",
"=",
"layout",
";",
"tiles",
"=",
"new",
"Tile",
"[",
"layout",
".",
"getLayerCount",
"(",
")",
"]",
"[",
"layout",
".",
"getRowCount",
"(",
")",
"]",
"[",
"layout",
".",
"getColumnCount",
"(",
")",
"]",
";",
"layerCount",
"=",
"layout",
".",
"getLayerCount",
"(",
")",
";",
"rowCount",
"=",
"layout",
".",
"getRowCount",
"(",
")",
";",
"columnCount",
"=",
"layout",
".",
"getColumnCount",
"(",
")",
";",
"resetStatus",
"(",
")",
";",
"}",
"public",
"Cell",
"[",
"]",
"getFreePositions",
"(",
")",
"{",
"ArrayList",
"<",
"Cell",
">",
"res",
"=",
"new",
"ArrayList",
"<",
"Cell",
">",
"(",
")",
";",
"for",
"(",
"Position",
"p",
":",
"getAllPositions",
"(",
")",
")",
"{",
"if",
"(",
"getItem",
"(",
"p",
")",
"!=",
"null",
"&&",
"isFree",
"(",
"p",
")",
")",
"res",
".",
"add",
"(",
"new",
"Cell",
"(",
"p",
",",
"this",
".",
"getItem",
"(",
"p",
")",
")",
")",
";",
"}",
"return",
"res",
".",
"toArray",
"(",
"new",
"Cell",
"[",
"res",
".",
"size",
"(",
")",
"]",
")",
";",
"}",
"public",
"boolean",
"isFree",
"(",
"Position",
"pos",
")",
"{",
"boolean",
"flag1",
"=",
"true",
";",
"boolean",
"flag2",
"=",
"true",
";",
"for",
"(",
"int",
"row",
"=",
"pos",
".",
"getRow",
"(",
")",
"-",
"1",
";",
"row",
"<=",
"pos",
".",
"getRow",
"(",
")",
"+",
"1",
";",
"row",
"++",
")",
"{",
"if",
"(",
"getItem",
"(",
"pos",
".",
"getLayer",
"(",
")",
",",
"row",
",",
"pos",
".",
"getColumn",
"(",
")",
"-",
"2",
")",
"!=",
"null",
")",
"{",
"flag1",
"=",
"false",
";",
"}",
"if",
"(",
"getItem",
"(",
"pos",
".",
"getLayer",
"(",
")",
",",
"row",
",",
"pos",
".",
"getColumn",
"(",
")",
"+",
"2",
")",
"!=",
"null",
")",
"{",
"flag2",
"=",
"false",
";",
"}",
"}",
"if",
"(",
"flag1",
"||",
"flag2",
")",
"{",
"if",
"(",
"pos",
".",
"getLayer",
"(",
")",
"<",
"getLayerCount",
"(",
")",
"-",
"1",
")",
"{",
"for",
"(",
"int",
"row",
"=",
"pos",
".",
"getRow",
"(",
")",
"-",
"1",
";",
"row",
"<=",
"pos",
".",
"getRow",
"(",
")",
"+",
"1",
";",
"row",
"++",
")",
"{",
"for",
"(",
"int",
"col",
"=",
"pos",
".",
"getColumn",
"(",
")",
"-",
"1",
";",
"col",
"<=",
"pos",
".",
"getColumn",
"(",
")",
"+",
"1",
";",
"col",
"++",
")",
"{",
"if",
"(",
"getItem",
"(",
"pos",
".",
"getLayer",
"(",
")",
"+",
"1",
",",
"row",
",",
"col",
")",
"!=",
"null",
")",
"{",
"return",
"false",
";",
"}",
"}",
"}",
"}",
"return",
"true",
";",
"}",
"else",
"{",
"return",
"false",
";",
"}",
"}",
"public",
"Pair",
"[",
"]",
"getPairs",
"(",
")",
"{",
"HashSet",
"<",
"Pair",
">",
"res",
"=",
"new",
"HashSet",
"<",
"Pair",
">",
"(",
")",
";",
"Cell",
"[",
"]",
"positions",
"=",
"getFreePositions",
"(",
")",
";",
"for",
"(",
"Cell",
"p",
":",
"positions",
")",
"{",
"for",
"(",
"Cell",
"q",
":",
"positions",
")",
"{",
"if",
"(",
"!",
"p",
".",
"getPosition",
"(",
")",
".",
"equals",
"(",
"q",
".",
"getPosition",
"(",
")",
")",
"&&",
"Tile",
".",
"isMatch",
"(",
"p",
".",
"getTile",
"(",
")",
",",
"q",
".",
"getTile",
"(",
")",
")",
")",
"res",
".",
"add",
"(",
"new",
"Pair",
"(",
"p",
".",
"getPosition",
"(",
")",
",",
"q",
".",
"getPosition",
"(",
")",
")",
")",
";",
"}",
"}",
"return",
"res",
".",
"toArray",
"(",
"new",
"Pair",
"[",
"res",
".",
"size",
"(",
")",
"]",
")",
";",
"}",
"private",
"void",
"resetStatus",
"(",
")",
"{",
"payersCount",
"=",
"tilesCount",
"=",
"-",
"1",
";",
"}",
"}",
"</s>"
] |
11,794 | [
"<s>",
"package",
"aga",
".",
"mahjong",
".",
"core",
";",
"import",
"java",
".",
"util",
".",
"ArrayList",
";",
"public",
"class",
"RandomArrange",
"implements",
"IArrangeStrategy",
"{",
"public",
"void",
"arrange",
"(",
"Board",
"board",
")",
"{",
"java",
".",
"util",
".",
"Random",
"rnd",
"=",
"new",
"java",
".",
"util",
".",
"Random",
"(",
")",
";",
"ArrayList",
"<",
"Tile",
">",
"initLayout",
"=",
"new",
"ArrayList",
"<",
"Tile",
">",
"(",
")",
";",
"ArrayList",
"<",
"Tile",
">",
"tiles",
"=",
"new",
"ArrayList",
"<",
"Tile",
">",
"(",
"TileSet",
".",
"getAllTiles",
"(",
")",
")",
";",
"for",
"(",
"Position",
"pos",
":",
"board",
".",
"getAllPositions",
"(",
")",
")",
"{",
"if",
"(",
"pos",
".",
"getLayer",
"(",
")",
">",
"0",
")",
"{",
"break",
";",
"}",
"if",
"(",
"pos",
".",
"getRow",
"(",
")",
"==",
"0",
")",
"{",
"int",
"i",
"=",
"rnd",
".",
"nextInt",
"(",
"tiles",
".",
"size",
"(",
")",
")",
";",
"board",
".",
"setItem",
"(",
"pos",
",",
"tiles",
".",
"get",
"(",
"i",
")",
")",
";",
"initLayout",
".",
"add",
"(",
"tiles",
".",
"get",
"(",
"i",
")",
")",
";",
"tiles",
".",
"remove",
"(",
"i",
")",
";",
"}",
"}",
"}",
"}",
"</s>"
] |
11,795 | [
"<s>",
"package",
"com",
".",
"mapr",
";",
"public",
"class",
"RpcCounter",
"{",
"}",
"</s>"
] |
11,796 | [
"<s>",
"package",
"com",
".",
"mapr",
".",
"stats",
";",
"import",
"java",
".",
"util",
".",
"Random",
";",
"public",
"class",
"GammaNormalBayesModel",
"extends",
"BayesianBandit",
"{",
"public",
"GammaNormalBayesModel",
"(",
"int",
"bandits",
",",
"Random",
"gen",
")",
"{",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"bandits",
";",
"i",
"++",
")",
"{",
"addModelDistribution",
"(",
"new",
"GammaNormalDistribution",
"(",
"0",
",",
"1",
",",
"1",
",",
"gen",
")",
")",
";",
"}",
"}",
"}",
"</s>"
] |
11,797 | [
"<s>",
"package",
"com",
".",
"mapr",
".",
"stats",
";",
"import",
"org",
".",
"apache",
".",
"mahout",
".",
"math",
".",
"jet",
".",
"random",
".",
"Normal",
";",
"import",
"java",
".",
"util",
".",
"Random",
";",
"public",
"class",
"NormalDistributionSampler",
"extends",
"DistributionGenerator",
"{",
"private",
"double",
"sd",
";",
"private",
"Random",
"gen",
";",
"public",
"NormalDistributionSampler",
"(",
"double",
"sd",
",",
"Random",
"gen",
")",
"{",
"this",
".",
"sd",
"=",
"sd",
";",
"this",
".",
"gen",
"=",
"gen",
";",
"}",
"@",
"Override",
"public",
"DistributionWithMean",
"nextDistribution",
"(",
")",
"{",
"double",
"mean",
"=",
"gen",
".",
"nextDouble",
"(",
")",
";",
"return",
"new",
"DistributionWithMean",
"(",
"new",
"Normal",
"(",
"mean",
",",
"sd",
",",
"gen",
")",
",",
"mean",
")",
";",
"}",
"}",
"</s>"
] |
11,798 | [
"<s>",
"package",
"com",
".",
"mapr",
".",
"stats",
";",
"import",
"org",
".",
"apache",
".",
"mahout",
".",
"math",
".",
"jet",
".",
"random",
".",
"AbstractContinousDistribution",
";",
"public",
"abstract",
"class",
"AbstractBayesianDistribution",
"extends",
"AbstractContinousDistribution",
"{",
"@",
"Override",
"public",
"abstract",
"double",
"nextDouble",
"(",
")",
";",
"public",
"abstract",
"void",
"add",
"(",
"double",
"x",
")",
";",
"public",
"abstract",
"double",
"nextMean",
"(",
")",
";",
"public",
"abstract",
"AbstractContinousDistribution",
"posteriorDistribution",
"(",
")",
";",
"}",
"</s>"
] |
11,799 | [
"<s>",
"package",
"com",
".",
"mapr",
".",
"stats",
";",
"abstract",
"class",
"DistributionGenerator",
"{",
"public",
"abstract",
"DistributionWithMean",
"nextDistribution",
"(",
")",
";",
"}",
"</s>"
] |