Pith. sign in

REVIEW 4 major objections 6 minor 1 cited by

Influence Maximization in Temporal Networks with Persistent and Reactive Behaviors

T0 review · 4 major / 6 minor · reviewed 2026-08-10 · deepseek-v4-flash

Pith's one-line read The paper claims that its temporal diffusion model cpSI-R, which allows nodes to deactivate, reactivate, and be reinforced by repeated contact, has a monotone and submodular spread function, so greedy seed selection keeps its…

desk verdict The main theoretical claim is a restatement of the conclusion, not a proof, and the model's own tau-window dynamics allow spread to drop when seeds are added; the model idea and sampling heuristic are reasonable, but the paper's core guarantee is unsupported. read the letter →

arxiv 2412.20936 v2 pith:RGGGTCYP submitted 2024-12-30 cs.SI physics.comp-ph

classification cs.SIphysics.comp-ph
keywords influencemaximizationtemporalnetworksdiffusionmodelmonotonesubmodularityreactivationandreinforcementsnapshotsamplinggreedyapproximationsocial
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

This paper tries to show that influence maximization on temporal networks does not have to sacrifice optimization guarantees to model realistic behavioral cycles. It introduces cpSI-R, a susceptible-infected model in which nodes spread influence for a limited window, can go inactive, and can be reactivated by contact with active nodes, with each repeated exposure raising infection probability. The paper's main theoretical claim is that expected spread under cpSI-R stays monotone and submodular, so greedy seed selection keeps its approximation bound. If true, this matters because prior temporal models with active-inactive transitions are argued to break those properties, leaving seed selection without quality guarantees. The paper also reports that its sampling-and-selection pipeline beats several temporal baselines in spread and runtime on datasets ranging from school contacts to large online networks.

What carries the argument

The central object is the cpSI-R model: each infected node $u$ can try to infect a susceptible neighbor $v$ at each temporal contact $t^k_{uv}$ with probability $p_{uv}(t^k_{uv}) = p_0(1-e^{-\alpha k})f(t^k_{uv})$, where the temporal factor is $f(t^k_{uv}) = \beta e^{-\gamma(t^k_{uv}-t)}$. A node can spread influence only within a time window $\tau$ after its latest infection attempt, becomes inactive for spreading after that window, and can be reactivated by an active node, while repeated exposures increase the infection probability through the reinforcement factor $\alpha$. The proof of monotonicity and submodularity fixes each stochastic realization $\omega$ and asserts that a larger seed set activates at least as many nodes in every realization, then takes expectations; the optimization pipeline is carried by a Jaccard-Kulczynski similarity score that selects structurally significant snapshots and a lazy forward replacement routine that exploits diminishing returns.

What would settle it

On a three-node temporal path with $a\to v$ at $t=2$, $v\to w$ at $t=3$, $\tau=1$, and infection probability $1$, compare seed sets $\{a\}$ and $\{a,u\}$ where an additional edge $u\to v$ exists at $t=1$. With $\{a\}$, $v$ activates at $t=2$ and still has one time unit to infect $w$ at $t=3$; with $\{a,u\}$, $u$ activates $v$ at $t=1$, $v$'s spreading window expires before $t=3$, and $w$ is never infected. This gives $\sigma_{\mathrm{cpSI\text{-}R}}(\{a,u\}) < \sigma_{\mathrm{cpSI\text{-}R}}(\{a\})$ under a final-activation count, directly violating the claimed monotonicity.

Watch

Extended reading notes

Core claim

The central claim is Theorem 1: for any instance of cpSI-R on a temporal graph with fixed probabilities and a temporal interaction function, the expected spread function $\sigma_{\mathrm{cpSI\text{-}R}}$ is monotone and submodular. The paper argues this makes cpSI-R the first temporal diffusion model with reactivation that retains these properties, so the standard greedy algorithm for influence maximization still applies with the classic $(1-1/e)$ approximation guarantee. The same section contributes a structure-aware snapshot sampling method and a lazy forward seed-selection routine that use submodularity to avoid redundant computations.

Load-bearing premise

The proof of Theorem 1 assumes that once a node is activated it stays counted as influenced forever, so adding a seed can never reduce anyone's final activation count, but cpSI-R's $\tau$-window lets an earlier activation expire before later temporal contacts, so the assumption may fail for the implemented objective.

Editorial extensions

If this is right

  • Greedy seed selection under cpSI-R inherits the $(1-1/e)$ approximation ratio, so the model can be optimized with a provable quality bound despite node deactivation and reactivation.
  • The snapshot sampler cuts the runtime from $O(T|E| + k\log|V|\,T)$ to $O(r|E| + k\log|V|\,r)$ with $r \ll T$, because only structurally changed timestamps are simulated.
  • Since reactivation is explicit, seed sets chosen under cpSI-R can sustain spread after nodes disengage, matching repeated-exposure campaigns better than one-shot cascade models.
  • On the six datasets reported, the cpSI-R pipeline achieves higher infection spread and lower runtime than the dynamic degree, reverse-reachable, temporal SIR, entropy, and forward-influence baselines, with the largest margins on the biggest networks.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • The paper does not test this, but if the timing objection to monotonicity is real, replacing final-snapshot counts with cumulative ever-active exposure would make the spread function robust to early activation and would change seed rankings under bursty contact patterns.
  • A natural extension is online seeding: the Jaccard-Kulczynski change-point scores could trigger re-seeding whenever a structural shift is detected, instead of committing to one fixed seed set over the whole horizon.
  • The $\tau$-window mechanism implies that seeds should be scored not by static degree but by whether their contacts arrive before the downstream node's window expires; comparing cpSI-R seed sets with temporal-centrality rankings on contact datasets would isolate this effect.
  • If monotonicity does fail under $\tau$ windows, restricting cpSI-R to a persistent-active state in which any contact refreshes the window would restore submodularity without sacrificing reinforcement.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 6 minor

Summary. The paper introduces cpSI-R, a temporal diffusion model with persistence, reactivation, and reinforcement, and claims that its influence spread function is monotone and submodular, enabling a (1-1/e) greedy approximation for influence maximization. It also proposes an adaptive temporal snapshot sampling method and a lazy-forward seed selection algorithm, reporting experiments on several temporal network datasets. The central theoretical claim is Theorem 1 in Section 5.1, and the main algorithmic contribution is the combination of sampling with lazy forward influence maximization.

Significance. If the central theorem were established, the paper would offer a useful addition to temporal influence maximization by providing an optimization-friendly model with active-inactive transitions. The paper also makes a strong novelty claim: that cpSI-R is the first temporal diffusion model retaining monotonicity and submodularity with recovery/reactivation. However, the proof of Theorem 1 is not a derivation; it assumes the very pointwise inequalities that need to be shown, and the implemented objective in Algorithm 2 is not the expected spread defined in Definition 6. The experimental comparison is also presented without confidence intervals or reproducibility details. The strengths of the paper are its clear motivation and the concrete counterexample in Section 4, which usefully illustrates why standard monotonicity can fail under active-inactive transitions; unfortunately, that same example undermines the proof of Theorem 1 rather than supporting it.

major comments (4)
  1. [Section 5.1, Theorem 1] The proof of Theorem 1 is circular and does not engage with the model's own dynamics. It fixes a realization omega and asserts that 'activations are never revoked and additional seeds only increase influence,' but this pointwise monotonicity is exactly what needs to be proved for cpSI-R, and it is false for the active-inactive transitions described earlier in the same section. Lemma 1 in Section 4 provides a concrete temporal counterexample where adding a seed node reduces spread from 6 to 4 because early activation causes a node's tau-window to expire before later edges. The proof never uses p0, alpha, beta, gamma, tau, or the temporal interaction function, so it would apply unchanged to any process satisfying the verbal premise, which indicates that the model-specific claim has not been established. Consequently, the (1-1/e) approximation guarantee and the novelty claim that cpSI-R is the first temporal model to retain these properties rest on an unsupported theorem.
  2. [Section 5.2, Algorithm 2] Algorithm 2 does not compute the expected spread defined in Definition 6. The function returns |S| + sum_{i in N(t)\S(t)} p(i, t_r), which is a deterministic sum of infection probabilities at the final timestamp, not the expected number of nodes that become active during the diffusion process. The model description in Section 5.1 explicitly allows nodes to become inactive for spreading after their tau-window expires, so the final-time infection probability can be non-monotone in the seed set, as Lemma 1 demonstrates. Thus, even if Theorem 1 were correct for a cumulative spread function, the quantity actually optimized by the proposed algorithm is not protected by that theorem.
  3. [Section 5.1 and Algorithm 2] The formal update equations of the cpSI-R model are never given. Section 5.2 refers to 'dynamic update equations' and Algorithm 2 line 7 instructs the reader to compute p(i, t_{j+1}) using those equations, but no recurrence, no state-transition rule, and no reactivation rule are specified. Without these equations, the model is not precisely defined, the proof of monotonicity/submodularity cannot be checked, and the experimental implementation is not reproducible. This is a load-bearing gap because the entire optimization framework depends on the exact stochastic process being optimized.
  4. [Section 6.3] The experimental claims are difficult to assess because no confidence intervals, standard deviations, or repeated-run statistics are reported for the infection spread comparisons in Figures 5, 7, and 9. Additionally, the text states that 'All methods use the cpSI-R model for fair comparison,' which means Figure 9 compares seed selection algorithms under a single model, not the diffusion model itself; the model-vs-SIR comparisons in Figure 5 are not directly comparable to the baseline IM methods. The paper would need a more detailed experimental protocol to support the strong claim of consistent outperformance across all datasets.
minor comments (6)
  1. [Abstract and Introduction] The paper contains two different abstracts: the abstract at the top of the submitted text describes a different emphasis (persistent and reactive behaviors) from the abstract in the introduction, which mentions 'persistent and reactive behaviors' but also repeats the same claims. The duplication and inconsistency should be resolved.
  2. [Section 3, Definition 6] Definition 6 defines expected spread as E_M[|sigma(S0, G)|], but sigma is used both as the random set and as the spread function; this overloading makes the definition ambiguous, especially given the later use of sigma_omega(S) in the proof of Theorem 1.
  3. [Section 5.2.2, toy example] The complexity statement in the toy example, 'selecting fewer snapshots based on eta reduces this to O(eta T)', appears to have the dependence on eta backwards: a higher threshold eta selects fewer snapshots, not more, so the claimed O(eta T) scaling is not justified.
  4. [Section 5.2, Algorithm 1] Algorithm 1 calls SamplingAlgorithm to set tset, but the influence calculations in CalcInfluence also call SamplingAlgorithm, so the interaction between these two calls and the role of tset in the final computation are unclear.
  5. [Section 6, Datasets] The Malawi dataset row in Table 2 states 'Node and edge counts not specified' despite the text giving 142 nodes and 9,436 edges; the table and text should be reconciled.
  6. [General] No code or data release is mentioned, and the parameter settings for p0, alpha, beta, gamma, and tau are not reported in the experiments, which makes it impossible to reproduce the reported spread values.

Circularity Check

2 steps flagged · score 8.0 of 10

Theorem 1's proof assumes the monotonicity and submodularity it claims to prove, while cpSI-R's own tau-window and reactivation dynamics (and the paper's Lemma 1) permit the opposite.

  1. self definitional [Section 5.1, Theorem 1 proof, Monotonicity paragraph]
    "Since activations are never revoked and additional seeds only increase influence, it follows that σω(S ∪ {u}) ≥ σω(S), for all ω ∈ Ω."

    The theorem is supposed to prove monotonicity, but the proof's only argument is the assertion 'activations are never revoked and additional seeds only increase influence' — a restatement of the conclusion. The cpSI-R model itself contradicts that premise: Section 5.1 defines a window tau and states 'If t_k^uv − delta_u > tau, then node u becomes inactive for spreading the infection until reactivated.' The paper's own Lemma 1 (Section 4) exhibits a concrete counterexample: adding V3 to the seed set activates V4 early, V4's window expires before later edges, and spread drops from 6 to 4. The proof uses none of the model parameters (p0, alpha, beta, gamma, tau, f(t)), so it would 'prove' monotonicity for any process satisfying the verbal premise.

  2. self definitional [Section 5.1, Theorem 1 proof, Submodularity paragraph; Algorithm 2]
    "Since S ⊆ S′, the diffusion process starting from S′ activates at least as many nodes as the process from S, possibly more."

    This sentence assumes exactly the monotonicity property being proved; under cpSI-R's time-limited activation, a larger seed set can deplete the tau-window of an early-activated node and end with fewer active nodes (Lemma 1). Moreover, the implemented objective in Algorithm 2 returns '|S| + Σ p(i, tr)', i.e., infection probabilities at the final timestamp, not a permanent ever-active count. Because the quantity optimized is a final-time count, early activation that expires before tr can reduce it. The submodularity conclusion therefore rests on the same unproved monotonicity assumption, and the (1−1/e) greedy guarantee collapses with it.

full rationale

The load-bearing mathematical claim of the paper is Theorem 1, which is used to justify the (1−1/e) greedy approximation and the 'first temporal diffusion model retaining these properties' claim. The proof is circular: for monotonicity it asserts 'activations are never revoked and additional seeds only increase influence,' which is literally the inequality to be established; for submodularity it asserts that a larger seed set 'activates at least as many nodes,' which is monotonicity again. These premises are contradicted by the model's own reactivation/window dynamics and by the paper's Lemma 1 counterexample, so the theorem is unsupported rather than derived. The empirical comparison uses all baselines under the cpSI-R model and is self-contained, but it cannot repair a missing theoretical guarantee. Because the central optimization guarantee reduces by construction to the assumption being proved, the circularity score is high, though the sampling and experimental components themselves are not circular.

Assumptions & free parameters 9 free parameters · 6 assumptions · 0 invented entities

The central claim rests on the model parameters p0, alpha, beta, gamma, tau, which are never specified in the experiments; on the sampling threshold eta selected post hoc; and on the assumption in Theorem 1 that pointwise monotonicity and submodularity of sigma_omega hold. The model itself is a state machine rather than an invented physical entity, so no independent falsifiable object is introduced. Several axioms are standard (expectation over realizations, Kempe's greedy guarantee conditional on the theorem), but the reactivation non-harm assumption is ad hoc to the paper and unproved.

free parameters (9)
  • p0 (base infection probability) = not specified in paper
    Defines activation probability in puv; all quantitative spread values depend on it, and it is never given in Section 6.
  • alpha (reinforcement factor) = not specified in paper
    Controls the increase in infection probability with exposure count k in p0 * (1 - e^(-alpha*k)); also notationally reused as a similarity weight.
  • beta (temporal scaling factor) = not specified in paper
    Scales the temporal decay function f(t) = beta * e^(-gamma*(t - t_u)); not specified in experiments.
  • gamma (decay rate) = not specified in paper
    Controls the decay of influence over time; not specified in experiments.
  • tau (maximum spread window) = not specified in paper
    Time after which an infected node stops spreading until reactivation; central to the model and omitted from the experimental setup.
  • eta (sampling threshold) = 0.7 (0.6 also mentioned in Section 6.2)
    Selected because it maximized spread and runtime trade-off on the same datasets; the paper fixes eta=0.7 after using Figure 7 to choose it.
  • alpha, beta similarity weights = 0.5, 0.5
    Weights in Score = alpha*L + beta*K, hand-set to equal importance; these names conflict with the model parameters alpha and beta.
  • h (time horizon) = not specified in paper
    Influence horizon used by TemporalInfluenceMaximization; experimental values are never given.
  • MinIter (lazy forward termination) = not specified in paper
    Early-termination threshold in LazyForwardInfluence; no value is reported, so seed quality and runtime cannot be reproduced.
assumptions (6)
  • domain assumption Discrete snapshot representation (Definition 2) preserves the diffusion-relevant structure of the temporal network.
    All algorithms reason over snapshots and never over intra-snapshot edge order; if intra-snapshot timing matters, the modeled spread changes.
  • standard math Expected spread is an expectation over a well-defined sample space of realizations.
    Standard construction in influence maximization, but the paper never specifies the distribution over reactivation and reinforcement events for cpSI-R.
  • ad hoc to paper For every realization, adding a seed cannot reduce the set of activated nodes and cannot change activation timing in a harmful way.
    This is asserted in the monotonicity part of Theorem 1 and is exactly the property that time-limited tau windows put in doubt.
  • ad hoc to paper Pointwise diminishing returns of sigma_omega hold for every realization.
    The submodularity step in Theorem 1 assumes marginal gains of a new seed are no larger for larger seed sets, without modeling reactivation timing effects.
  • ad hoc to paper Jaccard and Kulczynski snapshot similarity is a sufficient proxy for diffusion fidelity.
    The sampling algorithm's validity is never proven or isolated experimentally; the threshold eta is tuned empirically.
  • standard math Kempe et al. greedy approximation guarantee applies once monotonicity and submodularity are established.
    Standard result; it only helps if the cpSI-R theorem is actually proven.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Influence Maximization in Temporal Networks with Persistent and Reactive Behaviors." pith.science (2026). https://pith.science/paper/RGGGTCYP

@misc{pith2026241220936,
  author       = {Pith},
  title        = {Pith review of: Influence Maximization in Temporal Networks with Persistent and Reactive Behaviors},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/RGGGTCYP}},
  note         = {Machine review of arXiv:2412.20936}
}
read the original abstract

Influence maximization in temporal social networks presents unique challenges due to the dynamic interactions that evolve over time. Traditional diffusion models often fall short in capturing the real-world complexities of active-inactive transitions among nodes, obscuring the true behavior of influence spread. In dynamic networks, nodes do not simply transition to an active state once; rather, they can oscillate between active and inactive states, with the potential for reactivation and reinforcement over time. This reactivation allows previously influenced nodes to regain influence potency, enhancing their ability to spread influence to others and amplifying the overall diffusion process. Ignoring these transitions can thus conceal the cumulative impact of influence, making it essential to account for them in any effective diffusion model. To address these challenges, we introduce the Continuous Persistent Susceptible-Infected Model with Reinforcement and Re-activation (cpSI-R), which explicitly incorporates active-inactive transitions, capturing the progressive reinforcement that makes nodes more potent spreaders upon reactivation. This model naturally leads to a submodular and monotone objective function, which supports efficient optimization for seed selection in influence maximization tasks. Alongside cpSI-R, we propose an efficient temporal snapshot sampling method, simplifying the analysis of evolving networks. We then adapt the prior algorithms of seed selection to our model and sampling strategy, resulting in reduced computational costs and enhanced seed selection efficiency. Experimental evaluations on diverse datasets demonstrate substantial improvements in performance over baseline methods, underscoring the effectiveness of cpSI-R for real-world temporal networks

Figures

Figures reproduced from arXiv: 2412.20936 by the authors.

Figure 1
Figure 1. Counter example showing the violation of monotonicity under active-inactive transition (a): Seed set [PITH_FULL_IMAGE:figures/full_fig_p009_1.png] view at source ↗
Figure 2
Figure 2. Counter example showing the violation of submodularity under active-inactive transition (a): Seed [PITH_FULL_IMAGE:figures/full_fig_p009_2.png] view at source ↗
Figure 3
Figure 3. Example illustrating the working of cpSI-R model (a): Toy temporal network represented with initial [PITH_FULL_IMAGE:figures/full_fig_p018_3.png] view at source ↗
Figures from the paper (7 more)
Figure 4
Figure 4. Figure 4: Five snapshots of a Primary School temporal network sampled at 1.1K timestamps in each snapshot. [PITH_FULL_IMAGE:figures/full_fig_p022_4.png]
Figure 5
Figure 5. Figure 5: Advantage of cpSI-R model over SIR in terms of infection spread on Primary school dataset across [PITH_FULL_IMAGE:figures/full_fig_p023_5.png]
Figure 6
Figure 6. Figure 6: Toy temporal network illustrating the advantage of cpSI-R model over SIR in densely connected [PITH_FULL_IMAGE:figures/full_fig_p023_6.png]
Figure 7
Figure 7. Figure 7: Comparative infection spread across multiple datasets for different values of [PITH_FULL_IMAGE:figures/full_fig_p023_7.png]
Figure 8
Figure 8. Figure 8: Comparative execution time (sec) across multiple datasets for our influence maximization method [PITH_FULL_IMAGE:figures/full_fig_p024_8.png]
Figure 9
Figure 9. Figure 9: Comparative infection spread across multiple datasets for different influence maximization methods. [PITH_FULL_IMAGE:figures/full_fig_p024_9.png]
Figure 10
Figure 10. Figure 10: Execution time in seconds across multiple datasets for different influence maximization methods. [PITH_FULL_IMAGE:figures/full_fig_p025_10.png]

Discussion (0). Continue with ORCID to comment.

Forward citations

Cited by 1 Pith paper

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. Diffusion Models for Influence Maximization on Temporal Networks: A Guide to Make the Best Choice

    cs.SI 2025-07 conditional novelty 3.0 of 10

    A survey that groups diffusion models into five categories and proposes a flowchart for choosing among them in temporal-network influence maximization.

Reference graph

Works this paper leans on

66 extracted references · 63 canonical work pages · cited by 1 Pith paper

  1. [1]

    Maximizing the spread of influence through a social network,

    D. Kempe, J. Kleinberg, and ´E. Tardos, “Maximizing the spread of influence through a social network,” in Proceedings of the Ninth ACM SIGKDD International Conference on Knowledge Discovery and Data Mining (KDD ’03) , (New York, NY, USA), pp. 137–146, Association for Computing Machinery, 2003

  2. [2]

    The dynamics of viral marketing,

    J. Leskovec, L. A. Adamic, and B. A. Huberman, “The dynamics of viral marketing,” ACM Transactions on the Web , vol. 1, no. 1, pp. 5–es, 2007

  3. [3]

    Adaptive influence maximization in dynamic social networks,

    G. Tong, W. Wu, S. Tang, and D.-Z. Du, “Adaptive influence maximization in dynamic social networks,” IEEE/ACM Transactions on Networking , vol. 25, no. 1, pp. 112–125, 2017

  4. [4]

    Scalable influence maximization for prevalent viral marketing in large- scale social networks,

    W. Chen, C. Wang, and Y. Wang, “Scalable influence maximization for prevalent viral marketing in large- scale social networks,” in Proceedings of the 16th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining (KDD ’10) , (New York, NY, USA), pp. 1029–1038, Association for Computing Machinery, 2010

  5. [5]

    Tbcelf: Temporal budget-aware influence maximization,

    A. Zahoor, I. A. Gillani, and J. Bashir, “Tbcelf: Temporal budget-aware influence maximization,” in Proceedings of the 7th Joint International Conference on Data Science & Management of Data (11th ACM IKDD CODS and 29th COMAD) (CODS-COMAD ’24) , (New York, NY, USA), pp. 580–581, Association for Computing Machinery, 2024

  6. [6]

    Influential node tracking on dynamic social network: An interchange greedy approach,

    G. Song, Y. Li, X. Chen, X. He, and J. Tang, “Influential node tracking on dynamic social network: An interchange greedy approach,” IEEE Transactions on Knowledge and Data Engineering , vol. 29, no. 2, pp. 359–372, 2017

  7. [7]

    Combinatorial multi-armed bandit: General framework, results and applications,

    W. Chen, Y. Wang, and Y. Yuan, “Combinatorial multi-armed bandit: General framework, results and applications,” in Proceedings of the 30th International Conference on Machine Learning - Volume 28 (ICML’13), pp. I–151–I–159, JMLR.org, 2013

  8. [8]

    Model- independent online learning for influence maximization,

    S. Vaswani, B. Kveton, Z. Wen, M. Ghavamzadeh, L. V. S. Lakshmanan, and M. Schmidt, “Model- independent online learning for influence maximization,” inProceedings of the 34th International Conference on Machine Learning (ICML ’17) (D. Precup and Y. W. Teh, eds.), vol. 70 of Proceedings of Machine Learning Research, pp. 3530–3539, PMLR, 2017

Show all 66 references
  1. [9]

    Online influence maximization under independent cascade model with semi-bandit feedback,

    Z. Wen, B. Kveton, M. Valko, and S. Vaswani, “Online influence maximization under independent cascade model with semi-bandit feedback,” 2018

  2. [10]

    Online competitive influence maximization,

    J. Zuo, X. Liu, C. Joe-Wong, J. C. S. Lui, and W. Chen, “Online competitive influence maximization,” in Proceedings of The 25th International Conference on Artificial Intelligence and Statistics (G. Camps-Valls, F. J. R. Ruiz, and I. Valera, eds.), vol. 151 of Proceedings of M...

  3. [11]

    New trends in influence maximization models,

    M. Azaouzi, W. Mnasri, and L. B. Romdhane, “New trends in influence maximization models,” Computer Science Review, vol. 40, p. 100393, 2021

  4. [12]

    Social influence maximization under empirical influence models,

    S. Aral and P. S. Dhillon, “Social influence maximization under empirical influence models,” Nature Human Behaviour, vol. 2, no. 6, pp. 375–382, 2018

  5. [13]

    Influence maximization on social graphs: A survey,

    Y. Li, J. Fan, Y. Wang, and K.-L. Tan, “Influence maximization on social graphs: A survey,” IEEE Transactions on Knowledge and Data Engineering , vol. 30, no. 10, pp. 1852–1872, 2018. 27

  6. [14]

    Cost-effective outbreak detection in networks,

    J. Leskovec, A. Krause, C. Guestrin, C. Faloutsos, J. VanBriesen, and N. Glance, “Cost-effective outbreak detection in networks,” in Proceedings of the 13th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining (KDD ’07) , (New York, NY, USA), pp. 420–429,...

  7. [15]

    Community-based greedy algorithm for mining top-k influential nodes in mobile social networks,

    Y. Wang, G. Cong, G. Song, and K. Xie, “Community-based greedy algorithm for mining top-k influential nodes in mobile social networks,” in Proceedings of the 16th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining (KDD ’10) , pp. 1039–1048, ACM, 2010

  8. [16]

    The pagerank citation ranking: Bringing order to the web,

    S. Brin, “The pagerank citation ranking: Bringing order to the web,” in Proceedings of ASIS, pp. 161–172, 1998

  9. [17]

    Centrality in social networks conceptual clarification,

    L. C. Freeman, “Centrality in social networks conceptual clarification,” Social Networks , vol. 1, no. 3, pp. 215–239, 1978

  10. [18]

    Influence maximization in complex networks through optimal percolation,

    F. Morone and H. A. Makse, “Influence maximization in complex networks through optimal percolation,” Nature, vol. 524, pp. 65–68, 2015

  11. [19]

    Efficient influence maximization in social networks,

    W. Chen, Y. Wang, and S. Yang, “Efficient influence maximization in social networks,” in Proceedings of the 15th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining (KDD ’09) , pp. 199–208, ACM, 2009

  12. [20]

    Influence maximization over large-scale social networks: A bounded linear approach,

    Q. Liu, B. Xiang, E. Chen, H. Xiong, F. Tang, and J. X. Yu, “Influence maximization over large-scale social networks: A bounded linear approach,” in Proceedings of the 23rd ACM International Conference on Information and Knowledge Management (CIKM ’14) , pp. 171–180, ACM, 2014

  13. [21]

    Tractable models for information diffusion in social networks,

    M. Kimura and K. Saito, “Tractable models for information diffusion in social networks,” in Knowledge Discovery in Databases: PKDD 2006 (J. F¨ urnkranz, T. Scheffer, and M. Spiliopoulou, eds.), pp. 259–271, Springer, 2006

  14. [22]

    Scalable influence maximization for prevalent viral marketing in large- scale social networks,

    W. Chen, C. Wang, and Y. Wang, “Scalable influence maximization for prevalent viral marketing in large- scale social networks,” in Proceedings of the 16th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining (KDD ’10) , pp. 1029–1038, ACM, 2010

  15. [23]

    Simpath: An efficient algorithm for influence maximization under the linear threshold model,

    A. Goyal, W. Lu, and L. V. S. Lakshmanan, “Simpath: An efficient algorithm for influence maximization under the linear threshold model,” in 2011 IEEE 11th International Conference on Data Mining (ICDM) , pp. 211–220, 2011

  16. [24]

    A neighbour scale fixed approach for influence maximization in social networks,

    X. Rui, X. Yang, J. Fan, and Z. Wang, “A neighbour scale fixed approach for influence maximization in social networks,” Computing, vol. 102, no. 2, pp. 427–449, 2020

  17. [25]

    Staticgreedy: Solving the scalability-accuracy dilemma in influence maximization,

    S.-H. Cheng, H. Shen, J. Huang, G. Zhang, and X. Cheng, “Staticgreedy: Solving the scalability-accuracy dilemma in influence maximization,” in Proceedings of the 22nd ACM International Conference on Infor- mation and Knowledge Management (CIKM ’13) , pp. 509–518, ACM, 2013

  18. [26]

    Maximizing social influence in nearly optimal time,

    C. Borgs, M. Brautbar, J. Chayes, and B. Lucier, “Maximizing social influence in nearly optimal time,” in Proceedings of the Twenty-Fifth Annual ACM-SIAM Symposium on Discrete Algorithms (SODA), pp. 946– 957, 2014

  19. [27]

    Influence maximization: Near-optimal time complexity meets practical efficiency,

    Y. Tang, X. Xiao, and Y. Shi, “Influence maximization: Near-optimal time complexity meets practical efficiency,” in Proceedings of the 2014 ACM SIGMOD International Conference on Management of Data , pp. 75–86, 2014. 28

  20. [28]

    Stop-and-stare: Optimal sampling algorithms for viral mar- keting in billion-scale networks,

    H.-H. Nguyen, M. T. Thai, and T. Dinh, “Stop-and-stare: Optimal sampling algorithms for viral mar- keting in billion-scale networks,” in Proceedings of the 2016 ACM SIGMOD International Conference on Management of Data , pp. 695–710, 2016

  21. [29]

    Celf++: Optimizing the greedy algorithm for influence maximization in social networks,

    A. Goyal, W. Lu, and L. V. S. Lakshmanan, “Celf++: Optimizing the greedy algorithm for influence maximization in social networks,” in Proceedings of the 20th International Conference Companion on World Wide Web (WWW ’11) , pp. 47–48, ACM, 2011

  22. [30]

    Threshold models of collective behavior,

    M. Granovetter, “Threshold models of collective behavior,” American Journal of Sociology , vol. 83, no. 6, pp. 1420–1443, 1978

  23. [31]

    Seir-based model for the information spreading over sns,

    C. Wang, X. Yang, K. Xu, and J. Ma, “Seir-based model for the information spreading over sns,” Acta Electronica Sinica, vol. 11, pp. 2325–2330, 2014

  24. [32]

    Research on propagation model of public opinion topics based on scir in microblogging,

    X. Ding, “Research on propagation model of public opinion topics based on scir in microblogging,” Com- puter Engineering and Applications , vol. 51, no. 8, pp. 20–26, 2015

  25. [33]

    Epidemiological modeling of online social network dynamics,

    J. Cannarella and J. A. Spechler, “Epidemiological modeling of online social network dynamics,” arXiv preprint arXiv:1401.4208, 2014

  26. [34]

    Esis: Emotion-based spreader–ignorant–stifler model for information diffusion,

    Q. Wang, Z. Lin, Y. Jin, S. Cheng, and T. Yang, “Esis: Emotion-based spreader–ignorant–stifler model for information diffusion,” Knowledge-Based Systems, vol. 81, pp. 46–55, 2015

  27. [35]

    Competing for attention in social media under information overload conditions,

    L. Feng, Y. Hu, B. Li, H. E. Stanley, S. Havlin, and L. A. Braunstein, “Competing for attention in social media under information overload conditions,” PLOS ONE , vol. 10, no. 7, p. e0126090, 2015

  28. [36]

    Finding spread blockers in dynamic networks,

    Habiba, Y. Yu, T. Y. Berger-Wolf, and J. Saia, “Finding spread blockers in dynamic networks,” inAdvances in Social Network Mining and Analysis (L. Giles, M. Smith, J. Yen, and H. Zhang, eds.), pp. 55–76, Berlin: Springer, 2010

  29. [37]

    Extended methods for influence maximization in dynamic networks,

    T. Murata and H. Koga, “Extended methods for influence maximization in dynamic networks,” Computa- tional Social Networks , vol. 10, p. 5, 2018

  30. [38]

    Adaptive influence maximization in dynamic social networks,

    G. Tong, W. Wu, S. Tang, and D. Du, “Adaptive influence maximization in dynamic social networks,” IEEE/ACM Transactions on Networking , vol. 25, pp. 112–125, 2017

  31. [39]

    Finding temporal influential users over evolving social networks,

    S. Huang, Z. Bao, J. S. Culpepper, and B. Zhang, “Finding temporal influential users over evolving social networks,” in 2019 IEEE 35th International Conference on Data Engineering (ICDE) , pp. 398–409, 2019

  32. [40]

    Influence maximization in dynamic social networks,

    H. Zhuang, Y. Sun, J. Tang, J. Zhang, and X. Sun, “Influence maximization in dynamic social networks,” in 2013 IEEE 13th International Conference on Data Mining , pp. 1313–1318, 2013

  33. [41]

    Influential node tracking on dynamic social network: an interchange greedy approach,

    G. Song, Y. Li, X. Chen, X. He, and J. Tang, “Influential node tracking on dynamic social network: an interchange greedy approach,” IEEE Transactions on Knowledge and Data Engineering , vol. 29, no. 2, pp. 359–372, 2017

  34. [42]

    UblF: an upper bound based approach to discover influential nodes in social networks,

    C. Zhou, P. Zhang, J. Guo, X. Zhu, and L. Guo, “UblF: an upper bound based approach to discover influential nodes in social networks,” in 2013 IEEE 13th International Conference on Data Mining, pp. 907– 916, 2013

  35. [43]

    Influence maximization on temporal networks: a review,

    E. Yanchenko, T. Murata, and P. Holme, “Influence maximization on temporal networks: a review,”Applied Network Science, vol. 9, no. 1, p. 16, 2024. 29

  36. [44]

    Diffusion maximization in evolving social networks,

    N. T. Gayraud, E. Pitoura, and P. Tsaparas, “Diffusion maximization in evolving social networks,” in Proceedings of the 2015 ACM on Conference on Online Social Networks , pp. 125–135, 2015

  37. [45]

    Ct-ic: Continuously activated and time-restricted independent cascade model for viral marketing,

    J. Kim, W. Lee, and H. Yu, “Ct-ic: Continuously activated and time-restricted independent cascade model for viral marketing,” Knowledge-Based Systems, vol. 62, pp. 57–68, 2014

  38. [46]

    Maximizing the spread of influence ranking in social networks,

    T. Zhu, B. Wang, B. Wu, and C. Zhu, “Maximizing the spread of influence ranking in social networks,” Information Sciences, vol. 278, pp. 535–544, 2014

  39. [47]

    Simplicial complex models for higher-order interaction analysis,

    H. Zhang and Others, “Simplicial complex models for higher-order interaction analysis,” Nature Commu- nications, vol. 12, no. 1, pp. 1–12, 2021

  40. [48]

    Influence maximization in independent cascade networks based on activation probability computation,

    W. Yang, L. Brenner, and A. Giua, “Influence maximization in independent cascade networks based on activation probability computation,” IEEE Access, vol. 7, pp. 13745–13757, 2019

  41. [49]

    Influence strength aware diffusion models for dynamic influence maximization in social networks,

    F. Hao, C. Zhu, M. Chen, L. T. Yang, and Z. Pei, “Influence strength aware diffusion models for dynamic influence maximization in social networks,” in 2011 International Conference on Internet of Things and 4th International Conference on Cyber, Physical and Social Computing ,...

  42. [50]

    On influential node discovery in dynamic social networks,

    C. C. Aggarwal, S. Lin, and P. S. Yu, “On influential node discovery in dynamic social networks,” in Proceedings of the 2012 SIAM International Conference on Data Mining (SDM) , pp. 636–647, SIAM, 2012

  43. [51]

    An influence maximization algorithm for dynamic social networks based on effective links,

    B. Fu, J. Zhang, H. Bai, Y. Yang, and Y. He, “An influence maximization algorithm for dynamic social networks based on effective links,” Entropy, vol. 24, no. 7, p. 904, 2022

  44. [52]

    Temporal networks,

    P. Holme and J. Saram¨ aki, “Temporal networks,”Physics Reports, vol. 519, pp. 97–125, Oct. 2012

  45. [53]

    Improved algorithms of celf and celf++ for influence maximization,

    J. Lv, J. Guo, Z. Yang, W. Zhang, and A. Jocshi, “Improved algorithms of celf and celf++ for influence maximization,” Journal of Engineering Science and Technology Review , vol. 7, no. 3, 2014

  46. [54]

    Cost-effective outbreak detection in networks,

    J. Leskovec, A. Krause, C. Guestrin, C. Faloutsos, J. VanBriesen, and N. Glance, “Cost-effective outbreak detection in networks,” in Proceedings of the 13th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining , KDD ’07, (New York, NY, USA), pp. 420–429, ...

  47. [55]

    Mitigation of infectious disease at school: targeted class closure vs school closure,

    V. Gemmetto, A. Barrat, and C. Cattuto, “Mitigation of infectious disease at school: targeted class closure vs school closure,” BMC Infectious Diseases , vol. 14, pp. 1–10, 2014

  48. [56]

    High-resolution measurements of face-to-face contact patterns in a primary school,

    J. Stehl´ e, N. Voirin, A. Barrat, C. Cattuto, L. Isella, J.-F. Pinton, M. Quaggiotto, W. V. den Broeck, C. R´ egis, B. Lina, et al. , “High-resolution measurements of face-to-face contact patterns in a primary school,” PLoS One, vol. 6, no. 8, p. e23176, 2011

  49. [57]

    Using wearable proximity sensors to characterize social contact patterns in a village of rural malawi,

    L. Ozella, D. Paolotti, G. Lichand, J. P. Rodr ´ ıguez, S. Haenni, J. Phuka, O. B. Leal-Neto, and C. Cattuto, “Using wearable proximity sensors to characterize social contact patterns in a village of rural malawi,” EPJ Data Science, vol. 10, no. 1, p. 46, 2021

  50. [58]

    Patterns and dynamics of users’ behavior and interaction: Network analysis of an online community,

    P. Panzarasa, T. Opsahl, and K. M. Carley, “Patterns and dynamics of users’ behavior and interaction: Network analysis of an online community,” J. Am. Soc. Inf. Sci. Technol., vol. 60, no. 5, pp. 911–932, 2009

  51. [59]

    Motifs in temporal networks,

    A. Paranjape, A. R. Benson, and J. Leskovec, “Motifs in temporal networks,” in Proc. 10th ACM Int. Conf. Web Search Data Mining (WSDM) , pp. 601–610, ACM, 2017. 30

  52. [60]

    Governance in social media: A case study of the wikipedia promotion process,

    J. Leskovec, D. P. Huttenlocher, and J. M. Kleinberg, “Governance in social media: A case study of the wikipedia promotion process,” in Proc. 4th Int. AAAI Conf. Weblogs Social Media (ICWSM) , pp. 98–105, AAAI Press, 2010

  53. [61]

    Extended methods for influence maximization in dynamic networks,

    T. Murata and H. Koga, “Extended methods for influence maximization in dynamic networks,” Computa- tional Social Networks , vol. 5, pp. 1–21, 2018

  54. [62]

    Maximizing social influence in nearly optimal time,

    C. Borgs, M. Brautbar, J. Chayes, and B. Lucier, “Maximizing social influence in nearly optimal time,” in Proceedings of the Twenty-Fifth Annual ACM-SIAM Symposium on Discrete Algorithms , pp. 946–957, SIAM, 2014

  55. [63]

    Influence maximization: Near-optimal time complexity meets practical efficiency,

    Y. Tang, X. Xiao, and Y. Shi, “Influence maximization: Near-optimal time complexity meets practical efficiency,” in Proceedings of the 2014 ACM SIGMOD International Conference on Management of Data , pp. 75–86, 2014

  56. [64]

    C. C. Aggarwal, S. Lin, and P. S. Yu, On Influential Node Discovery in Dynamic Social Networks , pp. 636–

  57. [65]

    Influence maximization on temporal networks,

    S. Erkol, D. Mazzilli, and F. Radicchi, “Influence maximization on temporal networks,” Phys. Rev. E , vol. 102, no. 4, p. 042307, 2020

  58. [66]

    Entropy-based measure for influence maximization in temporal networks,

    R. Michalski, J. Jankowski, and P. Pazura, “Entropy-based measure for influence maximization in temporal networks,” in Proc. Int. Conf. Comput. Sci. , vol. 12139 of LNCS, pp. 277–290, Springer, 2020. 31

Pith tools

Reviewed August 10, 2026 · model on record in the stance chip above.