Pith. sign in

REVIEW 4 major objections 4 minor 54 references

DiffIM: Differentiable Influence Minimization with Surrogate Modeling and Continuous Relaxation

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

Pith's one-line read This paper claims that influence minimization—choosing which edges to delete so that a seed set's expected spread drops the most—can be solved far faster with differentiable learning than with discrete combinatorial search, and…

desk verdict A genuinely novel differentiable IMIN pipeline, but the speed and Pareto-optimality claims rest on an unequal hardware comparison and an unvalidated surrogate under edge removal. read the letter →

arxiv 2502.01031 v1 pith:6CLZWDJL submitted 2025-02-03 cs.LG cs.SI

classification cs.LGcs.SI MSC 68T0768R1068Q25
keywords influenceminimizationindependentcascademodelgraphneuralnetworksurrogatecontinuousrelaxationgradient-drivenedgeselectionrumorblockingdifferentiableoptimization
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 claims that influence minimization—choosing a small set of edges to delete so that a seed set's expected spread drops the most—can be solved far faster with differentiable learning than with discrete combinatorial search. It proposes DiffIM, which trains a graph neural network to act as a surrogate for Monte Carlo influence estimation, relaxes edge-deletion decisions from binary to continuous, and then uses gradients to pick which edges to remove. On three real-world graphs and several diffusion models, the method is reported to be Pareto-optimal against existing baselines and orders of magnitude faster (up to 15,160×) while matching or improving effectiveness. If the claim holds, time-critical applications like rumor or epidemic blocking gain a practical tool where delays previously made exact or greedy approaches infeasible.

What carries the argument

The load-bearing object is the trained GNN surrogate $\mathrm{GNN}_\theta(v; G, p, S)$, which maps a graph with edge weights $p$ and a one-hot seed indicator to an estimate of each node's influenced probability. Because edge-removal decisions enter through modified weights $\tilde p_{\tilde r}(u,v) = p(u,v)\,\tilde r(u,v)$, the network's output is differentiable with respect to the keep-probabilities $\tilde r$, which is what makes continuous relaxation and gradient-based selection possible. The loss $\mathcal{L}_O = \mathcal{L}_{\mathrm{obj}} + \alpha \mathcal{L}_{\mathrm{budget}} + \beta \mathcal{L}_{\mathrm{certainty}}$ ties the relaxed decisions to the original objective under a budget while pushing them toward binary values.

What would settle it

A reader could test the key assumption by taking a held-out graph, computing the surrogate's per-edge gradient ranking, and comparing it against the true marginal influence reduction from Monte Carlo after each edge removal in sequence; if the ranking correlation degrades sharply after the first few deletions, the gradient-driven and relaxed-optimization variants lose their grounding.

Watch

Extended reading notes

Core claim

The central discovery is that the NP-hard, non-submodular edge-removal problem under the independent cascade model can be approached as a differentiable optimization, contrary to the field's discrete-combinatorial default. DiffIM trains a GNN to predict per-node influenced probabilities given a graph, activation probabilities, and a seed set; replaces each binary keep/remove decision with a continuous keep-probability; and defines a loss whose objective is the estimated influence-reduction ratio, whose budget term enforces exactly b removals, and whose certainty term pushes decisions toward 0/1. A third variant, DiffIM++, skips iterative optimization entirely and removes the edge whose gradient is largest. The authors show empirically that all three schemes accelerate the greedy selection loop, with the full pipeline remaining effective when trained and tested on different graphs.

Load-bearing premise

The entire pipeline rests on the surrogate GNN, trained only on intact graphs, giving trustworthy influence estimates—and more importantly trustworthy gradient rankings—on graphs whose edges have already been deleted or whose probabilities have been rescaled.

Editorial extensions

If this is right

  • If the results hold, influence minimization becomes practical for time-critical settings: the reported speed-ups place decision times well within minutes on graphs where Monte-Carlo-based greedy methods take hours or time out.
  • The surrogate's once-per-graph training cost is amortized over many seed sets and even across different graphs, since the method retains most of its effectiveness when trained and tested on separate networks.
  • The same differentiable pipeline transfers to other diffusion models such as linear threshold and G-SIR, so the approach is not tied to independent cascade.
  • Gradient-driven selection (DIFFIM++) offers near-instant edge recommendations, which could be used for adaptive blocking as an outbreak evolves.

Reading between the lines

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

  • A natural, untested extension is to use the same surrogate plus continuous relaxation for influence maximization (choosing seed sets), which the authors list as future work but do not evaluate.
  • The approach implicitly assumes that the gradient ranking on the original graph approximates the true marginal benefit of edge deletion on the progressively sparser graph; if that assumption fails on networks with highly heterogeneous local structure, the speed advantage would come at a larger effectiveness cost.
  • A quantitative test of gradient quality—comparing surrogate-predicted edge sensitivities with Monte-Carlo marginal reductions after sequential removals—would sharpen the paper's validation and could also serve as a training-time diagnostic.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

4 major / 4 minor

Summary. The paper proposes DiffIM, a learning-based method for influence minimization (IMIN) via edge removal under the independent cascade (IC) model. It trains a GNN surrogate on Monte Carlo influence estimates and then selects edges to remove using three variants: DIFFIM (greedy selection with GNN-estimated influence), DIFFIM+ (continuous relaxation of edge-removal decisions optimized by gradient descent with a loss combining influence reduction, budget, and certainty terms), and DIFFIM++ (one-shot selection of edges with largest gradients). Experiments on real-world graphs WC, CL, ET, on LT and G-SIR models, and on large-scale graphs report that all versions are Pareto-optimal against ten baselines, with speedups up to 15,160x. The paper also includes an NP-hardness proof, complexity analysis, ablation studies, and inductive experiments.

Significance. If the empirical claims survive scrutiny, this is a valuable contribution: it is, to my knowledge, the first differentiable-learning treatment of IMIN, it offers a practical way to avoid expensive Monte Carlo simulation at test time, and the three schemes form a clean speed-effectiveness spectrum. The paper ships code and datasets, which aids reproducibility. The central limitation is that the headline speed and Pareto-optimality claims depend on an uneven hardware comparison and on unvalidated surrogate behavior on modified graphs; these need to be addressed before the claims can be accepted as stated.

major comments (4)
  1. [Appendix F; Fig. 1; abstract] The speed comparison is confounded by hardware: all DIFFIM variants ran on a machine with 2.10GHz Intel Xeon Silver 4210R processors and an RTX2080Ti GPU, while all baselines ran on a machine with a faster 3.70GHz Intel Core i9-10900KF CPU and no GPU. Since the claimed speedups and the Pareto-optimality statement are wall-clock comparisons, they do not establish that the method is faster as an algorithm; they only compare a GPU implementation against CPU implementations. Please provide either CPU-only runs of DIFFIM variants, GPU-accelerated MC baselines (e.g., GREEDY or MBPM batched on GPU), or a hardware-normalized analysis, and restate the Pareto claim based on that comparison.
  2. [Sec. 5.2, Alg. 1, Fig. 3] The surrogate is trained only on intact graphs with varied seed sets, but at test time DIFFIM, DIFFIM+, and DIFFIM++ evaluate the surrogate on graphs from which edges have already been removed, and DIFFIM+ also feeds rescaled edge probabilities into the GNN. Fig. 3 validates the surrogate only by correlating total influence estimates with MC on unmodified validation graphs. Please add validation in the operating regime: for example, compare GNN-estimated total influence and per-edge marginal reductions with MC on graphs with 1 to b randomly removed edges and on probability-rescaled graphs. This is needed to support the claim that the selection driven by GNN gradients or greedy scores is reliable.
  3. [Sec. 5.3, Eq. (1), Lemma 2] The displayed L_certainty is not the Shannon entropy and is not minimized at binary r̃. For r̃=0.5 the expression is 0, and for r̃=0.1 (natural log) it is approximately -0.135, so it can be negative and its minimizer on [0,1] is interior. This contradicts the text stating it is inspired by Shannon entropy and is smaller when each r̃(e) is closer to 0 or 1, and Lemma 2's discreteness conclusion does not follow from this formula. If the code implements the intended entropy, please correct the formula and the missing parenthesis in 'logr(e)'; if not, the DIFFIM+ loss and the ablation in Table 6 need to be re-evaluated. Given Table 6 shows L_certainty has only a small effect, the corrected loss is unlikely to change the main empirical conclusions, but the inconsistency must be fixed.
  4. [Sec. 5.3, Alg. 1, Sec. 6.1] The budget handling in DIFFIM+ is not fully specified. EdgeSelection+ optimizes L_budget = (|E| - Σ_e r̃(e) - b)^2, but after each removal the graph shrinks while Algorithm 1 line 7 keeps b fixed; the initialization r̃(e)=1-b/|E| makes L_budget zero only on the initial graph. Please clarify whether r̃ is reinitialized in each round, whether b is decremented to reflect the remaining budget, and how the budget term behaves after the first removal. This is necessary for reproducibility of DIFFIM+.
minor comments (4)
  1. [Fig. 1 caption] The caption says the running time of the best baseline is compared with 'one of our methods with the most similar reduced ratio'; this wording is ambiguous. Please specify exactly which baseline and which DIFFIM version are used for each reported speed-up, and give the underlying numbers in the appendix or table.
  2. [Table 7] There are formatting typos in the WC column: '0.1641 (2315)' and '0.3545 (2243)' should presumably read '0.1641 (0.2315)' and '0.3545 (0.2243)'.
  3. [Appendix G.3, Fig. 7 caption] The text says the together variant of DIFFIM++ has lower effectiveness than 'the original DIFFIM+'; this should presumably say 'the original DIFFIM++'.
  4. [Appendix A.1, proof of Theorem 1] The reduction would be easier to verify if the budget were stated explicitly as b = m - k and the seed set as S = {v_init}; currently the construction is described only in prose.

Circularity Check

0 steps flagged · score 0.0 of 10

No material circularity: the surrogate is trained on MC ground truth and final effectiveness is evaluated against the same external MC metric, not against the surrogate's own predictions.

full rationale

The paper's derivation chain is not circular. The surrogate GNN is trained by supervised regression on Monte Carlo influence estimates (Alg. 3: 'Obtain π(v; G, Si, p) by MC... Update θ w.r.t. L(GNNθ; π̃, S, G, p)'), and the final effectiveness metric is the reduced ratio Rr defined in Eq. (2) in terms of σ(S; G, p), which is computed by Monte Carlo evaluation on the actually removed-edge graphs. Thus the edge-selection outcome is judged by an external stochastic simulation benchmark, not by the surrogate. The surrogate could be inaccurate under edge removal, and Appendix F discloses that DIFFIM ran on a GPU machine while baselines ran on faster CPUs without GPUs; both are experimental/validity concerns, not cases where a prediction reduces by construction to its input. The MONSTOR citation (Ko et al. 2020) is a self-citation with overlapping authors, but it is not load-bearing: the paper independently trains and validates its own GCN surrogate (Fig. 3, Pearson r >= 0.999 on validation), and the differentiable IMIN optimization is new relative to MONSTOR's influence-estimation/maximization objective. No uniqueness theorem, ansatz, or renaming is imported from the authors' prior work. The continuous relaxation and gradient-driven selection are algorithm designs whose reported effectiveness is still measured against MC, so they do not constitute fitted-input-called-prediction circularity.

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

The core contribution rests on three empirical premises: the IC model, the transferability of a trained GNN to edge-modified graphs, and the validity of surrogate gradients as edge-importance scores. The first is standard; the last two are asserted rather than demonstrated.

free parameters (6)
  • alpha (loss coefficient for budget term) = 0.1
    Chosen hyperparameter in DIFFIM+ loss (Eq. 1); no sensitivity analysis across values shown.
  • beta (loss coefficient for certainty term) = 1.0
    Chosen hyperparameter in DIFFIM+ loss (Eq. 1); ablation shows marginal effect.
  • nep (gradient epochs per removal) = 100
    Number of gradient descent steps per edge removal in DIFFIM+ (Sec. 6.1).
  • MC simulations for ground truth = 10,000
    Number of Monte Carlo runs used as ground-truth influence for training and evaluation; standard but approximate.
  • GNN hyperparameters = tuned via Optuna
    Learning rate, decay, hidden dimensions, and six-layer GCN architecture chosen by hyperparameter search, not derived.
  • time split threshold t_th = not reported
    Determines which edges form training vs test graphs; exact threshold omitted.
assumptions (4)
  • domain assumption Independent cascade model with edge activation probabilities p correctly models the influence process.
    Problem formulation and all experiments rely on this model (Sec. 2, Definition 1).
  • ad hoc to paper The GNN surrogate, trained on intact graphs, generalizes to graphs with removed edges or rescaled probabilities.
    All three DiffIM variants evaluate edge removals through the surrogate, but validation only covers unmodified graphs (Sec. 5.2, Fig. 3).
  • ad hoc to paper The gradient of the surrogate's total influence with respect to an edge's keep-probability ranks the true marginal benefit of removing that edge.
    DIFFIM++ selects edges by largest gradient (Sec. 5.4) without theoretical or direct empirical justification.
  • domain assumption 10,000 Monte Carlo simulations approximate the exact expected influence well enough to serve as ground truth.
    Used for training labels and evaluation metric (Sec. 6.1), following standard practice.

how reviews work

0 comments
Cite this review

Pith. "Pith review of DiffIM: Differentiable Influence Minimization with Surrogate Modeling and Continuous Relaxation." pith.science (2026). https://pith.science/paper/6CLZWDJL

@misc{pith2026250201031,
  author       = {Pith},
  title        = {Pith review of: DiffIM: Differentiable Influence Minimization with Surrogate Modeling and Continuous Relaxation},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/6CLZWDJL}},
  note         = {Machine review of arXiv:2502.01031}
}
read the original abstract

In social networks, people influence each other through social links, which can be represented as propagation among nodes in graphs. Influence minimization (IMIN) is the problem of manipulating the structures of an input graph (e.g., removing edges) to reduce the propagation among nodes. IMIN can represent time-critical real-world applications, such as rumor blocking, but IMIN is theoretically difficult and computationally expensive. Moreover, the discrete nature of IMIN hinders the usage of powerful machine learning techniques, which requires differentiable computation. In this work, we propose DiffIM, a novel method for IMIN with two differentiable schemes for acceleration: (1) surrogate modeling for efficient influence estimation, which avoids time-consuming simulations (e.g., Monte Carlo), and (2) the continuous relaxation of decisions, which avoids the evaluation of individual discrete decisions (e.g., removing an edge). We further propose a third accelerating scheme, gradient-driven selection, that chooses edges instantly based on gradients without optimization (spec., gradient descent iterations) on each test instance. Through extensive experiments on real-world graphs, we show that each proposed scheme significantly improves speed with little (or even no) IMIN performance degradation. Our method is Pareto-optimal (i.e., no baseline is faster and more effective than it) and typically several orders of magnitude (spec., up to 15,160X) faster than the most effective baseline while being more effective.

Figures

Figures reproduced from arXiv: 2502.01031 by the authors.

Figure 1
Figure 1. The effectiveness (the reduced ratio of influence) and running time of each method, with budget [PITH_FULL_IMAGE:figures/full_fig_p006_1.png] view at source ↗
Figure 2
Figure 2. The running time of each DIFFIM version when budget b increases from 1 to 10. The running time of each version grew linearly with b, showing good scalability [PITH_FULL_IMAGE:figures/full_fig_p007_2.png] view at source ↗
Figure 3
Figure 3. The Pearson correlation coefficients between the [PITH_FULL_IMAGE:figures/full_fig_p007_3.png] view at source ↗
Figures from the paper (5 more)
Figure 4
Figure 4. Figure 4: The effectiveness (the reduced ratio of influence) [PITH_FULL_IMAGE:figures/full_fig_p012_4.png]
Figure 5
Figure 5. Figure 5: The effectiveness (the reduced ratio of influence) and running time of each method, with budget [PITH_FULL_IMAGE:figures/full_fig_p015_5.png]
Figure 8
Figure 8. Figure 8: The average validation estimation errors in estimat [PITH_FULL_IMAGE:figures/full_fig_p018_8.png]
Figure 6
Figure 6. Figure 6: The effectiveness of the variant (selecting edges [PITH_FULL_IMAGE:figures/full_fig_p018_6.png]
Figure 7
Figure 7. Figure 7: The effectiveness of the variant (selecting edges [PITH_FULL_IMAGE:figures/full_fig_p018_7.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

54 extracted references · 50 canonical work pages

  1. [1]

    , " * write output.state after.block = add.period write newline

    ENTRY address archivePrefix author booktitle chapter edition editor eid eprint howpublished institution isbn journal key month note number organization pages publisher school series title type volume year label extra.label sort.label short.list INTEGERS output.state before.all mid.sentence after.sentence after.block FUNCTION init.state.consts #0 'before.a...

  2. [2]

    write newline

    " write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 global.max substring 't := if while FUNCTION word.in bbl.in capitalize " " * FUNCT...

  3. [3]

    Akiba, T.; Sano, S.; Yanase, T.; Ohta, T.; and Koyama, M. 2019. Optuna: A Next-generation Hyperparameter Optimization Framework. In KDD

  4. [4]

    Blakely, D.; Lanchantin, J.; and Qi, Y. 2021. Time and space complexity of graph convolutional networks. Technical report, University of Virginia

  5. [5]

    Borgs, C.; Brautbar, M.; Chayes, J.; and Lucier, B. 2014. Maximizing social influence in nearly optimal time. In SODA

  6. [6]

    Budak, C.; Agrawal, D.; and El Abbadi, A. 2011. Limiting the spread of misinformation in social networks. In WWW

  7. [7]

    Chang, C.-W.; Yeh, M.-Y.; and Chuang, K.-T. 2016. On the guarantee of containment probability in influence minimization. In ASONAM

  8. [8]

    Chen, W.; Wang, C.; and Wang, Y. 2010. Scalable influence maximization for prevalent viral marketing in large-scale social networks. In KDD

Show all 54 references
  1. [9]

    Chiang, W.-L.; Liu, X.; Si, S.; Li, Y.; Bengio, S.; and Hsieh, C.-J. 2019. Cluster-gcn: An efficient algorithm for training deep and large graph convolutional networks. In KDD

  2. [10]

    Dai, C.; Chen, L.; Hu, K.; and Ding, Y. 2022. Minimizing the spread of negative influence in SNIR model by contact blocking. Entropy, 24(11): 1623

  3. [11]

    Fan, L.; Lu, Z.; Wu, W.; Thuraisingham, B.; Ma, H.; and Bi, Y. 2013. Least cost rumor blocking in social networks. In ICDCS

  4. [12]

    Fey, M.; and Lenssen, J. E. 2019. Fast graph representation learning with PyTorch Geometric. arXiv:1903.02428

  5. [13]

    Gehrke, J.; Ginsparg, P.; and Kleinberg, J. 2003. Overview of the 2003 KDD Cup. Acm Sigkdd Explorations Newsletter, 5(2): 149--151

  6. [14]

    He, X.; Song, G.; Chen, W.; and Jiang, Q. 2012. Influence blocking maximization in social networks under the competitive linear threshold model. In SDM

  7. [15]

    Hosni, A. I. E.; Li, K.; and Ahmad, S. 2019. DARIM: Dynamic approach for rumor influence minimization in online social networks. In NeurIPS

  8. [16]

    Jiang, Z.; Chen, X.; Ma, J.; and Philip, S. Y. 2022. RumorDecay: rumor dissemination interruption for target recipients in social networks. IEEE Transactions on Systems, Man, and Cybernetics: Systems, 52(10): 6383--6395

  9. [17]

    Jin, F.; Dougherty, E.; Saraf, P.; Cao, Y.; and Ramakrishnan, N. 2013. Epidemiological modeling of news and rumors on twitter. In SNA-KDD

  10. [18]

    Kempe, D.; Kleinberg, J.; and Tardos, \'E . 2003. Maximizing the spread of influence through a social network. In KDD

  11. [19]

    Kempe, D.; Kleinberg, J.; and Tardos, \'E . 2005. Influential nodes in a diffusion model for social networks. In ICALP

  12. [20]

    B.; Dilkina, B.; and Song, L

    Khalil, E. B.; Dilkina, B.; and Song, L. 2014. Scalable diffusion-aware optimization of network topology. In KDD

  13. [21]

    Kimura, M.; Saito, K.; and Motoda, H. 2009. Blocking links to minimize contamination spread in a social network. ACM Transactions on Knowledge Discovery from Data, 3(2): 1--23

  14. [22]

    P.; and Ba, J

    Kingma, D. P.; and Ba, J. 2014. Adam: A method for stochastic optimization. arXiv:1412.6980

  15. [23]

    N.; and Welling, M

    Kipf, T. N.; and Welling, M. 2017. Semi-supervised classification with graph convolutional networks. In ICLR

  16. [24]

    Ko, J.; Lee, K.; Shin, K.; and Park, N. 2020. Monstor: an inductive approach for estimating and maximizing influence over unseen networks. In ASONAM

  17. [25]

    Leskovec, J.; Kleinberg, J.; and Faloutsos, C. 2005. Graphs over time: densification laws, shrinking diameters and possible explanations. In KDD

  18. [26]

    Leskovec, J.; Kleinberg, J.; and Faloutsos, C. 2007. Graph evolution: Densification and shrinking diameters. ACM Transactions on Knowledge Discovery from Data, 1(1): 2--es

  19. [27]

    Leskovec, J.; and Krevl, A. 2014. SNAP Datasets : Stanford Large Network Dataset Collection. http://snap.stanford.edu/data

  20. [28]

    Leskovec, J.; and Mcauley, J. 2012. Learning to discover social circles in ego networks. In NeurIPS

  21. [29]

    Luo, C.; Cui, K.; Zheng, X.; and Zeng, D. 2014. Time critical disinformation influence minimization in online social networks. In JISIC

  22. [30]

    A.; Helfroush, M

    Manouchehri, M. A.; Helfroush, M. S.; and Danyali, H. 2021. Temporal rumor blocking in online social networks: A sampling-based approach. IEEE Transactions on Systems, Man, and Cybernetics: Systems, 52(7): 4578--4588

  23. [31]

    Ni, P.; Zhu, J.; and Wang, G. 2023. Misinformation influence minimization by entity protection on multi-social networks. Applied Intelligence, 53(6): 6401--6420

  24. [32]

    Page, L.; Brin, S.; Motwani, R.; and Winograd, T. 1998. The pagerank citation ranking: Bring order to the web. Technical report, Stanford University

  25. [33]

    Platto, S.; Wang, Y.; Zhou, J.; and Carafoli, E. 2021. History of the COVID-19 pandemic: Origin, explosion, worldwide spreading. Biochemical and biophysical research communications, 538: 14--23

  26. [34]

    Sabottke, C.; Suciu, O.; and Dumitraș, T. 2015. Vulnerability disclosure in the age of social media: Exploiting twitter for predicting Real-World exploits. In USENIX Security

  27. [35]

    M.; Mihaljev, T.; Havlin, S.; and Herrmann, H

    Schneider, C. M.; Mihaljev, T.; Havlin, S.; and Herrmann, H. J. 2011. Suppressing epidemics with a limited amount of immunization units. Physical Review E, 84(6): 061911

  28. [36]

    Shelke, S.; and Attar, V. 2019. Source detection of rumor in social network--a review. Online Social Networks and Media, 9: 30--42

  29. [37]

    A.; and Du, D.-Z

    Tong, G. A.; and Du, D.-Z. 2019. Beyond uniform reverse sampling: A hybrid sampling technique for misinformation prevention. In INFOCOM

  30. [38]

    A.; Eliassi-Rad, T.; Faloutsos, M.; and Faloutsos, C

    Tong, H.; Prakash, B. A.; Eliassi-Rad, T.; Faloutsos, M.; and Faloutsos, C. 2012. Gelling, and melting, large graphs by edge manipulation. In CIKM

  31. [39]

    M.; Bagchi, A.; and Mehta, S

    Tripathy, R. M.; Bagchi, A.; and Mehta, S. 2010. A study of rumor control strategies on social networks. In CIKM

  32. [40]

    Vinterbo, S. A. 2002. A note on the hardness of the k-ambiguity problem. Technical Report

  33. [41]

    Wang, S.; Zhao, X.; Chen, Y.; Li, Z.; Zhang, K.; and Xia, J. 2013. Negative influence minimizing by blocking nodes in social networks. In AAAI Workshops

  34. [42]

    X.; Jensen, C

    Wang, X.; Deng, K.; Li, J.; Yu, J. X.; Jensen, C. S.; and Yang, X. 2020. Efficient targeted influence minimization in big social networks. World Wide Web, 23(4): 2323--2340

  35. [43]

    Xie, J.; Zhang, F.; Wang, K.; Lin, X.; and Zhang, W. 2023. Minimizing the Influence of Misinformation via Vertex Blocking. arXiv:2302.13529

  36. [44]

    Xu, W.; and Chen, H. 2015. Scalable rumor source detection under independent cascade model in online social networks. In MSN

  37. [45]

    Yan, R.; Li, Y.; Wu, W.; Li, D.; and Wang, Y. 2019. Rumor blocking through online link deletion on social networks. ACM Transactions on Knowledge Discovery from Data, 13(2): 1--26

  38. [46]

    Yang, W.; Brenner, L.; and Giua, A. 2019. Influence maximization in independent cascade networks based on activation probability computation. IEEE Access, 7: 13745--13757

  39. [47]

    Yao, Q.; Zhou, C.; Xiang, L.; Cao, Y.; and Guo, L. 2014. Minimizing the negative influence by blocking links in social networks. In ISCTCS

  40. [48]

    E.; and Johansson, K

    Yi, Y.; Shan, L.; Par \'e , P. E.; and Johansson, K. H. 2022. Edge deletion algorithms for minimizing spread in sir epidemic models. SIAM Journal on Control and Optimization, 60(2): S246--S273

  41. [49]

    Zareie, A.; and Sakellariou, R. 2022. Rumour spread minimization in social networks: A source-ignorant approach. Online Social Networks and Media, 29: 100206

  42. [50]

    Zheng, J.; and Pan, L. 2018. Least cost rumor community blocking optimization in social networks. In SSIC

  43. [51]

    Zhou, C.; Zhang, P.; Guo, J.; Zhu, X.; and Guo, L. 2013. Ublf: An upper bound based approach to discover influential nodes in social networks. In ICDM

  44. [52]

    Zhu, J.; Ni, P.; Wang, G.; and Li, Y. 2021 a . Misinformation influence minimization problem based on group disbanded in social networks. Information Sciences, 572: 1--15

  45. [53]

    Zhu, M.; Wang, X.; Shi, C.; Ji, H.; and Cui, P. 2021 b . Interpreting and unifying graph neural networks with an optimization framework. In WWW

  46. [54]

    Zhu, Y.; Li, D.; and Zhang, Z. 2016. Minimum cost seed set for competitive social influence. In INFOCOM

Pith tools

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