当前位置: 首页>>代码示例>>Java>>正文


Java Graph.getIncidentEdges方法代码示例

本文整理汇总了Java中edu.uci.ics.jung.graph.Graph.getIncidentEdges方法的典型用法代码示例。如果您正苦于以下问题:Java Graph.getIncidentEdges方法的具体用法?Java Graph.getIncidentEdges怎么用?Java Graph.getIncidentEdges使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在edu.uci.ics.jung.graph.Graph的用法示例。


在下文中一共展示了Graph.getIncidentEdges方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: addSynsets

import edu.uci.ics.jung.graph.Graph; //导入方法依赖的package包/类
private void addSynsets(ViwnNode v) {
    popup.setVisible(false);
    Object[] syns = synset_list_.getSelectedValues();
    if (syns.length > 0) {
        vgvui.deselectAll();
    }
    ViwnNode other = v;
    for (Object obj : syns) {
        vgvui.addSynsetFromSet((ViwnNodeSynset) obj);
        other = (ViwnNode) obj;
    }
    if (syns.length > 0) {
        ViwnNode p2 = v;
        Graph<ViwnNode, ViwnEdge> g = vgvui.getGraph();
        ViwnNode parent = v.getSpawner();
        boolean dissapear = true;
        for (ViwnEdge edge : g.getIncidentEdges(parent)) {
            ViwnNode opposite = g.getOpposite(parent, edge);
            if (parent.equals(opposite.getSpawner())
                    && (opposite.getSpawnDir() != null)) {
                if (opposite == v) {
                    dissapear = false;
                }
            }
        }
        if (dissapear) {
            if (other != null) {
                p2 = other;
            } else {
                p2 = v.getSpawner();
            }
        }
        vgvui.recreateLayoutWithFix(v, p2);
    }
}
 
开发者ID:CLARIN-PL,项目名称:WordnetLoom,代码行数:36,代码来源:ViwnGraphViewPopupGraphMousePlugin.java

示例2: getNeighborsWithHigherCoreness

import edu.uci.ics.jung.graph.Graph; //导入方法依赖的package包/类
private List<V> getNeighborsWithHigherCoreness(Graph<V, E> g, V v) {
	List<V> neighborsWithHigherCoreness = new ArrayList<V>();
	for( E e : g.getIncidentEdges(v) ) {					
		V n = g.getOpposite(v, e);
		if( coreness.get(n) >= coreness.get(v) ) {
			neighborsWithHigherCoreness.add(n);
		}
			
	}
	return neighborsWithHigherCoreness;
}
 
开发者ID:dev-cuttlefish,项目名称:cuttlefish,代码行数:12,代码来源:KCoreLayout.java

示例3: getNeighborsWithHigherCoreness

import edu.uci.ics.jung.graph.Graph; //导入方法依赖的package包/类
private List<V> getNeighborsWithHigherCoreness(Graph<V, E> g, V v) {
	List<V> neighborsWithHigherCoreness = new ArrayList<V>();
	for (E e : g.getIncidentEdges(v)) {
		V n = g.getOpposite(v, e);
		if (coreness.get(n) >= coreness.get(v)) {
			neighborsWithHigherCoreness.add(n);
		}

	}
	return neighborsWithHigherCoreness;
}
 
开发者ID:dev-cuttlefish,项目名称:cuttlefish,代码行数:12,代码来源:WeightedKCoreLayout.java

示例4: getNeighborsWithHigherCoreness

import edu.uci.ics.jung.graph.Graph; //导入方法依赖的package包/类
private List<V> getNeighborsWithHigherCoreness(Graph<V, E> g, V v) {
	List<V> neighborsWithHigherCoreness = new ArrayList<V>();
	for( E e : g.getIncidentEdges(v) ) {					
		V n = g.getOpposite(v, e);
		if( coreness.get(n) > coreness.get(v) ) {
			neighborsWithHigherCoreness.add(n);
		}
			
	}
	return neighborsWithHigherCoreness;
}
 
开发者ID:dev-cuttlefish,项目名称:cuttlefish,代码行数:12,代码来源:KCoreSimpleLayout.java


注:本文中的edu.uci.ics.jung.graph.Graph.getIncidentEdges方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。