You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hugegraph.apache.org by ji...@apache.org on 2022/11/02 06:45:24 UTC

[incubator-hugegraph] branch olap-algo updated (d2cc462ee -> 62f7290e2)

This is an automated email from the ASF dual-hosted git repository.

jin pushed a change to branch olap-algo
in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph.git


 discard d2cc462ee clean code
 discard a2565d011 Update AlgorithmAPI.java
 discard c3ad90fe0 update dependency
 discard 8caeab39d Update SubgraphStatAlgorithm.java
 discard 4808042ad Update AbstractAlgorithm.java
 discard 975c0af9e Merge branch 'master' into olap-algo
 discard 7bbb8a865 fix lpa not exist c_label property when a request pass source_label (#78)
 discard 906ea8ecc fix fusiform and kcore min_groups args default value (#79)
 discard f75396fbb fix ap compile error for edition 0.11 (#72)
 discard 8eac98a12 performance improvement: the  meetNode is invoked only when node.distance is parent.distance() + 1 (#69)
 discard 4b5560a5e add StressCentrality v2 (#65)
 discard 4114abb79 add depth-first version betweennes centrality (#68)
 discard 08c33c2e5 fix closeness distance: 1 extra length is calculated (#67)
 discard dfdccad57 add betweenness algorithm (#63)
 discard c22d2d38d update Betweenness with Stressness (#60)
 discard d72d189af add export_community for lounvain (#43)
 discard 7c665f388 add with_boundary parameter for betweeness (#42)
 discard 199fb16ea fix DegreeCentrality degree count limit OOL (#39)
 discard 8e5296612 add skipi_isolated param for louvain (#37)
 discard 32bacddbd add parameter top to print the top result in job result (#32)
 discard 1402d10c3 fix server id/role NPE in initServerInfo when truncate temp graph (#28)
 discard 864c1fcef fix no auth with worker thread of olap algo (#27)
 discard b8936c767 rebase master(0.11.1)
 discard 0501b41fe add BOTH direction support for triangle_count/cluster_coeffcient (#24)
 discard d1f4177c4 add subgraph_stat algorithm (#23)
 discard 790ada9df add weak connected component analysis (#21)
 discard d7a28edc2 add page rank algorithm (#19)
 discard 05ce6ac3e fix algorithm can't stop caused by threads exception (#18)
 discard 963b39416 Support ring detect count (#17)
 discard fe3572403 fix parallel LPA not commit by threads (#16)
 discard a11acdffc support parallel: Louvain,LPA,Rings,K-Core,Fusiform (#15)
 discard 38981554e louvain: add modularity parameter and fix isolated community lost (#14)
 discard d6ad2bcc7 add direction and label parameter for centrality algorithms (#13)
 discard ea116cd8b optimize filterNonShortestPath() for betweeness_centrality (#12)
 discard db922eb2d fix inconsistent error messages with clabel (#10)
 discard f8a0e24a6 set louvain max community members limit 10w (#9)
 discard bd3a0be86 add fusiform_similarity,rings_detect and kcore ap algorithm (#5)
 discard fa306b4b9 implement 8 olap algorithms (#4)
     add 33173db80 implement 8 olap algorithms (#4)
     add 33e971c91 add fusiform_similarity,rings_detect and kcore ap algorithm (#5)
     add 1a10a99bb set louvain max community members limit 10w (#9)
     add 3e1583a6b fix inconsistent error messages with clabel (#10)
     add 56bf81428 optimize filterNonShortestPath() for betweeness_centrality (#12)
     add e2b1a0f4d add direction and label parameter for centrality algorithms (#13)
     add c4d90b8d7 louvain: add modularity parameter and fix isolated community lost (#14)
     add 2c3c10818 support parallel: Louvain,LPA,Rings,K-Core,Fusiform (#15)
     add ab8f68dcb fix parallel LPA not commit by threads (#16)
     add 042891b9d Support ring detect count (#17)
     add e4ec1fd1f fix algorithm can't stop caused by threads exception (#18)
     add 59660c75b add page rank algorithm (#19)
     add 99927e284 add weak connected component analysis (#21)
     add 313321fd8 add subgraph_stat algorithm (#23)
     add 800376954 add BOTH direction support for triangle_count/cluster_coeffcient (#24)
     add 7b83d1604 rebase master(0.11.1)
     add 740382cf6 fix no auth with worker thread of olap algo (#27)
     add d3fdb99b8 fix server id/role NPE in initServerInfo when truncate temp graph (#28)
     add bd62bcbe6 add parameter top to print the top result in job result (#32)
     add 7ecd6cb23 add skipi_isolated param for louvain (#37)
     add 77c1921d5 fix DegreeCentrality degree count limit OOL (#39)
     add 6e4f6fb0f add with_boundary parameter for betweeness (#42)
     add f49f233b8 add export_community for lounvain (#43)
     add e7088eba0 update Betweenness with Stressness (#60)
     add 8e70ee40d add betweenness algorithm (#63)
     add 1c5692317 fix closeness distance: 1 extra length is calculated (#67)
     add 2d5be6205 add depth-first version betweennes centrality (#68)
     add b1d923871 add StressCentrality v2 (#65)
     add 2c49c74e6 performance improvement: the  meetNode is invoked only when node.distance is parent.distance() + 1 (#69)
     add d906bc02f fix ap compile error for edition 0.11 (#72)
     add f3d1f2729 fix fusiform and kcore min_groups args default value (#79)
     add 4f60381a0 fix lpa not exist c_label property when a request pass source_label (#78)
     add 62f7290e2 adapt the latest version & clean code

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (d2cc462ee)
            \
             N -- N -- N   refs/heads/olap-algo (62f7290e2)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .../baidu/hugegraph/job/algorithm/Algorithm.java   |  8 ++---
 .../hugegraph/job/algorithm/AlgorithmPool.java     |  4 +--
 .../hugegraph/job/algorithm/BfsTraverser.java      |  4 +--
 .../baidu/hugegraph/job/algorithm/Consumers.java   |  5 ++-
 .../job/algorithm/SubgraphStatAlgorithm.java       |  4 +--
 .../job/algorithm/cent/AbstractCentAlgorithm.java  | 11 ++++---
 .../cent/BetweennessCentralityAlgorithm.java       |  2 +-
 .../cent/ClosenessCentralityAlgorithm.java         |  2 +-
 .../cent/ClosenessCentralityAlgorithmV2.java       |  2 +-
 .../algorithm/cent/DegreeCentralityAlgorithm.java  |  4 +--
 .../cent/EigenvectorCentralityAlgorithm.java       |  2 +-
 .../algorithm/cent/StressCentralityAlgorithm.java  |  2 +-
 ...orithm.java => ClusterCoeffcientAlgorithm.java} | 13 ++++----
 .../job/algorithm/comm/LouvainTraverser.java       | 37 +++++++++++++---------
 .../hugegraph/job/algorithm/comm/LpaAlgorithm.java |  2 +-
 .../hugegraph/job/computer/AbstractComputer.java   |  5 +--
 .../com/baidu/hugegraph/job/schema/SchemaJob.java  |  4 +--
 .../job/system/DeleteExpiredIndexJob.java          |  2 +-
 .../baidu/hugegraph/job/system/JobCounters.java    | 11 ++++---
 19 files changed, 68 insertions(+), 56 deletions(-)
 rename hugegraph-core/src/main/java/com/baidu/hugegraph/job/algorithm/comm/{ClusterCoefficientAlgorithm.java => ClusterCoeffcientAlgorithm.java} (84%)