├── .gitignore ├── Credits.txt ├── License.txt ├── Makefile ├── Makefile.config ├── ReadMe.txt ├── Release.txt ├── contrib ├── ReadMe.txt └── unict_univr-risnap │ ├── Makefile │ ├── RI-DSToSnap │ ├── LICENSE │ ├── Makefile │ ├── rids.h │ ├── risnapds.cpp │ └── timer.h │ ├── ReadMe.txt │ ├── RiToSnap │ ├── LICENSE │ ├── Makefile │ ├── rinetmatch.h │ ├── risnap.cpp │ └── timer.h │ ├── query.snap │ └── reference.snap ├── doxygen ├── Doxyfile-dev ├── Doxyfile-user ├── Makefile └── doxyblock.py ├── examples ├── .gitignore ├── Makefile ├── Makefile.exmain ├── ReadMe.txt ├── SnapExamples-VS10.sln ├── SnapExamples-VS19.sln ├── XcodeTest │ ├── XcodeTest.xcodeproj │ │ └── project.pbxproj │ └── XcodeTest │ │ ├── main.cpp │ │ └── sample.1 ├── agmfit │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── agmfit.vcxproj │ ├── agmfitmain.cpp │ ├── football.edgelist │ ├── football.labels │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── agmgen │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── agmgen.cpp │ ├── agmgen.vcproj │ ├── agmgen.vcxproj │ ├── community_affiliations.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── as20graph.txt ├── bigclam │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── bigclam.cpp │ ├── bigclam.vcxproj │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── cascadegen │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── cascadegen.cpp │ ├── cascadegen.vcxproj │ ├── reality.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── cascades │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── cascades.cpp │ ├── cascades.vcproj │ ├── cascades.vcxproj │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── centrality │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── centrality.cpp │ ├── centrality.vcproj │ ├── centrality.vcxproj │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── cesna │ ├── 1912.edges │ ├── 1912.nodefeat │ ├── 1912.nodefeatnames │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── cesna.cpp │ ├── cesna.vcxproj │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── circles │ ├── Makefile │ ├── Makefile.ex │ ├── circles.cpp │ ├── circles.vcxproj │ ├── fb1.circles │ ├── fb1.edges │ ├── fb1.feat │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── cliques │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── cliques.vcproj │ ├── cliques.vcxproj │ ├── cliquesmain.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── coda │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── coda.cpp │ ├── coda.vcxproj │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── community │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── community.cpp │ ├── community.vcproj │ ├── community.vcxproj │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── concomp │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── concomp.cpp │ ├── concomp.vcproj │ ├── concomp.vcxproj │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── flows │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── flows.cpp │ ├── flows.vcxproj │ ├── small_sample.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── forestfire │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── forestfire.cpp │ ├── forestfire.vcproj │ ├── forestfire.vcxproj │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── graphgen │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── graphgen.cpp │ ├── graphgen.vcproj │ ├── graphgen.vcxproj │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── graphhash │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── graphhash.cpp │ ├── graphhash.vcproj │ ├── graphhash.vcxproj │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── hysgen │ ├── .gitignore │ ├── .idea │ │ └── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── Makefile.ex │ ├── README.txt │ ├── hysgen_main.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ ├── synthetic_data │ │ ├── ground_truth_comms.txt │ │ ├── synthetic.description │ │ ├── synthetic.edges │ │ └── synthetic.hyperedges │ └── targetver.h ├── infopath │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── example-cascades.txt │ ├── example-network.txt │ ├── generate_nets.cpp │ ├── infopath.cpp │ ├── infopath.vcproj │ ├── infopath.vcxproj │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── kcores │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── kcores.cpp │ ├── kcores.vcproj │ ├── kcores.vcxproj │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── knnjaccardsim │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── knnjaccardsim.cpp │ ├── reality.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── kronem │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── kronem.cpp │ ├── kronem.vcproj │ ├── kronem.vcxproj │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── kronfit │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── kronfit.cpp │ ├── kronfit.vcproj │ ├── kronfit.vcxproj │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── krongen │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── krongen.cpp │ ├── krongen.vcproj │ ├── krongen.vcxproj │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── localmotifcluster │ ├── C-elegans-frontal.txt │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── localmotifclustermain.cpp │ ├── localmotifclustermain.vcxproj │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── lshtest │ ├── Makefile │ ├── Makefile.ex │ └── lshtest.cpp ├── magfit │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── init.config │ ├── magfit.cpp │ ├── magfit.vcproj │ ├── magfit.vcxproj │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── maggen │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── mag.config │ ├── maggen.cpp │ ├── maggen.vcproj │ ├── maggen.vcxproj │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── mkdatasets │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── mkdatasets.cpp │ ├── mkdatasets.vcproj │ ├── mkdatasets.vcxproj │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── motifcluster │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── motifclustermain.cpp │ ├── motifclustermain.vcxproj │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── motifs │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── motifs.cpp │ ├── motifs.vcproj │ ├── motifs.vcxproj │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── ncpplot │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── ncpplot.cpp │ ├── ncpplot.vcproj │ ├── ncpplot.vcxproj │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── netevol │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── netevol.cpp │ ├── netevol.vcproj │ ├── netevol.vcxproj │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── netinf │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── example-cascades.txt │ ├── example-network.txt │ ├── netinf.cpp │ ├── netinf.vcproj │ ├── netinf.vcxproj │ ├── network-edge.info │ ├── network.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── netstat │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── netstat.cpp │ ├── netstat.vcproj │ ├── netstat.vcxproj │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── node2vec │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── emb │ │ └── karate.emb │ ├── graph │ │ └── karate.edgelist │ ├── node2vec.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── randwalk │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── randwalk.cpp │ ├── randwalk.vcproj │ ├── randwalk.vcxproj │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── rolx │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── graph.txt │ ├── rolx.vcxproj │ ├── stdafx.cpp │ ├── stdafx.h │ ├── targetver.h │ └── testrolx.cpp ├── snap-examples.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── temporalmotifs │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── example-temporal-graph.txt │ ├── stdafx.cpp │ ├── stdafx.h │ ├── targetver.h │ ├── temporalmotifsmain.cpp │ └── temporalmotifsmain.vcxproj ├── testgraph │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ ├── targetver.h │ ├── testgraph.cpp │ ├── testgraph.vcproj │ └── testgraph.vcxproj └── zygote │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ ├── targetver.h │ └── zydemo.cpp ├── glib-adv ├── Makefile ├── acquis.cpp ├── acquis.h ├── adox.cpp ├── adox.h ├── aest.cpp ├── aest.h ├── amazon.cpp ├── amazon.h ├── appsrv.cpp ├── appsrv.h ├── bde.cpp ├── bde.h ├── biling.cpp ├── biling.h ├── bix.cpp ├── bix.h ├── book.cpp ├── book.h ├── bowactlearn.cpp ├── bowactlearn.h ├── bowbs.cpp ├── bowbs.h ├── bowclust.cpp ├── bowclust.h ├── bowfl.cpp ├── bowfl.h ├── bowflx.cpp ├── bowflx.h ├── bowlearn.cpp ├── bowlearn.h ├── bowlinalg.cpp ├── bowlinalg.h ├── bowmatrix.cpp ├── bowmatrix.h ├── bowmd.cpp ├── bowmd.h ├── btaServer.h ├── btalarms.cpp ├── btalarms.h ├── btaserver.cpp ├── cache.h ├── casino.cpp ├── casino.h ├── ccar.cpp ├── ccar.h ├── cfyres.cpp ├── cfyres.h ├── cgi.cpp ├── cgi.h ├── ciawfb.cpp ├── ciawfb.h ├── conjgrad.h ├── cordis.cpp ├── cordis.h ├── corrgr.cpp ├── corrgr.h ├── cpdoc.cpp ├── cpdoc.h ├── crawler.cpp ├── crawler.h ├── cyc.cpp ├── cyc.h ├── dm.cpp ├── dm.h ├── dmhd.cpp ├── dmhd.h ├── dmine.cpp ├── dmine.h ├── dmoz.cpp ├── dmoz.h ├── dnet.cpp ├── dnet.h ├── dzs.cpp ├── dzs.h ├── email.cpp ├── email.h ├── euproj.cpp ├── euproj.h ├── exset.cpp ├── exset.h ├── fa.cpp ├── fa.h ├── flx.cpp ├── flx.h ├── ftrgen.cpp ├── ftrgen.h ├── geoip.cpp ├── geoip.h ├── gix.cpp ├── gix.h ├── gks.cpp ├── gks.h ├── gksmfc.cpp ├── gksmfc.h ├── gksvcl.cpp ├── gksvcl.h ├── gksvml.cpp ├── gksvml.h ├── gkswf.cpp ├── gkswf.h ├── google.cpp ├── google.h ├── googlex.cpp ├── googlex.h ├── graph.cpp ├── graph.h ├── gridvcl.cpp ├── gridvcl.h ├── gsearch.cpp ├── gsearch.h ├── guid.cpp ├── guid.h ├── hashgenericmp.h ├── hc.cpp ├── hc.h ├── hldoc.cpp ├── hldoc.h ├── infonet.cpp ├── infonet.h ├── kernelmethods.cpp ├── kernelmethods.h ├── logreg.cpp ├── logreg.h ├── lsionto.cpp ├── lsionto.h ├── md.cpp ├── md.h ├── mdtr.cpp ├── mdtr.h ├── medline.cpp ├── medline.h ├── mg.cpp ├── mg.h ├── mindset.h ├── mine.cpp ├── mine.h ├── mkcca.cpp ├── mkcca.h ├── mte.cpp ├── mte.h ├── mtr.cpp ├── mtr.h ├── net.cpp ├── net.h ├── netobj.cpp ├── netobj.h ├── nlpwinlf.cpp ├── nlpwinlf.h ├── nmen.cpp ├── nmen.h ├── nmobj.cpp ├── nmobj.h ├── nntp.cpp ├── nntp.h ├── nyta.cpp ├── nyta.h ├── nytngrams.cpp ├── nytngrams.h ├── odbc.cpp ├── odbc.h ├── ontolight.cpp ├── ontolight.h ├── pest.cpp ├── pest.h ├── phrase.cpp ├── phrase.h ├── pi.cpp ├── pi.h ├── postag.cpp ├── postag.h ├── prolog.cpp ├── prolog.h ├── prologparser.cpp ├── prologparser.h ├── proxy.cpp ├── proxy.h ├── pww.cpp ├── rdbms.cpp ├── rdbms.h ├── roget.cpp ├── roget.h ├── sappsrv.cpp ├── sappsrv.h ├── sch.cpp ├── sch.h ├── semspace.cpp ├── semspace.h ├── sgraph.cpp ├── sgraph.h ├── skygrid.cpp ├── skygrid.h ├── smtp.cpp ├── smtp.h ├── soap.cpp ├── soap.h ├── sock-new.cpp ├── sock-new.h ├── sock.cpp ├── sock.h ├── sqlite3.c ├── sqlite3.h ├── sqlitedb.cpp ├── sqlitedb.h ├── ssch.cpp ├── ssch.h ├── sskj.cpp ├── sskj.h ├── ssql.cpp ├── ssql.h ├── ssqldm.cpp ├── ssqldm.h ├── stemming.cpp ├── stemming.h ├── stopword.cpp ├── stopword.h ├── strkernel.cpp ├── strkernel.h ├── strut.cpp ├── strut.h ├── subprocess.cpp ├── subprocess.h ├── svmPrLoqo.cpp ├── svmPrLoqo.h ├── svmbasic.cpp ├── svmbasic.h ├── svmmodels.cpp ├── svmmodels.h ├── tagcloud.cpp ├── tagcloud.h ├── tb.cpp ├── tb.h ├── tbhc.cpp ├── tbhc.h ├── tbval.cpp ├── tbval.h ├── term.cpp ├── term.h ├── testBase.cpp ├── tmine.cpp ├── tmine.h ├── tnt.cpp ├── tnt.h ├── tql.cpp ├── tql.h ├── ts.cpp ├── ts.h ├── txtbs.cpp ├── txtbs.h ├── ultra.cpp ├── ultra.h ├── valds.cpp ├── valds.h ├── valret.cpp ├── valret.h ├── vizmap.cpp ├── vizmap.h ├── vizmapgks.cpp ├── vizmapgks.h ├── wbmp.cpp ├── wbmp.h ├── webbsfetch.cpp ├── webbsfetch.h ├── webmb.cpp ├── webmb.h ├── webnetobj.cpp ├── webnetobj.h ├── webold.cpp ├── webold.h ├── webpgfetch.cpp ├── webpgfetch.h ├── websrv.cpp ├── websrv.h ├── webtrv.cpp ├── webtrv.h ├── webtxtbs.cpp ├── webtxtbs.h ├── wikipedia.cpp ├── wikipedia.h ├── wix.cpp ├── wix.h ├── wixexp.cpp ├── wixexp.h ├── wmine.cpp ├── wmine.h ├── wordco.cpp ├── wordco.h ├── wordnet.cpp ├── wordnet.h ├── xql.cpp ├── xql.h ├── yahoobs.cpp ├── yahoobs.h ├── yahoodm.cpp ├── yahoodm.h ├── yahooex.cpp ├── yahooex.h ├── zipcode.cpp └── zipcode.h ├── glib-core ├── base.cpp ├── base.h ├── bd.cpp ├── bd.h ├── bits.cpp ├── bits.h ├── blobbs.cpp ├── blobbs.h ├── doc │ ├── bd.h.txt │ ├── ds.h.txt │ ├── ss.h.txt │ └── ssmp.h.txt ├── ds.h ├── dt.cpp ├── dt.h ├── env.cpp ├── env.h ├── fl.cpp ├── fl.h ├── gnuplot.cpp ├── gnuplot.h ├── hash.cpp ├── hash.h ├── hashmp.h ├── html.cpp ├── html.h ├── http.cpp ├── http.h ├── json.cpp ├── json.h ├── linalg.cpp ├── linalg.h ├── lx.cpp ├── lx.h ├── md5.cpp ├── md5.h ├── os.cpp ├── os.h ├── priorityqueue.h ├── shash.h ├── ss.cpp ├── ss.h ├── ssmp.cpp ├── ssmp.h ├── stdafx.h ├── tm.cpp ├── tm.h ├── unicode.cpp ├── unicode.h ├── unicodestring.cpp ├── unicodestring.h ├── url.cpp ├── url.h ├── ut.cpp ├── ut.h ├── wch.cpp ├── wch.h ├── xfl.cpp ├── xfl.h ├── xmath.cpp ├── xmath.h ├── xml.cpp ├── xml.h ├── xmlser.h ├── zipfl.cpp └── zipfl.h ├── snap-adv ├── agm.cpp ├── agm.h ├── agmattr.cpp ├── agmattr.h ├── agmdirected.cpp ├── agmdirected.h ├── agmfast.cpp ├── agmfast.h ├── agmfit.cpp ├── agmfit.h ├── biasedrandomwalk.cpp ├── biasedrandomwalk.h ├── cascdynetinf.cpp ├── cascdynetinf.h ├── cascnetinf.cpp ├── cascnetinf.h ├── circles.h ├── cliques.cpp ├── cliques.h ├── doc │ └── ncp.h.txt ├── graphcounter.cpp ├── graphcounter.h ├── hysgen.cpp ├── hysgen.h ├── kronecker.cpp ├── kronecker.h ├── localmotifcluster.cpp ├── localmotifcluster.h ├── mag.cpp ├── mag.h ├── motifcluster.cpp ├── motifcluster.h ├── n2v.cpp ├── n2v.h ├── ncp.cpp ├── ncp.h ├── rolx.cpp ├── rolx.h ├── subgraphenum.cpp ├── subgraphenum.h ├── temporalmotifs.cpp ├── temporalmotifs.h ├── word2vec.cpp └── word2vec.h ├── snap-core ├── Makefile ├── Snap.cpp ├── Snap.h ├── alg.cpp ├── alg.h ├── anf.cpp ├── anf.h ├── attr.cpp ├── attr.h ├── bfsdfs.h ├── bignet.h ├── casc.cpp ├── casc.h ├── centr.cpp ├── centr.h ├── cmty.cpp ├── cmty.h ├── cncom.cpp ├── cncom.h ├── conv.cpp ├── conv.h ├── coreper.cpp ├── coreper.h ├── doc │ ├── Snap.h.txt │ ├── bfsdfs.h.txt │ ├── bignet.h.txt │ ├── cncom.h.txt │ ├── flow.cpp.txt │ ├── flow.h.txt │ ├── gbase.h.txt │ ├── ghash.h.txt │ ├── gio.h.txt │ ├── graph.h.txt │ ├── graphmp.h.txt │ ├── gviz.h.txt │ ├── mmnet.h.txt │ ├── network.h.txt │ ├── networkmp.h.txt │ ├── subgraph.h.txt │ ├── table.h.txt │ ├── triad.h.txt │ └── util.h.txt ├── ff.cpp ├── ff.h ├── flow.cpp ├── flow.h ├── gbase.cpp ├── gbase.h ├── ggen.cpp ├── ggen.h ├── ghash.cpp ├── ghash.h ├── gio.cpp ├── gio.h ├── graph.cpp ├── graph.h ├── graph.txt ├── graphmp.cpp ├── graphmp.h ├── gstat.cpp ├── gstat.h ├── gsvd.cpp ├── gsvd.h ├── gviz.cpp ├── gviz.h ├── kcore.h ├── mmnet.cpp ├── mmnet.h ├── network.cpp ├── network.h ├── networkmp.cpp ├── networkmp.h ├── numpy.cpp ├── numpy.h ├── randwalk.h ├── sim.cpp ├── sim.h ├── snap-core.xcodeproj │ └── project.pbxproj ├── statplot.cpp ├── statplot.h ├── stdafx.h ├── subgraph.cpp ├── subgraph.h ├── table.cpp ├── table.h ├── testSnap.cpp ├── timenet.cpp ├── timenet.h ├── triad.cpp ├── triad.h ├── util.cpp └── util.h ├── snap-exp ├── Makefile.exmain ├── alternativetable.cpp ├── alternativetable.h ├── arxiv.cpp ├── arxiv.h ├── bfs-dev │ ├── .gitignore │ ├── Makefile │ ├── Makefile.ex │ ├── Makefile.exmain │ ├── bfs-dev.h │ ├── bfs-hybrid-test.h │ ├── bfs-hybrid.h │ ├── bfs-parallel.h │ ├── bfs-vector.h │ ├── getScc.cpp │ ├── livejournal.cpp │ ├── microsoft.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ ├── targetver.h │ ├── test.cpp │ ├── test1.cpp │ ├── test_parallel.cpp │ └── twitter.cpp ├── cascades-benchmark │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── baseline.cpp │ ├── reality.txt │ ├── sortSource.cpp │ ├── sortTime.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── cascades-dev │ ├── Makefile │ ├── Makefile.ex │ ├── ReadMe.txt │ ├── devBaseline.cpp │ ├── devBaselineTop.cpp │ ├── devGraph_v1.2.cpp │ ├── devSort_v1.4.cpp │ ├── reality.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── centr-exp.cpp ├── centr-exp.h ├── circles │ ├── Makefile │ ├── Makefile.ex │ ├── circles.cpp │ ├── circles.h │ ├── fb1.edges │ ├── fb1.features │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── dblp.cpp ├── dblp.h ├── graphmp-exp.h ├── imdbnet.cpp ├── imdbnet.h ├── linkpred.cpp ├── linkpred.h ├── lsh.cpp ├── lsh.h ├── memenet.cpp ├── memenet.h ├── memes.cpp ├── memes.h ├── mmgraph-exp.cpp ├── mmgraph-exp.h ├── multimodal-dev │ ├── Makefile │ ├── Makefile.ex │ ├── benchmark-TNEANet-unweighted.cpp │ ├── benchmark-TNEANet-weighted.cpp │ ├── benchmark-unweighted.cpp │ ├── benchmark-util.cpp │ ├── benchmark-weighted.cpp │ ├── benchmark.cpp │ ├── delete-exp.cpp │ ├── graph-construct-exp.cpp │ ├── multimodal.cpp │ ├── rand-construct-exp.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ ├── subgraph-exp.cpp │ ├── targetver.h │ └── triad-exp.cpp ├── mxdag.cpp ├── mxdag.h ├── signnet.cpp ├── signnet.h ├── sir.cpp ├── sir.h ├── spinn3r.cpp ├── spinn3r.h ├── test-dev │ ├── AggrTest.cpp │ ├── ArithOpsTest.cpp │ ├── Benchmark.cpp │ ├── BenchmarkAshton.cpp │ ├── BenchmarkUtilities.h │ ├── ConvBenchmark.cpp │ ├── ConvBenchmarkMP.cpp │ ├── Engine.cpp │ ├── Engine.h │ ├── ExplicitStringTableTest1.cpp │ ├── ExplicitStringTableTest2.cpp │ ├── ExplicitStringTableTest3.cpp │ ├── ExplicitStringTableTest4.cpp │ ├── ExplicitStringTableTest5.cpp │ ├── ExplicitStringTableTest6.cpp │ ├── FilterTest.cpp │ ├── GraphOperationsTest.cpp │ ├── GroupTest.cpp │ ├── HashtagGraphTest.cpp │ ├── IdTest.cpp │ ├── LoadTest.cpp │ ├── Makefile │ ├── MemoryAllocTest.cpp │ ├── ParGroupAggrTest.cpp │ ├── ParJoinTest.cpp │ ├── ParLargeGraph.cpp │ ├── ParSelect2Test.cpp │ ├── ParSelectTest.cpp │ ├── ParToGraphTest.cpp │ ├── ParallelGroupByTest.cpp │ ├── PhysicalOrderSortTest1.cpp │ ├── PhysicalOrderSortTest2.cpp │ ├── PredicateTest.cpp │ ├── SetOperationsTest.cpp │ ├── SimJoinPerGroupTest.cpp │ ├── SimJoinTest.cpp │ ├── TableAttributeTest.cpp │ ├── TableIndexTest.cpp │ ├── TablePageRank.cpp │ ├── TableTest.cpp │ ├── TableTest1.cpp │ ├── ToGraphSeqTest.cpp │ ├── ToGraphTest.cpp │ ├── testPageRank.cpp │ ├── testTriangleCount.cpp │ └── tests │ │ ├── animals.txt │ │ ├── buildings.txt │ │ ├── grades.txt │ │ ├── loc.txt │ │ ├── more_animals.txt │ │ ├── places.txt │ │ ├── products.txt │ │ └── votes.txt ├── trawling.cpp ├── trawling.h ├── wgtnet.cpp ├── wgtnet.h ├── wikinet.cpp └── wikinet.h ├── test ├── Makefile ├── bfsdfs │ ├── sample_bfsdfs_ngraph.txt │ ├── sample_bfsdfs_power.txt │ └── sample_bfsdfs_unpower.txt ├── cncom │ ├── sample_cncom_ngraph.txt │ └── sample_cncom_unpower.txt ├── flow │ └── small_sample.txt ├── graphviz │ ├── base_ngraph_Circo.dot │ ├── base_ngraph_Circo.png │ ├── base_ngraph_Circo.ps │ ├── base_ngraph_Circo_col.dot │ ├── base_ngraph_Circo_col.png │ ├── base_ngraph_Circo_col.ps │ ├── base_ngraph_Dot.dot │ ├── base_ngraph_Dot.png │ ├── base_ngraph_Dot.ps │ ├── base_ngraph_Dot_col.dot │ ├── base_ngraph_Dot_col.png │ ├── base_ngraph_Dot_col.ps │ ├── base_ngraph_Neato.dot │ ├── base_ngraph_Neato.png │ ├── base_ngraph_Neato.ps │ ├── base_ngraph_Neato_col.dot │ ├── base_ngraph_Neato_col.png │ ├── base_ngraph_Neato_col.ps │ ├── base_ngraph_Twopi.dot │ ├── base_ngraph_Twopi.png │ ├── base_ngraph_Twopi.ps │ ├── base_ngraph_Twopi_col.dot │ ├── base_ngraph_Twopi_col.png │ ├── base_ngraph_Twopi_col.ps │ ├── base_ungraph_Circo.dot │ ├── base_ungraph_Circo.png │ ├── base_ungraph_Circo.ps │ ├── base_ungraph_Circo_col.dot │ ├── base_ungraph_Circo_col.png │ ├── base_ungraph_Circo_col.ps │ ├── base_ungraph_Dot.dot │ ├── base_ungraph_Dot.png │ ├── base_ungraph_Dot.ps │ ├── base_ungraph_Dot_col.dot │ ├── base_ungraph_Dot_col.png │ ├── base_ungraph_Dot_col.ps │ ├── base_ungraph_Neato.dot │ ├── base_ungraph_Neato.png │ ├── base_ungraph_Neato.ps │ ├── base_ungraph_Neato_col.dot │ ├── base_ungraph_Neato_col.png │ ├── base_ungraph_Neato_col.ps │ ├── base_ungraph_Twopi.dot │ ├── base_ungraph_Twopi.png │ ├── base_ungraph_Twopi.ps │ ├── base_ungraph_Twopi_col.dot │ ├── base_ungraph_Twopi_col.png │ ├── base_ungraph_Twopi_col.ps │ ├── node_colors.txt │ ├── sample_ngraph1.txt │ └── sample_ungraph1.txt ├── randwalk │ ├── test_graph.txt │ └── test_pprs.txt ├── run-all-tests.cpp ├── snap-test.xcodeproj │ └── project.pbxproj ├── table │ ├── grades.txt │ └── soc-LiveJournal1_small.txt ├── test-TAttr.cpp ├── test-TCrossNet.cpp ├── test-TDirNet.cpp ├── test-THash.cpp ├── test-THashSet.cpp ├── test-TMMNet.cpp ├── test-TModeNet.cpp ├── test-TNEANet.cpp ├── test-TNEGraph.cpp ├── test-TNGraph.cpp ├── test-TNodeEDatNet.cpp ├── test-TNodeEdgeNet.cpp ├── test-TNodeNet.cpp ├── test-TStrPool.cpp ├── test-TSysTm.cpp ├── test-TTable.cpp ├── test-TUNGraph.cpp ├── test-TUndirNet.cpp ├── test-alg.cpp ├── test-bfsdfs.cpp ├── test-cncom.cpp ├── test-file.cpp ├── test-flow.cpp ├── test-ggen.cpp ├── test-gio.cpp ├── test-gviz.cpp ├── test-helper.cpp ├── test-helper.h ├── test-multimodal.cpp ├── test-priority-queue.cpp ├── test-randwalk.cpp ├── test-shmio.cpp ├── test-sim.cpp ├── test-subgraph.cpp └── test-triad.cpp └── tutorials ├── Makefile ├── cncom ├── sample_cncom_ngraph.dot └── sample_cncom_unpower.dot ├── demo-TAttr.cpp ├── demo-TDirNet.cpp ├── demo-THash.cpp ├── demo-TNEANet.cpp ├── demo-TNEGraph.cpp ├── demo-TNGraph.cpp ├── demo-TNodeEDatNet.cpp ├── demo-TNodeEdgeNet.cpp ├── demo-TNodeNet.cpp ├── demo-TSsParser.cpp ├── demo-TUNGraph.cpp ├── demo-TUndirNet.cpp ├── demo-alg.cpp ├── demo-bfsdfs.cpp ├── demo-cncom.cpp ├── demo-cncom1.cpp ├── demo-ggen.cpp ├── demo-gio.cpp ├── demo-gviz.cpp ├── demo-hashvec-benchmark.cpp ├── demo-multimodal.cpp ├── demo-subgraph.cpp ├── demo-topology-benchmark.cpp ├── demo-triad.cpp ├── graphviz ├── demo_ngraph_Circo.dot ├── demo_ngraph_Circo.gif ├── demo_ngraph_Circo_col.dot ├── demo_ngraph_Circo_col.gif ├── demo_ngraph_Dot.dot ├── demo_ngraph_Dot.gif ├── demo_ngraph_Dot_col.dot ├── demo_ngraph_Dot_col.gif ├── demo_ngraph_Neato.dot ├── demo_ngraph_Neato.gif ├── demo_ngraph_Neato_col.dot ├── demo_ngraph_Neato_col.gif ├── demo_ngraph_Twopi.dot ├── demo_ngraph_Twopi.gif ├── demo_ngraph_Twopi_col.dot ├── demo_ngraph_Twopi_col.gif ├── demo_ungraph_Circo.dot ├── demo_ungraph_Circo.gif ├── demo_ungraph_Circo_col.dot ├── demo_ungraph_Circo_col.gif ├── demo_ungraph_Dot.dot ├── demo_ungraph_Dot.gif ├── demo_ungraph_Dot_col.dot ├── demo_ungraph_Dot_col.gif ├── demo_ungraph_Neato.dot ├── demo_ungraph_Neato.gif ├── demo_ungraph_Neato_col.dot ├── demo_ungraph_Neato_col.gif ├── demo_ungraph_Twopi.dot ├── demo_ungraph_Twopi.gif ├── demo_ungraph_Twopi_col.dot └── demo_ungraph_Twopi_col.gif ├── parser └── TestData.zip └── tutorials.xcodeproj └── project.pbxproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/.gitignore -------------------------------------------------------------------------------- /Credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/Credits.txt -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/License.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/Makefile.config -------------------------------------------------------------------------------- /ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/ReadMe.txt -------------------------------------------------------------------------------- /Release.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/Release.txt -------------------------------------------------------------------------------- /contrib/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/contrib/ReadMe.txt -------------------------------------------------------------------------------- /doxygen/Doxyfile-dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/doxygen/Doxyfile-dev -------------------------------------------------------------------------------- /doxygen/Doxyfile-user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/doxygen/Doxyfile-user -------------------------------------------------------------------------------- /doxygen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/doxygen/Makefile -------------------------------------------------------------------------------- /doxygen/doxyblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/doxygen/doxyblock.py -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/.gitignore -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/Makefile.exmain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/Makefile.exmain -------------------------------------------------------------------------------- /examples/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/ReadMe.txt -------------------------------------------------------------------------------- /examples/SnapExamples-VS10.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/SnapExamples-VS10.sln -------------------------------------------------------------------------------- /examples/SnapExamples-VS19.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/SnapExamples-VS19.sln -------------------------------------------------------------------------------- /examples/agmfit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/agmfit/Makefile -------------------------------------------------------------------------------- /examples/agmfit/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/agmfit/Makefile.ex -------------------------------------------------------------------------------- /examples/agmfit/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/agmfit/ReadMe.txt -------------------------------------------------------------------------------- /examples/agmfit/agmfit.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/agmfit/agmfit.vcxproj -------------------------------------------------------------------------------- /examples/agmfit/agmfitmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/agmfit/agmfitmain.cpp -------------------------------------------------------------------------------- /examples/agmfit/football.labels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/agmfit/football.labels -------------------------------------------------------------------------------- /examples/agmfit/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/agmfit/stdafx.cpp -------------------------------------------------------------------------------- /examples/agmfit/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/agmfit/stdafx.h -------------------------------------------------------------------------------- /examples/agmfit/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/agmfit/targetver.h -------------------------------------------------------------------------------- /examples/agmgen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/agmgen/Makefile -------------------------------------------------------------------------------- /examples/agmgen/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/agmgen/Makefile.ex -------------------------------------------------------------------------------- /examples/agmgen/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/agmgen/ReadMe.txt -------------------------------------------------------------------------------- /examples/agmgen/agmgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/agmgen/agmgen.cpp -------------------------------------------------------------------------------- /examples/agmgen/agmgen.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/agmgen/agmgen.vcproj -------------------------------------------------------------------------------- /examples/agmgen/agmgen.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/agmgen/agmgen.vcxproj -------------------------------------------------------------------------------- /examples/agmgen/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/agmgen/stdafx.cpp -------------------------------------------------------------------------------- /examples/agmgen/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/agmgen/stdafx.h -------------------------------------------------------------------------------- /examples/agmgen/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/agmgen/targetver.h -------------------------------------------------------------------------------- /examples/as20graph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/as20graph.txt -------------------------------------------------------------------------------- /examples/bigclam/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/bigclam/Makefile -------------------------------------------------------------------------------- /examples/bigclam/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/bigclam/Makefile.ex -------------------------------------------------------------------------------- /examples/bigclam/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/bigclam/ReadMe.txt -------------------------------------------------------------------------------- /examples/bigclam/bigclam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/bigclam/bigclam.cpp -------------------------------------------------------------------------------- /examples/bigclam/bigclam.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/bigclam/bigclam.vcxproj -------------------------------------------------------------------------------- /examples/bigclam/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/bigclam/stdafx.cpp -------------------------------------------------------------------------------- /examples/bigclam/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/bigclam/stdafx.h -------------------------------------------------------------------------------- /examples/bigclam/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/bigclam/targetver.h -------------------------------------------------------------------------------- /examples/cascadegen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cascadegen/Makefile -------------------------------------------------------------------------------- /examples/cascadegen/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cascadegen/Makefile.ex -------------------------------------------------------------------------------- /examples/cascadegen/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cascadegen/ReadMe.txt -------------------------------------------------------------------------------- /examples/cascadegen/reality.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cascadegen/reality.txt -------------------------------------------------------------------------------- /examples/cascadegen/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cascadegen/stdafx.cpp -------------------------------------------------------------------------------- /examples/cascadegen/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cascadegen/stdafx.h -------------------------------------------------------------------------------- /examples/cascadegen/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cascadegen/targetver.h -------------------------------------------------------------------------------- /examples/cascades/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cascades/Makefile -------------------------------------------------------------------------------- /examples/cascades/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cascades/Makefile.ex -------------------------------------------------------------------------------- /examples/cascades/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cascades/ReadMe.txt -------------------------------------------------------------------------------- /examples/cascades/cascades.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cascades/cascades.cpp -------------------------------------------------------------------------------- /examples/cascades/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cascades/stdafx.cpp -------------------------------------------------------------------------------- /examples/cascades/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cascades/stdafx.h -------------------------------------------------------------------------------- /examples/cascades/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cascades/targetver.h -------------------------------------------------------------------------------- /examples/centrality/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/centrality/Makefile -------------------------------------------------------------------------------- /examples/centrality/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/centrality/Makefile.ex -------------------------------------------------------------------------------- /examples/centrality/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/centrality/ReadMe.txt -------------------------------------------------------------------------------- /examples/centrality/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/centrality/stdafx.cpp -------------------------------------------------------------------------------- /examples/centrality/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/centrality/stdafx.h -------------------------------------------------------------------------------- /examples/centrality/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/centrality/targetver.h -------------------------------------------------------------------------------- /examples/cesna/1912.edges: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cesna/1912.edges -------------------------------------------------------------------------------- /examples/cesna/1912.nodefeat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cesna/1912.nodefeat -------------------------------------------------------------------------------- /examples/cesna/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cesna/Makefile -------------------------------------------------------------------------------- /examples/cesna/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cesna/Makefile.ex -------------------------------------------------------------------------------- /examples/cesna/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cesna/ReadMe.txt -------------------------------------------------------------------------------- /examples/cesna/cesna.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cesna/cesna.cpp -------------------------------------------------------------------------------- /examples/cesna/cesna.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cesna/cesna.vcxproj -------------------------------------------------------------------------------- /examples/cesna/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cesna/stdafx.cpp -------------------------------------------------------------------------------- /examples/cesna/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cesna/stdafx.h -------------------------------------------------------------------------------- /examples/cesna/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cesna/targetver.h -------------------------------------------------------------------------------- /examples/circles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/circles/Makefile -------------------------------------------------------------------------------- /examples/circles/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/circles/Makefile.ex -------------------------------------------------------------------------------- /examples/circles/circles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/circles/circles.cpp -------------------------------------------------------------------------------- /examples/circles/circles.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/circles/circles.vcxproj -------------------------------------------------------------------------------- /examples/circles/fb1.circles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/circles/fb1.circles -------------------------------------------------------------------------------- /examples/circles/fb1.edges: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/circles/fb1.edges -------------------------------------------------------------------------------- /examples/circles/fb1.feat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/circles/fb1.feat -------------------------------------------------------------------------------- /examples/circles/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/circles/stdafx.cpp -------------------------------------------------------------------------------- /examples/circles/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/circles/stdafx.h -------------------------------------------------------------------------------- /examples/circles/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/circles/targetver.h -------------------------------------------------------------------------------- /examples/cliques/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cliques/Makefile -------------------------------------------------------------------------------- /examples/cliques/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cliques/Makefile.ex -------------------------------------------------------------------------------- /examples/cliques/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cliques/ReadMe.txt -------------------------------------------------------------------------------- /examples/cliques/cliques.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cliques/cliques.vcproj -------------------------------------------------------------------------------- /examples/cliques/cliques.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cliques/cliques.vcxproj -------------------------------------------------------------------------------- /examples/cliques/cliquesmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cliques/cliquesmain.cpp -------------------------------------------------------------------------------- /examples/cliques/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cliques/stdafx.cpp -------------------------------------------------------------------------------- /examples/cliques/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cliques/stdafx.h -------------------------------------------------------------------------------- /examples/cliques/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/cliques/targetver.h -------------------------------------------------------------------------------- /examples/coda/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/coda/Makefile -------------------------------------------------------------------------------- /examples/coda/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/coda/Makefile.ex -------------------------------------------------------------------------------- /examples/coda/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/coda/ReadMe.txt -------------------------------------------------------------------------------- /examples/coda/coda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/coda/coda.cpp -------------------------------------------------------------------------------- /examples/coda/coda.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/coda/coda.vcxproj -------------------------------------------------------------------------------- /examples/coda/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/coda/stdafx.cpp -------------------------------------------------------------------------------- /examples/coda/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/coda/stdafx.h -------------------------------------------------------------------------------- /examples/coda/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/coda/targetver.h -------------------------------------------------------------------------------- /examples/community/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/community/Makefile -------------------------------------------------------------------------------- /examples/community/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/community/Makefile.ex -------------------------------------------------------------------------------- /examples/community/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/community/ReadMe.txt -------------------------------------------------------------------------------- /examples/community/community.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/community/community.cpp -------------------------------------------------------------------------------- /examples/community/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/community/stdafx.cpp -------------------------------------------------------------------------------- /examples/community/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/community/stdafx.h -------------------------------------------------------------------------------- /examples/community/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/community/targetver.h -------------------------------------------------------------------------------- /examples/concomp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/concomp/Makefile -------------------------------------------------------------------------------- /examples/concomp/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/concomp/Makefile.ex -------------------------------------------------------------------------------- /examples/concomp/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/concomp/ReadMe.txt -------------------------------------------------------------------------------- /examples/concomp/concomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/concomp/concomp.cpp -------------------------------------------------------------------------------- /examples/concomp/concomp.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/concomp/concomp.vcproj -------------------------------------------------------------------------------- /examples/concomp/concomp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/concomp/concomp.vcxproj -------------------------------------------------------------------------------- /examples/concomp/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/concomp/stdafx.cpp -------------------------------------------------------------------------------- /examples/concomp/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/concomp/stdafx.h -------------------------------------------------------------------------------- /examples/concomp/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/concomp/targetver.h -------------------------------------------------------------------------------- /examples/flows/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/flows/Makefile -------------------------------------------------------------------------------- /examples/flows/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/flows/Makefile.ex -------------------------------------------------------------------------------- /examples/flows/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/flows/ReadMe.txt -------------------------------------------------------------------------------- /examples/flows/flows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/flows/flows.cpp -------------------------------------------------------------------------------- /examples/flows/flows.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/flows/flows.vcxproj -------------------------------------------------------------------------------- /examples/flows/small_sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/flows/small_sample.txt -------------------------------------------------------------------------------- /examples/flows/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/flows/stdafx.cpp -------------------------------------------------------------------------------- /examples/flows/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/flows/stdafx.h -------------------------------------------------------------------------------- /examples/flows/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/flows/targetver.h -------------------------------------------------------------------------------- /examples/forestfire/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/forestfire/Makefile -------------------------------------------------------------------------------- /examples/forestfire/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/forestfire/Makefile.ex -------------------------------------------------------------------------------- /examples/forestfire/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/forestfire/ReadMe.txt -------------------------------------------------------------------------------- /examples/forestfire/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/forestfire/stdafx.cpp -------------------------------------------------------------------------------- /examples/forestfire/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/forestfire/stdafx.h -------------------------------------------------------------------------------- /examples/forestfire/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/forestfire/targetver.h -------------------------------------------------------------------------------- /examples/graphgen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/graphgen/Makefile -------------------------------------------------------------------------------- /examples/graphgen/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/graphgen/Makefile.ex -------------------------------------------------------------------------------- /examples/graphgen/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/graphgen/ReadMe.txt -------------------------------------------------------------------------------- /examples/graphgen/graphgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/graphgen/graphgen.cpp -------------------------------------------------------------------------------- /examples/graphgen/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/graphgen/stdafx.cpp -------------------------------------------------------------------------------- /examples/graphgen/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/graphgen/stdafx.h -------------------------------------------------------------------------------- /examples/graphgen/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/graphgen/targetver.h -------------------------------------------------------------------------------- /examples/graphhash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/graphhash/Makefile -------------------------------------------------------------------------------- /examples/graphhash/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/graphhash/Makefile.ex -------------------------------------------------------------------------------- /examples/graphhash/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/graphhash/ReadMe.txt -------------------------------------------------------------------------------- /examples/graphhash/graphhash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/graphhash/graphhash.cpp -------------------------------------------------------------------------------- /examples/graphhash/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/graphhash/stdafx.cpp -------------------------------------------------------------------------------- /examples/graphhash/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/graphhash/stdafx.h -------------------------------------------------------------------------------- /examples/graphhash/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/graphhash/targetver.h -------------------------------------------------------------------------------- /examples/hysgen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/hysgen/.gitignore -------------------------------------------------------------------------------- /examples/hysgen/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/hysgen/.idea/.gitignore -------------------------------------------------------------------------------- /examples/hysgen/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/hysgen/LICENSE -------------------------------------------------------------------------------- /examples/hysgen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/hysgen/Makefile -------------------------------------------------------------------------------- /examples/hysgen/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/hysgen/Makefile.ex -------------------------------------------------------------------------------- /examples/hysgen/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/hysgen/README.txt -------------------------------------------------------------------------------- /examples/hysgen/hysgen_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/hysgen/hysgen_main.cpp -------------------------------------------------------------------------------- /examples/hysgen/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/hysgen/stdafx.cpp -------------------------------------------------------------------------------- /examples/hysgen/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/hysgen/stdafx.h -------------------------------------------------------------------------------- /examples/hysgen/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/hysgen/targetver.h -------------------------------------------------------------------------------- /examples/infopath/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/infopath/Makefile -------------------------------------------------------------------------------- /examples/infopath/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/infopath/Makefile.ex -------------------------------------------------------------------------------- /examples/infopath/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/infopath/ReadMe.txt -------------------------------------------------------------------------------- /examples/infopath/infopath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/infopath/infopath.cpp -------------------------------------------------------------------------------- /examples/infopath/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/infopath/stdafx.cpp -------------------------------------------------------------------------------- /examples/infopath/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/infopath/stdafx.h -------------------------------------------------------------------------------- /examples/infopath/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/infopath/targetver.h -------------------------------------------------------------------------------- /examples/kcores/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/kcores/Makefile -------------------------------------------------------------------------------- /examples/kcores/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/kcores/Makefile.ex -------------------------------------------------------------------------------- /examples/kcores/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/kcores/ReadMe.txt -------------------------------------------------------------------------------- /examples/kcores/kcores.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/kcores/kcores.cpp -------------------------------------------------------------------------------- /examples/kcores/kcores.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/kcores/kcores.vcproj -------------------------------------------------------------------------------- /examples/kcores/kcores.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/kcores/kcores.vcxproj -------------------------------------------------------------------------------- /examples/kcores/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/kcores/stdafx.cpp -------------------------------------------------------------------------------- /examples/kcores/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/kcores/stdafx.h -------------------------------------------------------------------------------- /examples/kcores/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/kcores/targetver.h -------------------------------------------------------------------------------- /examples/knnjaccardsim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/knnjaccardsim/Makefile -------------------------------------------------------------------------------- /examples/knnjaccardsim/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/knnjaccardsim/stdafx.h -------------------------------------------------------------------------------- /examples/kronem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/kronem/Makefile -------------------------------------------------------------------------------- /examples/kronem/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/kronem/Makefile.ex -------------------------------------------------------------------------------- /examples/kronem/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/kronem/ReadMe.txt -------------------------------------------------------------------------------- /examples/kronem/kronem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/kronem/kronem.cpp -------------------------------------------------------------------------------- /examples/kronem/kronem.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/kronem/kronem.vcproj -------------------------------------------------------------------------------- /examples/kronem/kronem.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/kronem/kronem.vcxproj -------------------------------------------------------------------------------- /examples/kronem/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/kronem/stdafx.cpp -------------------------------------------------------------------------------- /examples/kronem/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/kronem/stdafx.h -------------------------------------------------------------------------------- /examples/kronem/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/kronem/targetver.h -------------------------------------------------------------------------------- /examples/kronfit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/kronfit/Makefile -------------------------------------------------------------------------------- /examples/kronfit/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/kronfit/Makefile.ex -------------------------------------------------------------------------------- /examples/kronfit/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/kronfit/ReadMe.txt -------------------------------------------------------------------------------- /examples/kronfit/kronfit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/kronfit/kronfit.cpp -------------------------------------------------------------------------------- /examples/kronfit/kronfit.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/kronfit/kronfit.vcproj -------------------------------------------------------------------------------- /examples/kronfit/kronfit.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/kronfit/kronfit.vcxproj -------------------------------------------------------------------------------- /examples/kronfit/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/kronfit/stdafx.cpp -------------------------------------------------------------------------------- /examples/kronfit/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/kronfit/stdafx.h -------------------------------------------------------------------------------- /examples/kronfit/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/kronfit/targetver.h -------------------------------------------------------------------------------- /examples/krongen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/krongen/Makefile -------------------------------------------------------------------------------- /examples/krongen/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/krongen/Makefile.ex -------------------------------------------------------------------------------- /examples/krongen/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/krongen/ReadMe.txt -------------------------------------------------------------------------------- /examples/krongen/krongen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/krongen/krongen.cpp -------------------------------------------------------------------------------- /examples/krongen/krongen.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/krongen/krongen.vcproj -------------------------------------------------------------------------------- /examples/krongen/krongen.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/krongen/krongen.vcxproj -------------------------------------------------------------------------------- /examples/krongen/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/krongen/stdafx.cpp -------------------------------------------------------------------------------- /examples/krongen/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/krongen/stdafx.h -------------------------------------------------------------------------------- /examples/krongen/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/krongen/targetver.h -------------------------------------------------------------------------------- /examples/lshtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/lshtest/Makefile -------------------------------------------------------------------------------- /examples/lshtest/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/lshtest/Makefile.ex -------------------------------------------------------------------------------- /examples/lshtest/lshtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/lshtest/lshtest.cpp -------------------------------------------------------------------------------- /examples/magfit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/magfit/Makefile -------------------------------------------------------------------------------- /examples/magfit/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/magfit/Makefile.ex -------------------------------------------------------------------------------- /examples/magfit/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/magfit/ReadMe.txt -------------------------------------------------------------------------------- /examples/magfit/init.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/magfit/init.config -------------------------------------------------------------------------------- /examples/magfit/magfit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/magfit/magfit.cpp -------------------------------------------------------------------------------- /examples/magfit/magfit.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/magfit/magfit.vcproj -------------------------------------------------------------------------------- /examples/magfit/magfit.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/magfit/magfit.vcxproj -------------------------------------------------------------------------------- /examples/magfit/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/magfit/stdafx.cpp -------------------------------------------------------------------------------- /examples/magfit/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/magfit/stdafx.h -------------------------------------------------------------------------------- /examples/magfit/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/magfit/targetver.h -------------------------------------------------------------------------------- /examples/maggen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/maggen/Makefile -------------------------------------------------------------------------------- /examples/maggen/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/maggen/Makefile.ex -------------------------------------------------------------------------------- /examples/maggen/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/maggen/ReadMe.txt -------------------------------------------------------------------------------- /examples/maggen/mag.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/maggen/mag.config -------------------------------------------------------------------------------- /examples/maggen/maggen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/maggen/maggen.cpp -------------------------------------------------------------------------------- /examples/maggen/maggen.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/maggen/maggen.vcproj -------------------------------------------------------------------------------- /examples/maggen/maggen.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/maggen/maggen.vcxproj -------------------------------------------------------------------------------- /examples/maggen/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/maggen/stdafx.cpp -------------------------------------------------------------------------------- /examples/maggen/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/maggen/stdafx.h -------------------------------------------------------------------------------- /examples/maggen/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/maggen/targetver.h -------------------------------------------------------------------------------- /examples/mkdatasets/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/mkdatasets/Makefile -------------------------------------------------------------------------------- /examples/mkdatasets/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/mkdatasets/Makefile.ex -------------------------------------------------------------------------------- /examples/mkdatasets/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/mkdatasets/ReadMe.txt -------------------------------------------------------------------------------- /examples/mkdatasets/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/mkdatasets/stdafx.h -------------------------------------------------------------------------------- /examples/motifs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/motifs/Makefile -------------------------------------------------------------------------------- /examples/motifs/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/motifs/Makefile.ex -------------------------------------------------------------------------------- /examples/motifs/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/motifs/ReadMe.txt -------------------------------------------------------------------------------- /examples/motifs/motifs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/motifs/motifs.cpp -------------------------------------------------------------------------------- /examples/motifs/motifs.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/motifs/motifs.vcproj -------------------------------------------------------------------------------- /examples/motifs/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/motifs/stdafx.cpp -------------------------------------------------------------------------------- /examples/motifs/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/motifs/stdafx.h -------------------------------------------------------------------------------- /examples/motifs/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/motifs/targetver.h -------------------------------------------------------------------------------- /examples/ncpplot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/ncpplot/Makefile -------------------------------------------------------------------------------- /examples/ncpplot/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/ncpplot/Makefile.ex -------------------------------------------------------------------------------- /examples/ncpplot/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/ncpplot/ReadMe.txt -------------------------------------------------------------------------------- /examples/ncpplot/ncpplot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/ncpplot/ncpplot.cpp -------------------------------------------------------------------------------- /examples/ncpplot/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/ncpplot/stdafx.cpp -------------------------------------------------------------------------------- /examples/ncpplot/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/ncpplot/stdafx.h -------------------------------------------------------------------------------- /examples/ncpplot/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/ncpplot/targetver.h -------------------------------------------------------------------------------- /examples/netevol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/netevol/Makefile -------------------------------------------------------------------------------- /examples/netevol/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/netevol/Makefile.ex -------------------------------------------------------------------------------- /examples/netevol/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/netevol/ReadMe.txt -------------------------------------------------------------------------------- /examples/netevol/netevol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/netevol/netevol.cpp -------------------------------------------------------------------------------- /examples/netevol/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/netevol/stdafx.cpp -------------------------------------------------------------------------------- /examples/netevol/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/netevol/stdafx.h -------------------------------------------------------------------------------- /examples/netevol/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/netevol/targetver.h -------------------------------------------------------------------------------- /examples/netinf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/netinf/Makefile -------------------------------------------------------------------------------- /examples/netinf/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/netinf/Makefile.ex -------------------------------------------------------------------------------- /examples/netinf/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/netinf/ReadMe.txt -------------------------------------------------------------------------------- /examples/netinf/netinf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/netinf/netinf.cpp -------------------------------------------------------------------------------- /examples/netinf/netinf.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/netinf/netinf.vcproj -------------------------------------------------------------------------------- /examples/netinf/network.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/netinf/network.txt -------------------------------------------------------------------------------- /examples/netinf/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/netinf/stdafx.cpp -------------------------------------------------------------------------------- /examples/netinf/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/netinf/stdafx.h -------------------------------------------------------------------------------- /examples/netinf/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/netinf/targetver.h -------------------------------------------------------------------------------- /examples/netstat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/netstat/Makefile -------------------------------------------------------------------------------- /examples/netstat/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/netstat/Makefile.ex -------------------------------------------------------------------------------- /examples/netstat/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/netstat/ReadMe.txt -------------------------------------------------------------------------------- /examples/netstat/netstat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/netstat/netstat.cpp -------------------------------------------------------------------------------- /examples/netstat/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /examples/netstat/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/netstat/stdafx.h -------------------------------------------------------------------------------- /examples/netstat/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/netstat/targetver.h -------------------------------------------------------------------------------- /examples/node2vec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/node2vec/Makefile -------------------------------------------------------------------------------- /examples/node2vec/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/node2vec/Makefile.ex -------------------------------------------------------------------------------- /examples/node2vec/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/node2vec/ReadMe.txt -------------------------------------------------------------------------------- /examples/node2vec/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /examples/node2vec/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/node2vec/stdafx.h -------------------------------------------------------------------------------- /examples/node2vec/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/node2vec/targetver.h -------------------------------------------------------------------------------- /examples/randwalk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/randwalk/Makefile -------------------------------------------------------------------------------- /examples/randwalk/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/randwalk/Makefile.ex -------------------------------------------------------------------------------- /examples/randwalk/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/randwalk/ReadMe.txt -------------------------------------------------------------------------------- /examples/randwalk/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/randwalk/stdafx.cpp -------------------------------------------------------------------------------- /examples/randwalk/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/randwalk/stdafx.h -------------------------------------------------------------------------------- /examples/randwalk/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/randwalk/targetver.h -------------------------------------------------------------------------------- /examples/rolx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/rolx/Makefile -------------------------------------------------------------------------------- /examples/rolx/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/rolx/Makefile.ex -------------------------------------------------------------------------------- /examples/rolx/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/rolx/ReadMe.txt -------------------------------------------------------------------------------- /examples/rolx/graph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/rolx/graph.txt -------------------------------------------------------------------------------- /examples/rolx/rolx.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/rolx/rolx.vcxproj -------------------------------------------------------------------------------- /examples/rolx/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/rolx/stdafx.cpp -------------------------------------------------------------------------------- /examples/rolx/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/rolx/stdafx.h -------------------------------------------------------------------------------- /examples/rolx/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/rolx/targetver.h -------------------------------------------------------------------------------- /examples/rolx/testrolx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/rolx/testrolx.cpp -------------------------------------------------------------------------------- /examples/testgraph/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/testgraph/Makefile -------------------------------------------------------------------------------- /examples/testgraph/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/testgraph/ReadMe.txt -------------------------------------------------------------------------------- /examples/testgraph/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/testgraph/stdafx.cpp -------------------------------------------------------------------------------- /examples/testgraph/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/testgraph/stdafx.h -------------------------------------------------------------------------------- /examples/zygote/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/zygote/Makefile -------------------------------------------------------------------------------- /examples/zygote/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/zygote/Makefile.ex -------------------------------------------------------------------------------- /examples/zygote/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/zygote/ReadMe.txt -------------------------------------------------------------------------------- /examples/zygote/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/zygote/stdafx.cpp -------------------------------------------------------------------------------- /examples/zygote/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/zygote/stdafx.h -------------------------------------------------------------------------------- /examples/zygote/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/zygote/targetver.h -------------------------------------------------------------------------------- /examples/zygote/zydemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/examples/zygote/zydemo.cpp -------------------------------------------------------------------------------- /glib-adv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/Makefile -------------------------------------------------------------------------------- /glib-adv/acquis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/acquis.cpp -------------------------------------------------------------------------------- /glib-adv/acquis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/acquis.h -------------------------------------------------------------------------------- /glib-adv/adox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/adox.cpp -------------------------------------------------------------------------------- /glib-adv/adox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/adox.h -------------------------------------------------------------------------------- /glib-adv/aest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/aest.cpp -------------------------------------------------------------------------------- /glib-adv/aest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/aest.h -------------------------------------------------------------------------------- /glib-adv/amazon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/amazon.cpp -------------------------------------------------------------------------------- /glib-adv/amazon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/amazon.h -------------------------------------------------------------------------------- /glib-adv/appsrv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/appsrv.cpp -------------------------------------------------------------------------------- /glib-adv/appsrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/appsrv.h -------------------------------------------------------------------------------- /glib-adv/bde.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/bde.cpp -------------------------------------------------------------------------------- /glib-adv/bde.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/bde.h -------------------------------------------------------------------------------- /glib-adv/biling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/biling.cpp -------------------------------------------------------------------------------- /glib-adv/biling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/biling.h -------------------------------------------------------------------------------- /glib-adv/bix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/bix.cpp -------------------------------------------------------------------------------- /glib-adv/bix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/bix.h -------------------------------------------------------------------------------- /glib-adv/book.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/book.cpp -------------------------------------------------------------------------------- /glib-adv/book.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/book.h -------------------------------------------------------------------------------- /glib-adv/bowactlearn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/bowactlearn.cpp -------------------------------------------------------------------------------- /glib-adv/bowactlearn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/bowactlearn.h -------------------------------------------------------------------------------- /glib-adv/bowbs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/bowbs.cpp -------------------------------------------------------------------------------- /glib-adv/bowbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/bowbs.h -------------------------------------------------------------------------------- /glib-adv/bowclust.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/bowclust.cpp -------------------------------------------------------------------------------- /glib-adv/bowclust.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/bowclust.h -------------------------------------------------------------------------------- /glib-adv/bowfl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/bowfl.cpp -------------------------------------------------------------------------------- /glib-adv/bowfl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/bowfl.h -------------------------------------------------------------------------------- /glib-adv/bowflx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/bowflx.cpp -------------------------------------------------------------------------------- /glib-adv/bowflx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/bowflx.h -------------------------------------------------------------------------------- /glib-adv/bowlearn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/bowlearn.cpp -------------------------------------------------------------------------------- /glib-adv/bowlearn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/bowlearn.h -------------------------------------------------------------------------------- /glib-adv/bowlinalg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/bowlinalg.cpp -------------------------------------------------------------------------------- /glib-adv/bowlinalg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/bowlinalg.h -------------------------------------------------------------------------------- /glib-adv/bowmatrix.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glib-adv/bowmatrix.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glib-adv/bowmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/bowmd.cpp -------------------------------------------------------------------------------- /glib-adv/bowmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/bowmd.h -------------------------------------------------------------------------------- /glib-adv/btaServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/btaServer.h -------------------------------------------------------------------------------- /glib-adv/btalarms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/btalarms.cpp -------------------------------------------------------------------------------- /glib-adv/btalarms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/btalarms.h -------------------------------------------------------------------------------- /glib-adv/btaserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/btaserver.cpp -------------------------------------------------------------------------------- /glib-adv/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/cache.h -------------------------------------------------------------------------------- /glib-adv/casino.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/casino.cpp -------------------------------------------------------------------------------- /glib-adv/casino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/casino.h -------------------------------------------------------------------------------- /glib-adv/ccar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/ccar.cpp -------------------------------------------------------------------------------- /glib-adv/ccar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/ccar.h -------------------------------------------------------------------------------- /glib-adv/cfyres.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/cfyres.cpp -------------------------------------------------------------------------------- /glib-adv/cfyres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/cfyres.h -------------------------------------------------------------------------------- /glib-adv/cgi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/cgi.cpp -------------------------------------------------------------------------------- /glib-adv/cgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/cgi.h -------------------------------------------------------------------------------- /glib-adv/ciawfb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/ciawfb.cpp -------------------------------------------------------------------------------- /glib-adv/ciawfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/ciawfb.h -------------------------------------------------------------------------------- /glib-adv/conjgrad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/conjgrad.h -------------------------------------------------------------------------------- /glib-adv/cordis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/cordis.cpp -------------------------------------------------------------------------------- /glib-adv/cordis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/cordis.h -------------------------------------------------------------------------------- /glib-adv/corrgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/corrgr.cpp -------------------------------------------------------------------------------- /glib-adv/corrgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/corrgr.h -------------------------------------------------------------------------------- /glib-adv/cpdoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/cpdoc.cpp -------------------------------------------------------------------------------- /glib-adv/cpdoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/cpdoc.h -------------------------------------------------------------------------------- /glib-adv/crawler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/crawler.cpp -------------------------------------------------------------------------------- /glib-adv/crawler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/crawler.h -------------------------------------------------------------------------------- /glib-adv/cyc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/cyc.cpp -------------------------------------------------------------------------------- /glib-adv/cyc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/cyc.h -------------------------------------------------------------------------------- /glib-adv/dm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/dm.cpp -------------------------------------------------------------------------------- /glib-adv/dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/dm.h -------------------------------------------------------------------------------- /glib-adv/dmhd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/dmhd.cpp -------------------------------------------------------------------------------- /glib-adv/dmhd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/dmhd.h -------------------------------------------------------------------------------- /glib-adv/dmine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/dmine.cpp -------------------------------------------------------------------------------- /glib-adv/dmine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/dmine.h -------------------------------------------------------------------------------- /glib-adv/dmoz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/dmoz.cpp -------------------------------------------------------------------------------- /glib-adv/dmoz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/dmoz.h -------------------------------------------------------------------------------- /glib-adv/dnet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/dnet.cpp -------------------------------------------------------------------------------- /glib-adv/dnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/dnet.h -------------------------------------------------------------------------------- /glib-adv/dzs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/dzs.cpp -------------------------------------------------------------------------------- /glib-adv/dzs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/dzs.h -------------------------------------------------------------------------------- /glib-adv/email.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/email.cpp -------------------------------------------------------------------------------- /glib-adv/email.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/email.h -------------------------------------------------------------------------------- /glib-adv/euproj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/euproj.cpp -------------------------------------------------------------------------------- /glib-adv/euproj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/euproj.h -------------------------------------------------------------------------------- /glib-adv/exset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/exset.cpp -------------------------------------------------------------------------------- /glib-adv/exset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/exset.h -------------------------------------------------------------------------------- /glib-adv/fa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/fa.cpp -------------------------------------------------------------------------------- /glib-adv/fa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/fa.h -------------------------------------------------------------------------------- /glib-adv/flx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/flx.cpp -------------------------------------------------------------------------------- /glib-adv/flx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/flx.h -------------------------------------------------------------------------------- /glib-adv/ftrgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/ftrgen.cpp -------------------------------------------------------------------------------- /glib-adv/ftrgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/ftrgen.h -------------------------------------------------------------------------------- /glib-adv/geoip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/geoip.cpp -------------------------------------------------------------------------------- /glib-adv/geoip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/geoip.h -------------------------------------------------------------------------------- /glib-adv/gix.cpp: -------------------------------------------------------------------------------- 1 | // no code, all in templates 2 | -------------------------------------------------------------------------------- /glib-adv/gix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/gix.h -------------------------------------------------------------------------------- /glib-adv/gks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/gks.cpp -------------------------------------------------------------------------------- /glib-adv/gks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/gks.h -------------------------------------------------------------------------------- /glib-adv/gksmfc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/gksmfc.cpp -------------------------------------------------------------------------------- /glib-adv/gksmfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/gksmfc.h -------------------------------------------------------------------------------- /glib-adv/gksvcl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/gksvcl.cpp -------------------------------------------------------------------------------- /glib-adv/gksvcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/gksvcl.h -------------------------------------------------------------------------------- /glib-adv/gksvml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/gksvml.cpp -------------------------------------------------------------------------------- /glib-adv/gksvml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/gksvml.h -------------------------------------------------------------------------------- /glib-adv/gkswf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/gkswf.cpp -------------------------------------------------------------------------------- /glib-adv/gkswf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/gkswf.h -------------------------------------------------------------------------------- /glib-adv/google.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/google.cpp -------------------------------------------------------------------------------- /glib-adv/google.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/google.h -------------------------------------------------------------------------------- /glib-adv/googlex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/googlex.cpp -------------------------------------------------------------------------------- /glib-adv/googlex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/googlex.h -------------------------------------------------------------------------------- /glib-adv/graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/graph.cpp -------------------------------------------------------------------------------- /glib-adv/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/graph.h -------------------------------------------------------------------------------- /glib-adv/gridvcl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/gridvcl.cpp -------------------------------------------------------------------------------- /glib-adv/gridvcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/gridvcl.h -------------------------------------------------------------------------------- /glib-adv/gsearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/gsearch.cpp -------------------------------------------------------------------------------- /glib-adv/gsearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/gsearch.h -------------------------------------------------------------------------------- /glib-adv/guid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/guid.cpp -------------------------------------------------------------------------------- /glib-adv/guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/guid.h -------------------------------------------------------------------------------- /glib-adv/hashgenericmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/hashgenericmp.h -------------------------------------------------------------------------------- /glib-adv/hc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/hc.cpp -------------------------------------------------------------------------------- /glib-adv/hc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/hc.h -------------------------------------------------------------------------------- /glib-adv/hldoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/hldoc.cpp -------------------------------------------------------------------------------- /glib-adv/hldoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/hldoc.h -------------------------------------------------------------------------------- /glib-adv/infonet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/infonet.cpp -------------------------------------------------------------------------------- /glib-adv/infonet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/infonet.h -------------------------------------------------------------------------------- /glib-adv/kernelmethods.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/kernelmethods.cpp -------------------------------------------------------------------------------- /glib-adv/kernelmethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/kernelmethods.h -------------------------------------------------------------------------------- /glib-adv/logreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/logreg.cpp -------------------------------------------------------------------------------- /glib-adv/logreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/logreg.h -------------------------------------------------------------------------------- /glib-adv/lsionto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/lsionto.cpp -------------------------------------------------------------------------------- /glib-adv/lsionto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/lsionto.h -------------------------------------------------------------------------------- /glib-adv/md.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/md.cpp -------------------------------------------------------------------------------- /glib-adv/md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/md.h -------------------------------------------------------------------------------- /glib-adv/mdtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/mdtr.cpp -------------------------------------------------------------------------------- /glib-adv/mdtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/mdtr.h -------------------------------------------------------------------------------- /glib-adv/medline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/medline.cpp -------------------------------------------------------------------------------- /glib-adv/medline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/medline.h -------------------------------------------------------------------------------- /glib-adv/mg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/mg.cpp -------------------------------------------------------------------------------- /glib-adv/mg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/mg.h -------------------------------------------------------------------------------- /glib-adv/mindset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/mindset.h -------------------------------------------------------------------------------- /glib-adv/mine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/mine.cpp -------------------------------------------------------------------------------- /glib-adv/mine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/mine.h -------------------------------------------------------------------------------- /glib-adv/mkcca.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/mkcca.cpp -------------------------------------------------------------------------------- /glib-adv/mkcca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/mkcca.h -------------------------------------------------------------------------------- /glib-adv/mte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/mte.cpp -------------------------------------------------------------------------------- /glib-adv/mte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/mte.h -------------------------------------------------------------------------------- /glib-adv/mtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/mtr.cpp -------------------------------------------------------------------------------- /glib-adv/mtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/mtr.h -------------------------------------------------------------------------------- /glib-adv/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/net.cpp -------------------------------------------------------------------------------- /glib-adv/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/net.h -------------------------------------------------------------------------------- /glib-adv/netobj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/netobj.cpp -------------------------------------------------------------------------------- /glib-adv/netobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/netobj.h -------------------------------------------------------------------------------- /glib-adv/nlpwinlf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/nlpwinlf.cpp -------------------------------------------------------------------------------- /glib-adv/nlpwinlf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/nlpwinlf.h -------------------------------------------------------------------------------- /glib-adv/nmen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/nmen.cpp -------------------------------------------------------------------------------- /glib-adv/nmen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/nmen.h -------------------------------------------------------------------------------- /glib-adv/nmobj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/nmobj.cpp -------------------------------------------------------------------------------- /glib-adv/nmobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/nmobj.h -------------------------------------------------------------------------------- /glib-adv/nntp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/nntp.cpp -------------------------------------------------------------------------------- /glib-adv/nntp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/nntp.h -------------------------------------------------------------------------------- /glib-adv/nyta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/nyta.cpp -------------------------------------------------------------------------------- /glib-adv/nyta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/nyta.h -------------------------------------------------------------------------------- /glib-adv/nytngrams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/nytngrams.cpp -------------------------------------------------------------------------------- /glib-adv/nytngrams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/nytngrams.h -------------------------------------------------------------------------------- /glib-adv/odbc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/odbc.cpp -------------------------------------------------------------------------------- /glib-adv/odbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/odbc.h -------------------------------------------------------------------------------- /glib-adv/ontolight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/ontolight.cpp -------------------------------------------------------------------------------- /glib-adv/ontolight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/ontolight.h -------------------------------------------------------------------------------- /glib-adv/pest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/pest.cpp -------------------------------------------------------------------------------- /glib-adv/pest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/pest.h -------------------------------------------------------------------------------- /glib-adv/phrase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/phrase.cpp -------------------------------------------------------------------------------- /glib-adv/phrase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/phrase.h -------------------------------------------------------------------------------- /glib-adv/pi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/pi.cpp -------------------------------------------------------------------------------- /glib-adv/pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/pi.h -------------------------------------------------------------------------------- /glib-adv/postag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/postag.cpp -------------------------------------------------------------------------------- /glib-adv/postag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/postag.h -------------------------------------------------------------------------------- /glib-adv/prolog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/prolog.cpp -------------------------------------------------------------------------------- /glib-adv/prolog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/prolog.h -------------------------------------------------------------------------------- /glib-adv/prologparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/prologparser.cpp -------------------------------------------------------------------------------- /glib-adv/prologparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/prologparser.h -------------------------------------------------------------------------------- /glib-adv/proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/proxy.cpp -------------------------------------------------------------------------------- /glib-adv/proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/proxy.h -------------------------------------------------------------------------------- /glib-adv/pww.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/pww.cpp -------------------------------------------------------------------------------- /glib-adv/rdbms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/rdbms.cpp -------------------------------------------------------------------------------- /glib-adv/rdbms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/rdbms.h -------------------------------------------------------------------------------- /glib-adv/roget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/roget.cpp -------------------------------------------------------------------------------- /glib-adv/roget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/roget.h -------------------------------------------------------------------------------- /glib-adv/sappsrv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/sappsrv.cpp -------------------------------------------------------------------------------- /glib-adv/sappsrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/sappsrv.h -------------------------------------------------------------------------------- /glib-adv/sch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/sch.cpp -------------------------------------------------------------------------------- /glib-adv/sch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/sch.h -------------------------------------------------------------------------------- /glib-adv/semspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/semspace.cpp -------------------------------------------------------------------------------- /glib-adv/semspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/semspace.h -------------------------------------------------------------------------------- /glib-adv/sgraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/sgraph.cpp -------------------------------------------------------------------------------- /glib-adv/sgraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/sgraph.h -------------------------------------------------------------------------------- /glib-adv/skygrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/skygrid.cpp -------------------------------------------------------------------------------- /glib-adv/skygrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/skygrid.h -------------------------------------------------------------------------------- /glib-adv/smtp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/smtp.cpp -------------------------------------------------------------------------------- /glib-adv/smtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/smtp.h -------------------------------------------------------------------------------- /glib-adv/soap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/soap.cpp -------------------------------------------------------------------------------- /glib-adv/soap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/soap.h -------------------------------------------------------------------------------- /glib-adv/sock-new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/sock-new.cpp -------------------------------------------------------------------------------- /glib-adv/sock-new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/sock-new.h -------------------------------------------------------------------------------- /glib-adv/sock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/sock.cpp -------------------------------------------------------------------------------- /glib-adv/sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/sock.h -------------------------------------------------------------------------------- /glib-adv/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/sqlite3.c -------------------------------------------------------------------------------- /glib-adv/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/sqlite3.h -------------------------------------------------------------------------------- /glib-adv/sqlitedb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/sqlitedb.cpp -------------------------------------------------------------------------------- /glib-adv/sqlitedb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/sqlitedb.h -------------------------------------------------------------------------------- /glib-adv/ssch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/ssch.cpp -------------------------------------------------------------------------------- /glib-adv/ssch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/ssch.h -------------------------------------------------------------------------------- /glib-adv/sskj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/sskj.cpp -------------------------------------------------------------------------------- /glib-adv/sskj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/sskj.h -------------------------------------------------------------------------------- /glib-adv/ssql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/ssql.cpp -------------------------------------------------------------------------------- /glib-adv/ssql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/ssql.h -------------------------------------------------------------------------------- /glib-adv/ssqldm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/ssqldm.cpp -------------------------------------------------------------------------------- /glib-adv/ssqldm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/ssqldm.h -------------------------------------------------------------------------------- /glib-adv/stemming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/stemming.cpp -------------------------------------------------------------------------------- /glib-adv/stemming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/stemming.h -------------------------------------------------------------------------------- /glib-adv/stopword.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/stopword.cpp -------------------------------------------------------------------------------- /glib-adv/stopword.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/stopword.h -------------------------------------------------------------------------------- /glib-adv/strkernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/strkernel.cpp -------------------------------------------------------------------------------- /glib-adv/strkernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/strkernel.h -------------------------------------------------------------------------------- /glib-adv/strut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/strut.cpp -------------------------------------------------------------------------------- /glib-adv/strut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/strut.h -------------------------------------------------------------------------------- /glib-adv/subprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/subprocess.cpp -------------------------------------------------------------------------------- /glib-adv/subprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/subprocess.h -------------------------------------------------------------------------------- /glib-adv/svmPrLoqo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/svmPrLoqo.cpp -------------------------------------------------------------------------------- /glib-adv/svmPrLoqo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/svmPrLoqo.h -------------------------------------------------------------------------------- /glib-adv/svmbasic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/svmbasic.cpp -------------------------------------------------------------------------------- /glib-adv/svmbasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/svmbasic.h -------------------------------------------------------------------------------- /glib-adv/svmmodels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/svmmodels.cpp -------------------------------------------------------------------------------- /glib-adv/svmmodels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/svmmodels.h -------------------------------------------------------------------------------- /glib-adv/tagcloud.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/tagcloud.cpp -------------------------------------------------------------------------------- /glib-adv/tagcloud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/tagcloud.h -------------------------------------------------------------------------------- /glib-adv/tb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/tb.cpp -------------------------------------------------------------------------------- /glib-adv/tb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/tb.h -------------------------------------------------------------------------------- /glib-adv/tbhc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/tbhc.cpp -------------------------------------------------------------------------------- /glib-adv/tbhc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/tbhc.h -------------------------------------------------------------------------------- /glib-adv/tbval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/tbval.cpp -------------------------------------------------------------------------------- /glib-adv/tbval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/tbval.h -------------------------------------------------------------------------------- /glib-adv/term.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/term.cpp -------------------------------------------------------------------------------- /glib-adv/term.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/term.h -------------------------------------------------------------------------------- /glib-adv/testBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/testBase.cpp -------------------------------------------------------------------------------- /glib-adv/tmine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/tmine.cpp -------------------------------------------------------------------------------- /glib-adv/tmine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/tmine.h -------------------------------------------------------------------------------- /glib-adv/tnt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/tnt.cpp -------------------------------------------------------------------------------- /glib-adv/tnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/tnt.h -------------------------------------------------------------------------------- /glib-adv/tql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/tql.cpp -------------------------------------------------------------------------------- /glib-adv/tql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/tql.h -------------------------------------------------------------------------------- /glib-adv/ts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/ts.cpp -------------------------------------------------------------------------------- /glib-adv/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/ts.h -------------------------------------------------------------------------------- /glib-adv/txtbs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/txtbs.cpp -------------------------------------------------------------------------------- /glib-adv/txtbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/txtbs.h -------------------------------------------------------------------------------- /glib-adv/ultra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/ultra.cpp -------------------------------------------------------------------------------- /glib-adv/ultra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/ultra.h -------------------------------------------------------------------------------- /glib-adv/valds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/valds.cpp -------------------------------------------------------------------------------- /glib-adv/valds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/valds.h -------------------------------------------------------------------------------- /glib-adv/valret.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/valret.cpp -------------------------------------------------------------------------------- /glib-adv/valret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/valret.h -------------------------------------------------------------------------------- /glib-adv/vizmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/vizmap.cpp -------------------------------------------------------------------------------- /glib-adv/vizmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/vizmap.h -------------------------------------------------------------------------------- /glib-adv/vizmapgks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/vizmapgks.cpp -------------------------------------------------------------------------------- /glib-adv/vizmapgks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/vizmapgks.h -------------------------------------------------------------------------------- /glib-adv/wbmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/wbmp.cpp -------------------------------------------------------------------------------- /glib-adv/wbmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/wbmp.h -------------------------------------------------------------------------------- /glib-adv/webbsfetch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/webbsfetch.cpp -------------------------------------------------------------------------------- /glib-adv/webbsfetch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/webbsfetch.h -------------------------------------------------------------------------------- /glib-adv/webmb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/webmb.cpp -------------------------------------------------------------------------------- /glib-adv/webmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/webmb.h -------------------------------------------------------------------------------- /glib-adv/webnetobj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/webnetobj.cpp -------------------------------------------------------------------------------- /glib-adv/webnetobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/webnetobj.h -------------------------------------------------------------------------------- /glib-adv/webold.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/webold.cpp -------------------------------------------------------------------------------- /glib-adv/webold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/webold.h -------------------------------------------------------------------------------- /glib-adv/webpgfetch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/webpgfetch.cpp -------------------------------------------------------------------------------- /glib-adv/webpgfetch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/webpgfetch.h -------------------------------------------------------------------------------- /glib-adv/websrv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/websrv.cpp -------------------------------------------------------------------------------- /glib-adv/websrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/websrv.h -------------------------------------------------------------------------------- /glib-adv/webtrv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/webtrv.cpp -------------------------------------------------------------------------------- /glib-adv/webtrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/webtrv.h -------------------------------------------------------------------------------- /glib-adv/webtxtbs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/webtxtbs.cpp -------------------------------------------------------------------------------- /glib-adv/webtxtbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/webtxtbs.h -------------------------------------------------------------------------------- /glib-adv/wikipedia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/wikipedia.cpp -------------------------------------------------------------------------------- /glib-adv/wikipedia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/wikipedia.h -------------------------------------------------------------------------------- /glib-adv/wix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/wix.cpp -------------------------------------------------------------------------------- /glib-adv/wix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/wix.h -------------------------------------------------------------------------------- /glib-adv/wixexp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/wixexp.cpp -------------------------------------------------------------------------------- /glib-adv/wixexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/wixexp.h -------------------------------------------------------------------------------- /glib-adv/wmine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/wmine.cpp -------------------------------------------------------------------------------- /glib-adv/wmine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/wmine.h -------------------------------------------------------------------------------- /glib-adv/wordco.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/wordco.cpp -------------------------------------------------------------------------------- /glib-adv/wordco.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/wordco.h -------------------------------------------------------------------------------- /glib-adv/wordnet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/wordnet.cpp -------------------------------------------------------------------------------- /glib-adv/wordnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/wordnet.h -------------------------------------------------------------------------------- /glib-adv/xql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/xql.cpp -------------------------------------------------------------------------------- /glib-adv/xql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/xql.h -------------------------------------------------------------------------------- /glib-adv/yahoobs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/yahoobs.cpp -------------------------------------------------------------------------------- /glib-adv/yahoobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/yahoobs.h -------------------------------------------------------------------------------- /glib-adv/yahoodm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/yahoodm.cpp -------------------------------------------------------------------------------- /glib-adv/yahoodm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/yahoodm.h -------------------------------------------------------------------------------- /glib-adv/yahooex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/yahooex.cpp -------------------------------------------------------------------------------- /glib-adv/yahooex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/yahooex.h -------------------------------------------------------------------------------- /glib-adv/zipcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/zipcode.cpp -------------------------------------------------------------------------------- /glib-adv/zipcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-adv/zipcode.h -------------------------------------------------------------------------------- /glib-core/base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/base.cpp -------------------------------------------------------------------------------- /glib-core/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/base.h -------------------------------------------------------------------------------- /glib-core/bd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/bd.cpp -------------------------------------------------------------------------------- /glib-core/bd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/bd.h -------------------------------------------------------------------------------- /glib-core/bits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/bits.cpp -------------------------------------------------------------------------------- /glib-core/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/bits.h -------------------------------------------------------------------------------- /glib-core/blobbs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/blobbs.cpp -------------------------------------------------------------------------------- /glib-core/blobbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/blobbs.h -------------------------------------------------------------------------------- /glib-core/doc/bd.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/doc/bd.h.txt -------------------------------------------------------------------------------- /glib-core/doc/ds.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/doc/ds.h.txt -------------------------------------------------------------------------------- /glib-core/doc/ss.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/doc/ss.h.txt -------------------------------------------------------------------------------- /glib-core/doc/ssmp.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/doc/ssmp.h.txt -------------------------------------------------------------------------------- /glib-core/ds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/ds.h -------------------------------------------------------------------------------- /glib-core/dt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/dt.cpp -------------------------------------------------------------------------------- /glib-core/dt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/dt.h -------------------------------------------------------------------------------- /glib-core/env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/env.cpp -------------------------------------------------------------------------------- /glib-core/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/env.h -------------------------------------------------------------------------------- /glib-core/fl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/fl.cpp -------------------------------------------------------------------------------- /glib-core/fl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/fl.h -------------------------------------------------------------------------------- /glib-core/gnuplot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/gnuplot.cpp -------------------------------------------------------------------------------- /glib-core/gnuplot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/gnuplot.h -------------------------------------------------------------------------------- /glib-core/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/hash.cpp -------------------------------------------------------------------------------- /glib-core/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/hash.h -------------------------------------------------------------------------------- /glib-core/hashmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/hashmp.h -------------------------------------------------------------------------------- /glib-core/html.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/html.cpp -------------------------------------------------------------------------------- /glib-core/html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/html.h -------------------------------------------------------------------------------- /glib-core/http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/http.cpp -------------------------------------------------------------------------------- /glib-core/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/http.h -------------------------------------------------------------------------------- /glib-core/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/json.cpp -------------------------------------------------------------------------------- /glib-core/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/json.h -------------------------------------------------------------------------------- /glib-core/linalg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/linalg.cpp -------------------------------------------------------------------------------- /glib-core/linalg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/linalg.h -------------------------------------------------------------------------------- /glib-core/lx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/lx.cpp -------------------------------------------------------------------------------- /glib-core/lx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/lx.h -------------------------------------------------------------------------------- /glib-core/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/md5.cpp -------------------------------------------------------------------------------- /glib-core/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/md5.h -------------------------------------------------------------------------------- /glib-core/os.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/os.cpp -------------------------------------------------------------------------------- /glib-core/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/os.h -------------------------------------------------------------------------------- /glib-core/priorityqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/priorityqueue.h -------------------------------------------------------------------------------- /glib-core/shash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/shash.h -------------------------------------------------------------------------------- /glib-core/ss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/ss.cpp -------------------------------------------------------------------------------- /glib-core/ss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/ss.h -------------------------------------------------------------------------------- /glib-core/ssmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/ssmp.cpp -------------------------------------------------------------------------------- /glib-core/ssmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/ssmp.h -------------------------------------------------------------------------------- /glib-core/stdafx.h: -------------------------------------------------------------------------------- 1 | // empty StdAfx.h for non-Visual-C++ compilers 2 | -------------------------------------------------------------------------------- /glib-core/tm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/tm.cpp -------------------------------------------------------------------------------- /glib-core/tm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/tm.h -------------------------------------------------------------------------------- /glib-core/unicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/unicode.cpp -------------------------------------------------------------------------------- /glib-core/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/unicode.h -------------------------------------------------------------------------------- /glib-core/unicodestring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/unicodestring.cpp -------------------------------------------------------------------------------- /glib-core/unicodestring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/unicodestring.h -------------------------------------------------------------------------------- /glib-core/url.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/url.cpp -------------------------------------------------------------------------------- /glib-core/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/url.h -------------------------------------------------------------------------------- /glib-core/ut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/ut.cpp -------------------------------------------------------------------------------- /glib-core/ut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/ut.h -------------------------------------------------------------------------------- /glib-core/wch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/wch.cpp -------------------------------------------------------------------------------- /glib-core/wch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/wch.h -------------------------------------------------------------------------------- /glib-core/xfl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/xfl.cpp -------------------------------------------------------------------------------- /glib-core/xfl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/xfl.h -------------------------------------------------------------------------------- /glib-core/xmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/xmath.cpp -------------------------------------------------------------------------------- /glib-core/xmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/xmath.h -------------------------------------------------------------------------------- /glib-core/xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/xml.cpp -------------------------------------------------------------------------------- /glib-core/xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/xml.h -------------------------------------------------------------------------------- /glib-core/xmlser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/xmlser.h -------------------------------------------------------------------------------- /glib-core/zipfl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/zipfl.cpp -------------------------------------------------------------------------------- /glib-core/zipfl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/glib-core/zipfl.h -------------------------------------------------------------------------------- /snap-adv/agm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/agm.cpp -------------------------------------------------------------------------------- /snap-adv/agm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/agm.h -------------------------------------------------------------------------------- /snap-adv/agmattr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/agmattr.cpp -------------------------------------------------------------------------------- /snap-adv/agmattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/agmattr.h -------------------------------------------------------------------------------- /snap-adv/agmdirected.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/agmdirected.cpp -------------------------------------------------------------------------------- /snap-adv/agmdirected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/agmdirected.h -------------------------------------------------------------------------------- /snap-adv/agmfast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/agmfast.cpp -------------------------------------------------------------------------------- /snap-adv/agmfast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/agmfast.h -------------------------------------------------------------------------------- /snap-adv/agmfit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/agmfit.cpp -------------------------------------------------------------------------------- /snap-adv/agmfit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/agmfit.h -------------------------------------------------------------------------------- /snap-adv/biasedrandomwalk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/biasedrandomwalk.cpp -------------------------------------------------------------------------------- /snap-adv/biasedrandomwalk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/biasedrandomwalk.h -------------------------------------------------------------------------------- /snap-adv/cascdynetinf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/cascdynetinf.cpp -------------------------------------------------------------------------------- /snap-adv/cascdynetinf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/cascdynetinf.h -------------------------------------------------------------------------------- /snap-adv/cascnetinf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/cascnetinf.cpp -------------------------------------------------------------------------------- /snap-adv/cascnetinf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/cascnetinf.h -------------------------------------------------------------------------------- /snap-adv/circles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/circles.h -------------------------------------------------------------------------------- /snap-adv/cliques.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/cliques.cpp -------------------------------------------------------------------------------- /snap-adv/cliques.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/cliques.h -------------------------------------------------------------------------------- /snap-adv/doc/ncp.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/doc/ncp.h.txt -------------------------------------------------------------------------------- /snap-adv/graphcounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/graphcounter.cpp -------------------------------------------------------------------------------- /snap-adv/graphcounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/graphcounter.h -------------------------------------------------------------------------------- /snap-adv/hysgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/hysgen.cpp -------------------------------------------------------------------------------- /snap-adv/hysgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/hysgen.h -------------------------------------------------------------------------------- /snap-adv/kronecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/kronecker.cpp -------------------------------------------------------------------------------- /snap-adv/kronecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/kronecker.h -------------------------------------------------------------------------------- /snap-adv/localmotifcluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/localmotifcluster.h -------------------------------------------------------------------------------- /snap-adv/mag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/mag.cpp -------------------------------------------------------------------------------- /snap-adv/mag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/mag.h -------------------------------------------------------------------------------- /snap-adv/motifcluster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/motifcluster.cpp -------------------------------------------------------------------------------- /snap-adv/motifcluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/motifcluster.h -------------------------------------------------------------------------------- /snap-adv/n2v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/n2v.cpp -------------------------------------------------------------------------------- /snap-adv/n2v.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/n2v.h -------------------------------------------------------------------------------- /snap-adv/ncp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/ncp.cpp -------------------------------------------------------------------------------- /snap-adv/ncp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/ncp.h -------------------------------------------------------------------------------- /snap-adv/rolx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/rolx.cpp -------------------------------------------------------------------------------- /snap-adv/rolx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/rolx.h -------------------------------------------------------------------------------- /snap-adv/subgraphenum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/subgraphenum.cpp -------------------------------------------------------------------------------- /snap-adv/subgraphenum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/subgraphenum.h -------------------------------------------------------------------------------- /snap-adv/temporalmotifs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/temporalmotifs.cpp -------------------------------------------------------------------------------- /snap-adv/temporalmotifs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/temporalmotifs.h -------------------------------------------------------------------------------- /snap-adv/word2vec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/word2vec.cpp -------------------------------------------------------------------------------- /snap-adv/word2vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-adv/word2vec.h -------------------------------------------------------------------------------- /snap-core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/Makefile -------------------------------------------------------------------------------- /snap-core/Snap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/Snap.cpp -------------------------------------------------------------------------------- /snap-core/Snap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/Snap.h -------------------------------------------------------------------------------- /snap-core/alg.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snap-core/alg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/alg.h -------------------------------------------------------------------------------- /snap-core/anf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/anf.cpp -------------------------------------------------------------------------------- /snap-core/anf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/anf.h -------------------------------------------------------------------------------- /snap-core/attr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/attr.cpp -------------------------------------------------------------------------------- /snap-core/attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/attr.h -------------------------------------------------------------------------------- /snap-core/bfsdfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/bfsdfs.h -------------------------------------------------------------------------------- /snap-core/bignet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/bignet.h -------------------------------------------------------------------------------- /snap-core/casc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/casc.cpp -------------------------------------------------------------------------------- /snap-core/casc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/casc.h -------------------------------------------------------------------------------- /snap-core/centr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/centr.cpp -------------------------------------------------------------------------------- /snap-core/centr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/centr.h -------------------------------------------------------------------------------- /snap-core/cmty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/cmty.cpp -------------------------------------------------------------------------------- /snap-core/cmty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/cmty.h -------------------------------------------------------------------------------- /snap-core/cncom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/cncom.cpp -------------------------------------------------------------------------------- /snap-core/cncom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/cncom.h -------------------------------------------------------------------------------- /snap-core/conv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/conv.cpp -------------------------------------------------------------------------------- /snap-core/conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/conv.h -------------------------------------------------------------------------------- /snap-core/coreper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/coreper.cpp -------------------------------------------------------------------------------- /snap-core/coreper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/coreper.h -------------------------------------------------------------------------------- /snap-core/doc/Snap.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/doc/Snap.h.txt -------------------------------------------------------------------------------- /snap-core/doc/bfsdfs.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/doc/bfsdfs.h.txt -------------------------------------------------------------------------------- /snap-core/doc/bignet.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/doc/bignet.h.txt -------------------------------------------------------------------------------- /snap-core/doc/cncom.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/doc/cncom.h.txt -------------------------------------------------------------------------------- /snap-core/doc/flow.cpp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/doc/flow.cpp.txt -------------------------------------------------------------------------------- /snap-core/doc/flow.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/doc/flow.h.txt -------------------------------------------------------------------------------- /snap-core/doc/gbase.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/doc/gbase.h.txt -------------------------------------------------------------------------------- /snap-core/doc/ghash.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/doc/ghash.h.txt -------------------------------------------------------------------------------- /snap-core/doc/gio.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/doc/gio.h.txt -------------------------------------------------------------------------------- /snap-core/doc/graph.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/doc/graph.h.txt -------------------------------------------------------------------------------- /snap-core/doc/graphmp.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/doc/graphmp.h.txt -------------------------------------------------------------------------------- /snap-core/doc/gviz.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/doc/gviz.h.txt -------------------------------------------------------------------------------- /snap-core/doc/mmnet.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/doc/mmnet.h.txt -------------------------------------------------------------------------------- /snap-core/doc/network.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/doc/network.h.txt -------------------------------------------------------------------------------- /snap-core/doc/networkmp.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/doc/networkmp.h.txt -------------------------------------------------------------------------------- /snap-core/doc/subgraph.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/doc/subgraph.h.txt -------------------------------------------------------------------------------- /snap-core/doc/table.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/doc/table.h.txt -------------------------------------------------------------------------------- /snap-core/doc/triad.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/doc/triad.h.txt -------------------------------------------------------------------------------- /snap-core/doc/util.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/doc/util.h.txt -------------------------------------------------------------------------------- /snap-core/ff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/ff.cpp -------------------------------------------------------------------------------- /snap-core/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/ff.h -------------------------------------------------------------------------------- /snap-core/flow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/flow.cpp -------------------------------------------------------------------------------- /snap-core/flow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/flow.h -------------------------------------------------------------------------------- /snap-core/gbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/gbase.cpp -------------------------------------------------------------------------------- /snap-core/gbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/gbase.h -------------------------------------------------------------------------------- /snap-core/ggen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/ggen.cpp -------------------------------------------------------------------------------- /snap-core/ggen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/ggen.h -------------------------------------------------------------------------------- /snap-core/ghash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/ghash.cpp -------------------------------------------------------------------------------- /snap-core/ghash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/ghash.h -------------------------------------------------------------------------------- /snap-core/gio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/gio.cpp -------------------------------------------------------------------------------- /snap-core/gio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/gio.h -------------------------------------------------------------------------------- /snap-core/graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/graph.cpp -------------------------------------------------------------------------------- /snap-core/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/graph.h -------------------------------------------------------------------------------- /snap-core/graph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/graph.txt -------------------------------------------------------------------------------- /snap-core/graphmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/graphmp.cpp -------------------------------------------------------------------------------- /snap-core/graphmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/graphmp.h -------------------------------------------------------------------------------- /snap-core/gstat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/gstat.cpp -------------------------------------------------------------------------------- /snap-core/gstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/gstat.h -------------------------------------------------------------------------------- /snap-core/gsvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/gsvd.cpp -------------------------------------------------------------------------------- /snap-core/gsvd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/gsvd.h -------------------------------------------------------------------------------- /snap-core/gviz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/gviz.cpp -------------------------------------------------------------------------------- /snap-core/gviz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/gviz.h -------------------------------------------------------------------------------- /snap-core/kcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/kcore.h -------------------------------------------------------------------------------- /snap-core/mmnet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/mmnet.cpp -------------------------------------------------------------------------------- /snap-core/mmnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/mmnet.h -------------------------------------------------------------------------------- /snap-core/network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/network.cpp -------------------------------------------------------------------------------- /snap-core/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/network.h -------------------------------------------------------------------------------- /snap-core/networkmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/networkmp.cpp -------------------------------------------------------------------------------- /snap-core/networkmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/networkmp.h -------------------------------------------------------------------------------- /snap-core/numpy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/numpy.cpp -------------------------------------------------------------------------------- /snap-core/numpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/numpy.h -------------------------------------------------------------------------------- /snap-core/randwalk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/randwalk.h -------------------------------------------------------------------------------- /snap-core/sim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/sim.cpp -------------------------------------------------------------------------------- /snap-core/sim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/sim.h -------------------------------------------------------------------------------- /snap-core/statplot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/statplot.cpp -------------------------------------------------------------------------------- /snap-core/statplot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/statplot.h -------------------------------------------------------------------------------- /snap-core/stdafx.h: -------------------------------------------------------------------------------- 1 | // empty StdAfx.h for non-Visual-C++ compilers 2 | -------------------------------------------------------------------------------- /snap-core/subgraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/subgraph.cpp -------------------------------------------------------------------------------- /snap-core/subgraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/subgraph.h -------------------------------------------------------------------------------- /snap-core/table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/table.cpp -------------------------------------------------------------------------------- /snap-core/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/table.h -------------------------------------------------------------------------------- /snap-core/testSnap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/testSnap.cpp -------------------------------------------------------------------------------- /snap-core/timenet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/timenet.cpp -------------------------------------------------------------------------------- /snap-core/timenet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/timenet.h -------------------------------------------------------------------------------- /snap-core/triad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/triad.cpp -------------------------------------------------------------------------------- /snap-core/triad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/triad.h -------------------------------------------------------------------------------- /snap-core/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/util.cpp -------------------------------------------------------------------------------- /snap-core/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-core/util.h -------------------------------------------------------------------------------- /snap-exp/Makefile.exmain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/Makefile.exmain -------------------------------------------------------------------------------- /snap-exp/alternativetable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/alternativetable.cpp -------------------------------------------------------------------------------- /snap-exp/alternativetable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/alternativetable.h -------------------------------------------------------------------------------- /snap-exp/arxiv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/arxiv.cpp -------------------------------------------------------------------------------- /snap-exp/arxiv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/arxiv.h -------------------------------------------------------------------------------- /snap-exp/bfs-dev/.gitignore: -------------------------------------------------------------------------------- 1 | *.txt 2 | -------------------------------------------------------------------------------- /snap-exp/bfs-dev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/bfs-dev/Makefile -------------------------------------------------------------------------------- /snap-exp/bfs-dev/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/bfs-dev/Makefile.ex -------------------------------------------------------------------------------- /snap-exp/bfs-dev/bfs-dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/bfs-dev/bfs-dev.h -------------------------------------------------------------------------------- /snap-exp/bfs-dev/bfs-hybrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/bfs-dev/bfs-hybrid.h -------------------------------------------------------------------------------- /snap-exp/bfs-dev/bfs-vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/bfs-dev/bfs-vector.h -------------------------------------------------------------------------------- /snap-exp/bfs-dev/getScc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/bfs-dev/getScc.cpp -------------------------------------------------------------------------------- /snap-exp/bfs-dev/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/bfs-dev/stdafx.cpp -------------------------------------------------------------------------------- /snap-exp/bfs-dev/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/bfs-dev/stdafx.h -------------------------------------------------------------------------------- /snap-exp/bfs-dev/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/bfs-dev/targetver.h -------------------------------------------------------------------------------- /snap-exp/bfs-dev/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/bfs-dev/test.cpp -------------------------------------------------------------------------------- /snap-exp/bfs-dev/test1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/bfs-dev/test1.cpp -------------------------------------------------------------------------------- /snap-exp/bfs-dev/twitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/bfs-dev/twitter.cpp -------------------------------------------------------------------------------- /snap-exp/centr-exp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/centr-exp.cpp -------------------------------------------------------------------------------- /snap-exp/centr-exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/centr-exp.h -------------------------------------------------------------------------------- /snap-exp/circles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/circles/Makefile -------------------------------------------------------------------------------- /snap-exp/circles/Makefile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/circles/Makefile.ex -------------------------------------------------------------------------------- /snap-exp/circles/circles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/circles/circles.cpp -------------------------------------------------------------------------------- /snap-exp/circles/circles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/circles/circles.h -------------------------------------------------------------------------------- /snap-exp/circles/fb1.edges: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/circles/fb1.edges -------------------------------------------------------------------------------- /snap-exp/circles/fb1.features: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/circles/fb1.features -------------------------------------------------------------------------------- /snap-exp/circles/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/circles/stdafx.cpp -------------------------------------------------------------------------------- /snap-exp/circles/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/circles/stdafx.h -------------------------------------------------------------------------------- /snap-exp/circles/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/circles/targetver.h -------------------------------------------------------------------------------- /snap-exp/dblp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/dblp.cpp -------------------------------------------------------------------------------- /snap-exp/dblp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/dblp.h -------------------------------------------------------------------------------- /snap-exp/graphmp-exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/graphmp-exp.h -------------------------------------------------------------------------------- /snap-exp/imdbnet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/imdbnet.cpp -------------------------------------------------------------------------------- /snap-exp/imdbnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/imdbnet.h -------------------------------------------------------------------------------- /snap-exp/linkpred.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/linkpred.cpp -------------------------------------------------------------------------------- /snap-exp/linkpred.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/linkpred.h -------------------------------------------------------------------------------- /snap-exp/lsh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/lsh.cpp -------------------------------------------------------------------------------- /snap-exp/lsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/lsh.h -------------------------------------------------------------------------------- /snap-exp/memenet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/memenet.cpp -------------------------------------------------------------------------------- /snap-exp/memenet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/memenet.h -------------------------------------------------------------------------------- /snap-exp/memes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/memes.cpp -------------------------------------------------------------------------------- /snap-exp/memes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/memes.h -------------------------------------------------------------------------------- /snap-exp/mmgraph-exp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/mmgraph-exp.cpp -------------------------------------------------------------------------------- /snap-exp/mmgraph-exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/mmgraph-exp.h -------------------------------------------------------------------------------- /snap-exp/mxdag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/mxdag.cpp -------------------------------------------------------------------------------- /snap-exp/mxdag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/mxdag.h -------------------------------------------------------------------------------- /snap-exp/signnet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/signnet.cpp -------------------------------------------------------------------------------- /snap-exp/signnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/signnet.h -------------------------------------------------------------------------------- /snap-exp/sir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/sir.cpp -------------------------------------------------------------------------------- /snap-exp/sir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/sir.h -------------------------------------------------------------------------------- /snap-exp/spinn3r.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/spinn3r.cpp -------------------------------------------------------------------------------- /snap-exp/spinn3r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/spinn3r.h -------------------------------------------------------------------------------- /snap-exp/test-dev/Engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/test-dev/Engine.cpp -------------------------------------------------------------------------------- /snap-exp/test-dev/Engine.h: -------------------------------------------------------------------------------- 1 | #include "Snap.h" 2 | -------------------------------------------------------------------------------- /snap-exp/test-dev/IdTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/test-dev/IdTest.cpp -------------------------------------------------------------------------------- /snap-exp/test-dev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/test-dev/Makefile -------------------------------------------------------------------------------- /snap-exp/trawling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/trawling.cpp -------------------------------------------------------------------------------- /snap-exp/trawling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/trawling.h -------------------------------------------------------------------------------- /snap-exp/wgtnet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/wgtnet.cpp -------------------------------------------------------------------------------- /snap-exp/wgtnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/wgtnet.h -------------------------------------------------------------------------------- /snap-exp/wikinet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/wikinet.cpp -------------------------------------------------------------------------------- /snap-exp/wikinet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/snap-exp/wikinet.h -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/flow/small_sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/flow/small_sample.txt -------------------------------------------------------------------------------- /test/graphviz/node_colors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/graphviz/node_colors.txt -------------------------------------------------------------------------------- /test/randwalk/test_graph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/randwalk/test_graph.txt -------------------------------------------------------------------------------- /test/randwalk/test_pprs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/randwalk/test_pprs.txt -------------------------------------------------------------------------------- /test/run-all-tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/run-all-tests.cpp -------------------------------------------------------------------------------- /test/table/grades.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/table/grades.txt -------------------------------------------------------------------------------- /test/test-TAttr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-TAttr.cpp -------------------------------------------------------------------------------- /test/test-TCrossNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-TCrossNet.cpp -------------------------------------------------------------------------------- /test/test-TDirNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-TDirNet.cpp -------------------------------------------------------------------------------- /test/test-THash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-THash.cpp -------------------------------------------------------------------------------- /test/test-THashSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-THashSet.cpp -------------------------------------------------------------------------------- /test/test-TMMNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-TMMNet.cpp -------------------------------------------------------------------------------- /test/test-TModeNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-TModeNet.cpp -------------------------------------------------------------------------------- /test/test-TNEANet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-TNEANet.cpp -------------------------------------------------------------------------------- /test/test-TNEGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-TNEGraph.cpp -------------------------------------------------------------------------------- /test/test-TNGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-TNGraph.cpp -------------------------------------------------------------------------------- /test/test-TNodeEDatNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-TNodeEDatNet.cpp -------------------------------------------------------------------------------- /test/test-TNodeEdgeNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-TNodeEdgeNet.cpp -------------------------------------------------------------------------------- /test/test-TNodeNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-TNodeNet.cpp -------------------------------------------------------------------------------- /test/test-TStrPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-TStrPool.cpp -------------------------------------------------------------------------------- /test/test-TSysTm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-TSysTm.cpp -------------------------------------------------------------------------------- /test/test-TTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-TTable.cpp -------------------------------------------------------------------------------- /test/test-TUNGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-TUNGraph.cpp -------------------------------------------------------------------------------- /test/test-TUndirNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-TUndirNet.cpp -------------------------------------------------------------------------------- /test/test-alg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-alg.cpp -------------------------------------------------------------------------------- /test/test-bfsdfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-bfsdfs.cpp -------------------------------------------------------------------------------- /test/test-cncom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-cncom.cpp -------------------------------------------------------------------------------- /test/test-file.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test-flow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-flow.cpp -------------------------------------------------------------------------------- /test/test-ggen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-ggen.cpp -------------------------------------------------------------------------------- /test/test-gio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-gio.cpp -------------------------------------------------------------------------------- /test/test-gviz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-gviz.cpp -------------------------------------------------------------------------------- /test/test-helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-helper.cpp -------------------------------------------------------------------------------- /test/test-helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-helper.h -------------------------------------------------------------------------------- /test/test-multimodal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-multimodal.cpp -------------------------------------------------------------------------------- /test/test-priority-queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-priority-queue.cpp -------------------------------------------------------------------------------- /test/test-randwalk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-randwalk.cpp -------------------------------------------------------------------------------- /test/test-shmio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-shmio.cpp -------------------------------------------------------------------------------- /test/test-sim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-sim.cpp -------------------------------------------------------------------------------- /test/test-subgraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-subgraph.cpp -------------------------------------------------------------------------------- /test/test-triad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/test/test-triad.cpp -------------------------------------------------------------------------------- /tutorials/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/tutorials/Makefile -------------------------------------------------------------------------------- /tutorials/demo-TAttr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/tutorials/demo-TAttr.cpp -------------------------------------------------------------------------------- /tutorials/demo-TDirNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/tutorials/demo-TDirNet.cpp -------------------------------------------------------------------------------- /tutorials/demo-THash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/tutorials/demo-THash.cpp -------------------------------------------------------------------------------- /tutorials/demo-TNEANet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/tutorials/demo-TNEANet.cpp -------------------------------------------------------------------------------- /tutorials/demo-TNEGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/tutorials/demo-TNEGraph.cpp -------------------------------------------------------------------------------- /tutorials/demo-TNGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/tutorials/demo-TNGraph.cpp -------------------------------------------------------------------------------- /tutorials/demo-TNodeNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/tutorials/demo-TNodeNet.cpp -------------------------------------------------------------------------------- /tutorials/demo-TSsParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/tutorials/demo-TSsParser.cpp -------------------------------------------------------------------------------- /tutorials/demo-TUNGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/tutorials/demo-TUNGraph.cpp -------------------------------------------------------------------------------- /tutorials/demo-TUndirNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/tutorials/demo-TUndirNet.cpp -------------------------------------------------------------------------------- /tutorials/demo-alg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/tutorials/demo-alg.cpp -------------------------------------------------------------------------------- /tutorials/demo-bfsdfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/tutorials/demo-bfsdfs.cpp -------------------------------------------------------------------------------- /tutorials/demo-cncom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/tutorials/demo-cncom.cpp -------------------------------------------------------------------------------- /tutorials/demo-cncom1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/tutorials/demo-cncom1.cpp -------------------------------------------------------------------------------- /tutorials/demo-ggen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/tutorials/demo-ggen.cpp -------------------------------------------------------------------------------- /tutorials/demo-gio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/tutorials/demo-gio.cpp -------------------------------------------------------------------------------- /tutorials/demo-gviz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/tutorials/demo-gviz.cpp -------------------------------------------------------------------------------- /tutorials/demo-multimodal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/tutorials/demo-multimodal.cpp -------------------------------------------------------------------------------- /tutorials/demo-subgraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/tutorials/demo-subgraph.cpp -------------------------------------------------------------------------------- /tutorials/demo-triad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/tutorials/demo-triad.cpp -------------------------------------------------------------------------------- /tutorials/parser/TestData.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-stanford/snap/HEAD/tutorials/parser/TestData.zip --------------------------------------------------------------------------------