search for: subgraph

Displaying 20 results from an estimated 95 matches for "subgraph".

2011 Nov 06
1
Request for Help: y-axis label overlapped by x-axis in subplots in big plot
Dear All, I would like to seek for help on this issue: 1. I set par(mfrow=c(2,2)), hoping to plot 4 subgraphs in a whole graph 2. Each subgraph has its own x,y axes and each has x-axis label and y-axis label 3. moreover, subgraphs in the left column of the whole graph are all 3D, and have z axes and labels for z axes 4. subgraphs in the right column of the whole graph are all 2D 5. In each subgraph, x-a...
2007 Mar 16
1
Fast lookup in ragged array
Hello, I'm running an algorithm for graph structural cohesion that requires a depth-first search of subgraphs of a rather large network. The algorithm will necessarily be redundant in the subgraphs it recurses to, so to speed up the process I implemented a check at each subgraph to see if it's been searched already. This algorithm is very slow, and takes days to complete on a graph with about...
2016 Sep 06
2
igraph V a partir de E y subgrafos
Estimado Javier, Me alegra que hayas avanzado con tu error. Te respondo a esto último. La función induced.subgraph() espera como segundo parámetro una lista de los IDs de los vértices, mientras que tú le estás pasando una lista de 'edges'. Prueba lo siguiente: c <- induced.subgraph(datos.network, which(V(datos.network)$name == 'Casa')) Si entendí bien todo, debería funcionar. Un saludo,...
2012 Mar 10
1
Help on subgraphs in xyplot of lattice library
Dear All, I would like to ask a question on how to do overlay plots in each subgraph of xyplot. 1. I did simulations for m=1000, 2500, 5000, 10000, as the sample sizes. 2. for each sample size value m, 4 graphs are generated; each graph contains overlayed comparisons between 4 methods, 3. now I want put them into a 4-by-4 plot by xyplot, i.e., 4 sample size values, each of whi...
2012 Jul 31
1
Subgraph isomorphism using vertex labels
Hi all, I want to find all the mappings of one graph in another graph, based on their vertex labels Is there any way to do this in igraph based on vertex labels. (as far as i know Igraph allows the subgraph isomorphism based only on vertex and edge colors) Eg: graph 1: x(1) x(2) x(2) y(3) y(4) x(1) z(5) x(2) graph 2: x(1) y(2) # the brackets contain the corresponding vertex ids i would like my output to contain the two mappings from graph 1 i.e x(2) y(3) & x(1) y(4) Regards, Himanshu Mittal...
2012 Jul 11
1
igraph function "graph.bfs" unavailable
...1-10-31) Copyright (C) 2011 The R Foundation for Statistical Computing ISBN 3-900051-07-0 Platform: x86_64-pc-mingw32/x64 (64-bit) If for some reason this algorithm really is just unavailable, maybe someone can come up with another way to solve my problem. I need a function that builds subgraphs up to a limited distance from an input root node. I feel like this is a common enough task that there's probably an easier way to do it, but I'm still learning what tools are available to me in igraph and built my own solution. The code below was tested on a machine that didn't have is...
2009 Dec 04
1
R igraph clusters component
Hi R-users, I'm using igraph for an undirected graph. i used clusters() igraph function to know the component size(subgraphs) as shown bellow: c <-clusters(g)    # component sizes size <- sort(c$csize, decreasing=TRUE) cat("Top 20 cluster of the graph","\n") for (i in 1:20) {   cat(i,"  size:",size[i] ,"\n") } Can anyone help how to extract the subgraph components  based o...
2017 Aug 01
7
[RFC] Add IR level interprocedural outliner for code size.
...both directions to prove that ;) All that's been shown is that you can reduce it to a hard problem. You can also reduce it to 3-sat., but that doesn't mean anything unless you can reduce 3-sat to it. 5. The actual problem the outliner is trying to solve is actually more like > finding subgraphs that are isomorphic, making the problem even harder > (something like "given dags A and B does there exist a subgraph of A that > is isomorphic to a subgraph of B") > > This assumes, strongly, that this reduction is the way to do it, and also that SSA/etc imparts no structure...
2008 Apr 08
1
Change the position of panel strips in a lattice plot.
Hi all, In lattice plots, is there any option to position the panel strips with text below each subgraph, instead of above? i.e. in: Depth <- equal.count(quakes$depth, number=8, overlap=.1) xyplot(lat ~ long | Depth, data = quakes) ,is there any way to make "Depth" appear below the subgraphs, instead of above? I've been looking through the lattice documentation and the list archive bu...
2016 Sep 03
2
igraph V a partir de E y subgrafos
...) me resulta un poco ?feo?. La siguiente forma me es mucho más agradable a la vista > a <- E(datos.network)[[inc(?Casa?)]] Los veo como un data.frame, correcto, varias columnas, una por cada categoría de E y su palabra correspondiente. Pero plot(a) no grafica una red. No lo es. > b <- subgraph.edges(datos.network, E(datos.network)[[inc('Casa')]]) Lo mismo, pero ahora es una red, lo grafico y me doy cuenta que faltan cosas, detecta el V que tiene el E, pero no toma ningún E de ese V que no coincida la palabra, en otra forma, A?B en la columna habitad tienen ?Casa? y en la columna...
2017 Feb 27
5
[Proposal][RFC] Epilog loop vectorization
...un it on sub-graphs. Yes we probably don’t want to run a full GVN after the “loop-scheduling” passes. I guess the pipeline to experiment with for now is opt -loop-vectorize -loop-vectorize -newgvn. Adam > The only thing you'd have to do is write some code to set "live on entry" subgraph variables in their own congruence classes. > We already do this for incoming arguments. > > Otherwise, it's trivial to make it only walk things in the subgraph. > > -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/piper...
2017 Feb 27
2
[Proposal][RFC] Epilog loop vectorization
...r to true). GVN is pretty fast in that > mode. > > -Hal > > > I guess the pipeline to experiment with for now is opt -loop-vectorize > -loop-vectorize -newgvn. > > Adam > > The only thing you'd have to do is write some code to set "live on entry" > subgraph variables in their own congruence classes. > We already do this for incoming arguments. > > Otherwise, it's trivial to make it only walk things in the subgraph. > > > > > -- > Hal Finkel > Lead, Compiler Technology and Programming Languages > Leadership Computin...
2017 Feb 27
2
[Proposal][RFC] Epilog loop vectorization
...is enabled (i.e. set the NoLoads constructor parameter to true). GVN is pretty fast in that mode. -Hal I guess the pipeline to experiment with for now is opt -loop-vectorize -loop-vectorize -newgvn. Adam The only thing you'd have to do is write some code to set "live on entry" subgraph variables in their own congruence classes. We already do this for incoming arguments. Otherwise, it's trivial to make it only walk things in the subgraph. -- Hal Finkel Lead, Compiler Technology and Programming Languages Leadership Computing Facility Argonne National Laboratory -...
2012 Jun 18
0
igraph 0.6 released
...can now return the edges along the shortest paths. - get.all.shortest.paths() now supports edge weights. Centrality ---------- - Centralization scores for degree, closeness, betweenness and eigenvector centrality. See centralization.scores(). - Personalized Page-Rank scores, see page.rank(). - Subgraph centrality, subgraph.centrality(). - Authority (authority.score()) and hub (hub.score()) scores support edge weights now. - Support edge weights in betweenness and closeness calculations. - bonpow(), Bonacich's power centrality and alpha.centrality(), Alpha centrality calculations now use s...
2012 Jun 18
0
igraph 0.6 released
...can now return the edges along the shortest paths. - get.all.shortest.paths() now supports edge weights. Centrality ---------- - Centralization scores for degree, closeness, betweenness and eigenvector centrality. See centralization.scores(). - Personalized Page-Rank scores, see page.rank(). - Subgraph centrality, subgraph.centrality(). - Authority (authority.score()) and hub (hub.score()) scores support edge weights now. - Support edge weights in betweenness and closeness calculations. - bonpow(), Bonacich's power centrality and alpha.centrality(), Alpha centrality calculations now use s...
2009 Dec 14
1
[LLVMdev] project idea: llvm superoptimizer
...ombiner, and probably a few other passes as well. Benefits would include not missing cases missed by the current combiner and also more easily adapting to changes in the LLVM IR. All previous superoptimizers have worked on linear sequences of code. It would seem much better to operate on small subgraphs of the program dependency graph. I haven't worked out the details... John Regehr
2010 Feb 18
1
[LLVMdev] Question on selection DAG
...ting scheduled between FOO and arg(r1). If BAR1 and BAR2 are unrelated operations, the following is a legal schedule : consumeArg(r1) consumeArg(r2) FOO BAR1 arg(r1) BAR2 arg(r2) This leads to illegal assembly program because the assembler expects FOO r1, r2 to appear together. How can I make the subgraph FOO->arg(r1)->arg(r2) be always scheduled as a group, i.e., prevent unrelated ops from getting scheduled in between? Thanks, Manjunath
2008 Feb 20
0
igraph package, version 0.5
...hub and authority scores, eigenvector centrality, etc. There is also a generic interface if someone wants to use ARPACK for a different (not necessarily graph-related) problem. - We support the BLISS graph isomorphism algorithm, and the implementation of the VF2 algorithm can calculate subgraph isomorphisms now. - We include a collection of "famous" graphs, these can be created by referring to their name. - We have a new 'graph.formula' function, for creating small graphs using symbolic names, by giving simple R formulae. - Many functions support weighted graph...
2008 Feb 20
0
igraph package, version 0.5
...hub and authority scores, eigenvector centrality, etc. There is also a generic interface if someone wants to use ARPACK for a different (not necessarily graph-related) problem. - We support the BLISS graph isomorphism algorithm, and the implementation of the VF2 algorithm can calculate subgraph isomorphisms now. - We include a collection of "famous" graphs, these can be created by referring to their name. - We have a new 'graph.formula' function, for creating small graphs using symbolic names, by giving simple R formulae. - Many functions support weighted graph...
2010 Oct 08
1
[LLVMdev] register constraints
...e neat to be able to do this somehow. When I define a sext_inreg instruction, LLVM does not match the sext node in the DAG with this, unfortunately. How is feats like this supposed to be done? Right now it seems that I need to do a custom lowering impelementation to replace the sext-SDValue with a subgraph with a 32bit virtual register, a copy to the low subregister, and then a sext_inreg node. Am I right? I would appreciate any answer, Jonas -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/201010...