- 授权协议: Apache
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: https://github.com/google/compile-testing
软件介绍
Compile Testing 是一个用来测试 Javac 和注释处理器的工具。
示例代码:
@RunWith(JUnit4.class)
public class TreeContextTest {
@Rule public final ExpectedException expectedExn = ExpectedException.none();
private static final String LITERAL_VALUE = "literal";
private static final ImmutableList<String> baseTreeSource = ImmutableList.of(
"package test;",
"",
"final class TestClass {",
" public String toString() {",
" Object variable = new Object();",
" return \"" + LITERAL_VALUE + "\" + variable;",
" }",
"",
" public void nonsense() {",
" int[] numbers = {0, 1, 2, 3, 4};",
" for (int x : numbers) {",
" if (x % 2 == 0) {",
" throw new IllegalStateException();",
" }",
" }",
" }",
"}");
群体智能
James Kennedy、Russell C Eberhart、Yuhui Shi / 人民邮电出版社 / 2009-2-1 / 75.00元
群体智能是近年来发展迅速的人工智能学科领域.通过研究分散,自组织的动物群体和人类社会的智能行为, 学者们提出了许多迥异于传统思路的智能算法, 很好地解决了不少原来非常棘手的复杂工程问题.与蚁群算法齐名的粒子群优化(particle swarm optimization, 简称PSO)算法就是其中最受瞩目,应用最为广泛的成果之一. 本书由粒子群优化算法之父撰写,是该领域毋庸置疑的经典著作.作者......一起来看看 《群体智能》 这本书的介绍吧!
