本文整理汇总了Java中org.apache.giraph.conf.GiraphConfiguration.setInputOutEdgesClass方法的典型用法代码示例。如果您正苦于以下问题:Java GiraphConfiguration.setInputOutEdgesClass方法的具体用法?Java GiraphConfiguration.setInputOutEdgesClass怎么用?Java GiraphConfiguration.setInputOutEdgesClass使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.giraph.conf.GiraphConfiguration
的用法示例。
在下文中一共展示了GiraphConfiguration.setInputOutEdgesClass方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testDifferentInputEdgesClass
import org.apache.giraph.conf.GiraphConfiguration; //导入方法依赖的package包/类
@Test
public void testDifferentInputEdgesClass() throws Exception {
String[] edges = new String[] {
"1 2",
"2 3",
"2 4",
"4 1"
};
GiraphConfiguration conf = new GiraphConfiguration();
conf.setComputationClass(TestComputationCheckEdgesType.class);
conf.setOutEdgesClass(ByteArrayEdges.class);
conf.setInputOutEdgesClass(TestOutEdgesFilterEven.class);
conf.setEdgeInputFormatClass(IntNullTextEdgeInputFormat.class);
conf.setVertexOutputFormatClass(IdWithValueTextOutputFormat.class);
Iterable<String> results = InternalVertexRunner.run(conf, null, edges);
Map<Integer, Integer> values = parseResults(results);
// Check that all vertices with outgoing edges in the input have been
// created
assertEquals(3, values.size());
// Check the number of edges for each vertex (edges with odd target id
// should have been removed)
assertEquals(1, (int) values.get(1));
assertEquals(1, (int) values.get(2));
assertEquals(0, (int) values.get(4));
}
示例2: testDifferentInputEdgesClass
import org.apache.giraph.conf.GiraphConfiguration; //导入方法依赖的package包/类
@Test
public void testDifferentInputEdgesClass() throws Exception {
String[] edges = new String[] {
"1 2",
"2 3",
"2 4",
"4 1"
};
GiraphConfiguration conf = new GiraphConfiguration();
conf.setVertexClass(TestVertexCheckEdgesType.class);
conf.setOutEdgesClass(ByteArrayEdges.class);
conf.setInputOutEdgesClass(TestOutEdgesFilterEven.class);
conf.setEdgeInputFormatClass(IntNullTextEdgeInputFormat.class);
conf.setVertexOutputFormatClass(IdWithValueTextOutputFormat.class);
Iterable<String> results = InternalVertexRunner.run(conf, null, edges);
Map<Integer, Integer> values = parseResults(results);
// Check that all vertices with outgoing edges in the input have been
// created
assertEquals(3, values.size());
// Check the number of edges for each vertex (edges with odd target id
// should have been removed)
assertEquals(1, (int) values.get(1));
assertEquals(1, (int) values.get(2));
assertEquals(0, (int) values.get(4));
}