├── README.md ├── code ├── algorithms │ ├── Hyperspreading.py │ ├── algorithms.py │ ├── datamanage.py │ └── transform.py ├── degree_correlation │ ├── datamanage.py │ ├── degree_correlation.py │ └── transform.py ├── hyperCL │ └── hyperCL.py ├── overlap │ ├── Hyperspreading.py │ ├── datamanage.py │ ├── influence_overlap_final_single.py │ └── transform.py └── topo │ └── Hyper_topo.py └── data ├── Algebra.txt ├── Bars-Rev.txt ├── Geometry.txt ├── Music-Rev.txt ├── NDC-classes-unique-hyperedges.txt ├── Restaurants-Rev.txt ├── iAF1260b.txt └── iJO1366.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDMXIE/Influence-maximization-on-hypergraphs/HEAD/README.md -------------------------------------------------------------------------------- /code/algorithms/Hyperspreading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDMXIE/Influence-maximization-on-hypergraphs/HEAD/code/algorithms/Hyperspreading.py -------------------------------------------------------------------------------- /code/algorithms/algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDMXIE/Influence-maximization-on-hypergraphs/HEAD/code/algorithms/algorithms.py -------------------------------------------------------------------------------- /code/algorithms/datamanage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDMXIE/Influence-maximization-on-hypergraphs/HEAD/code/algorithms/datamanage.py -------------------------------------------------------------------------------- /code/algorithms/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDMXIE/Influence-maximization-on-hypergraphs/HEAD/code/algorithms/transform.py -------------------------------------------------------------------------------- /code/degree_correlation/datamanage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDMXIE/Influence-maximization-on-hypergraphs/HEAD/code/degree_correlation/datamanage.py -------------------------------------------------------------------------------- /code/degree_correlation/degree_correlation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDMXIE/Influence-maximization-on-hypergraphs/HEAD/code/degree_correlation/degree_correlation.py -------------------------------------------------------------------------------- /code/degree_correlation/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDMXIE/Influence-maximization-on-hypergraphs/HEAD/code/degree_correlation/transform.py -------------------------------------------------------------------------------- /code/hyperCL/hyperCL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDMXIE/Influence-maximization-on-hypergraphs/HEAD/code/hyperCL/hyperCL.py -------------------------------------------------------------------------------- /code/overlap/Hyperspreading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDMXIE/Influence-maximization-on-hypergraphs/HEAD/code/overlap/Hyperspreading.py -------------------------------------------------------------------------------- /code/overlap/datamanage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDMXIE/Influence-maximization-on-hypergraphs/HEAD/code/overlap/datamanage.py -------------------------------------------------------------------------------- /code/overlap/influence_overlap_final_single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDMXIE/Influence-maximization-on-hypergraphs/HEAD/code/overlap/influence_overlap_final_single.py -------------------------------------------------------------------------------- /code/overlap/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDMXIE/Influence-maximization-on-hypergraphs/HEAD/code/overlap/transform.py -------------------------------------------------------------------------------- /code/topo/Hyper_topo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDMXIE/Influence-maximization-on-hypergraphs/HEAD/code/topo/Hyper_topo.py -------------------------------------------------------------------------------- /data/Algebra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDMXIE/Influence-maximization-on-hypergraphs/HEAD/data/Algebra.txt -------------------------------------------------------------------------------- /data/Bars-Rev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDMXIE/Influence-maximization-on-hypergraphs/HEAD/data/Bars-Rev.txt -------------------------------------------------------------------------------- /data/Geometry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDMXIE/Influence-maximization-on-hypergraphs/HEAD/data/Geometry.txt -------------------------------------------------------------------------------- /data/Music-Rev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDMXIE/Influence-maximization-on-hypergraphs/HEAD/data/Music-Rev.txt -------------------------------------------------------------------------------- /data/NDC-classes-unique-hyperedges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDMXIE/Influence-maximization-on-hypergraphs/HEAD/data/NDC-classes-unique-hyperedges.txt -------------------------------------------------------------------------------- /data/Restaurants-Rev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDMXIE/Influence-maximization-on-hypergraphs/HEAD/data/Restaurants-Rev.txt -------------------------------------------------------------------------------- /data/iAF1260b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDMXIE/Influence-maximization-on-hypergraphs/HEAD/data/iAF1260b.txt -------------------------------------------------------------------------------- /data/iJO1366.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDMXIE/Influence-maximization-on-hypergraphs/HEAD/data/iJO1366.txt --------------------------------------------------------------------------------