[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"doc-detail-83623-en":3,"doc-seo-83623-105":29,"detail-sidebar-cat-0-en-105":90},{"code":4,"msg":5,"data":6},0,"success",{"doc_id":7,"user_id":8,"nickname":9,"user_avatar":10,"doc_module":4,"category_id":11,"category_name":12,"doc_title":13,"doc_description":14,"doc_content":15,"file_id":16,"file_url":17,"file_type":18,"file_size":19,"view_count":4,"is_deleted":4,"is_public":20,"is_downloadable":20,"audit_status":20,"page_count":21,"language":22,"language_code":23,"site_id":24,"html_lang":23,"table_of_contents":25,"faqs":26,"seo_title":13,"seo_description":14,"update_tm":27,"read_time":28},83623,16904993612988,"Olivia Brown","https://ap-avatar.wpscdn.com/davatar_a8503ba1806abce46bf441b54a3ca4cd",8,"Research & Report","NLF: A Resistor-Network Framework and Linear-Time Solver for Convex Network-Flow Equilibria","NLF (Nonlinear Laplacian Flow) provides a unified framework and near-linear-time solver for convex network-flow equilibria. Congestion routing, minimum-delay communication routing, and maximum flow share a single stationarity equation: the nonlinear graph Laplacian B ρ(Bᵀ ϕ)=αd with a monotone edge law encoding the underlying physics. The method uses an inexact damped chord-Newton iteration with frozen global Laplacian linearization, inverted by a lazily refreshed near-linear Laplacian solver. Experiments show fast convergence on large SuiteSparse road-network graphs and strong speedups versus interior-point and matrix-free baselines; a multicommodity extension and exact combinatorial max-flow recovery are also supported. Benchmarks and code are provided.","arXiv :2607 .02041v1 [math .NA] 2 Jul 2026  \nNLF: A RESISTOR-NETWORK FRAMEWORK AND LINEAR-TIME  \nSOLVER FOR CONVEX NETWORK-FLOW EQUILIBRIA ∗  \nOREN E. LIVNE†  \nAbstract. We present NLF (Nonlinear Laplacian Flow), a unified framework and linear-timesolver for convex network-flow equilibria. Congestion (traffic) routing, minimum-delay communication routing, and maximum flow—each the stationarity of a convex, edge-separable energy—share one form: the nonlinear graph Laplacian B ρ(B⊤ ϕ) = αd, where a monotone edge law ρe encodes the physics (undirected graphs; directed variants are future work) . NLF solves it by an inexact damped chord-Newton iteration whose frozen global linearization—a weighted graph Laplacian—is inverted by a lazily refreshed near-linear Laplacian solver (engine-agnostic; default: approximate Cholesky, LAMG+ interchangeable) . The whole nonlinear solve costs 2–4 linear Laplacian solves, so a nearlinear inner solve makes the wall-clock empirically O (m) in the edge count m (not a proved bound) . On single-commodity congestion over real road-network topologies (BPR cost), NLF converges for all 2 ,003 SuiteSparse corpus graphs up to 1 .8 × 107 edges and on three larger graphs up to 5 .6 × 107 edges. Against a state-of-the-art interior-point method (IPM), NLF was a median 2 .6 × faster where both converge and > 45 × on the poorly-separable graphs where the IPM’s direct KKT core is superlinear; against matrix-free L-BFGS, a median 4 .2 × faster and the only solver to finish—within a 5 × wall-clock budget—on the 90 hardest instances. A multicommodity extension routes K commodities through one shared hierarchy at O (Km) per step; on real capacity data, congestion inflates sharedcorridor costs (up to 8 .8×) without rerouting. The same machinery recovers the exact combinatorial max-flow as a short sequence of Laplacian solves, with the cut potential as a by-product. Code and benchmarks: [https://github.com/orenlivne/nlf](https://github.com/orenlivne/nlf).  \nKey words. network equilibrium, traffic assignment, maximum flow, algebraic multigrid, nonlinear multigrid, inexact Newton methods, continuation, graph Laplacian  \nAMS subject classifications. 90B20, 90C35, 65F10, 65N55, 90B10, 05C21  \n1. Introduction. Flows on networks at equilibrium are everywhere: drivers distributing over a road map until no route is faster (traffic assignment [9, 10 , 11]), packets routed to minimize delay in a communication network [15, 16], current in a resistor network [26], and—at the combinatorial extreme—the maximum flow through a capacitated graph [17, 18 , 20] . These look like different problems with different algorithms: traffic assignment is solved by Frank–Wolfe or general convex optimization, max-flow by augmenting-path or push–relabel combinatorics. We make a unifying observation and build a single fast solver on it.  \nThe observation. Each of these is the stationary point of a convex, edge-separable energy in the node potentials, and its Euler equation is one and the same nonlinear graph Laplacian,  \n(1 . 1) B ρ (B⊤ ϕ) = αd,  \nwhere B is the node–edge incidence matrix, ϕ the node potentials, d a source/sink demand, α a load, and ρe a monotone edge law that alone encodes the physics: a saturating ρe gives a hard capacity (max flow); a gently rising ρe gives a congestion cost (traffic) 1 . The flow is fe = ρe 􀀀 (B⊤ ϕ)e 􀀁, and every Newton linearization of (1.1) isan ordinary weighted graph Laplacian J = B diag(ρ′)B ⊤ . For congestion and routing problems α is a given input; for maximum flow, α is an unknown to be maximized.  \n∗ Submitted to the editors July 3, 2026 .  \n†Pine Birch Analytics, 35 Kelinger Rd, Churchville, PA 18966-1033 ([oren.livne@gmail.com](oren.livne@gmail.com), tel. 312-533-9130, [pinebirchanalytics.com](pinebirchanalytics.com); ORCID: 0000-0001-6700-483X).  \n1 Notation: ρ acts componentwise and ρe denotes the law on an individual edge e.  \n2 O. E. LIVNE  \nTo obtain a fast nonlinear solver, we use an inexact chor","cbCaigOKkOxEIQgz","https://ap.wps.com/l/cbCaigOKkOxEIQgz","pdf",967713,1,25,"English","en",105,"# Introduction\n## The observation: a unified nonlinear Laplacian\n## Contribution\n# NLF framework and solver approach\n# Performance evaluation and results\n# Extensions: multicommodity and maximum flow","[{\"question\":\"What is NLF and what problem class does it target?\",\"answer\":\"NLF (Nonlinear Laplacian Flow) is a unified framework for computing convex network-flow equilibria. It targets congestion routing, minimum-delay routing, and maximum flow within a single nonlinear Laplacian stationarity form.\"},{\"question\":\"How does the paper unify traffic routing and maximum flow under one mathematical equation?\",\"answer\":\"All three problems are cast as stationary points of a convex edge-separable energy with Euler equation B ρ(Bᵀ ϕ)=αd. The specific problem behavior is determined by the monotone edge law ρe, including whether it saturates.\"},{\"question\":\"How does the solver achieve near-linear performance in practice?\",\"answer\":\"NLF uses an inexact damped chord-Newton iteration with frozen global linearization. Each linearization becomes a weighted graph Laplacian that is solved using a lazily refreshed near-linear Laplacian solver (e.g., approximate Cholesky or LAMG+), yielding an empirically O(m) cost in the number of edges for the nonlinear solve.\"}]",1784189345,63,{"code":4,"msg":30,"data":31},"ok",{"site_id":24,"language":23,"slug":32,"title":13,"keywords":33,"description":14,"schema_data":34,"social_meta":85,"head_meta":87,"extra_data":89,"updated_unix":27},"nlf-a-resistor-network-framework-and-linear-time-solver-for-convex-network-flow-equilibria","",{"@graph":35,"@context":84},[36,53,67],{"@type":37,"itemListElement":38},"BreadcrumbList",[39,43,47,50],{"item":40,"name":41,"@type":42,"position":20},"https://docshare.wps.com","Home","ListItem",{"item":44,"name":45,"@type":42,"position":46},"https://docshare.wps.com/document/","Document",2,{"item":48,"name":12,"@type":42,"position":49},"https://docshare.wps.com/document/research-report/",3,{"item":51,"name":13,"@type":42,"position":52},"https://docshare.wps.com/document/nlf-a-resistor-network-framework-and-linear-time-solver-for-convex-network-flow-equilibria/83623/",4,{"url":51,"name":13,"@type":54,"author":55,"headline":13,"publisher":57,"fileFormat":60,"inLanguage":23,"description":14,"dateModified":61,"datePublished":61,"encodingFormat":60,"isAccessibleForFree":62,"interactionStatistic":63},"DigitalDocument",{"name":9,"@type":56},"Person",{"url":40,"name":58,"@type":59},"DocShare","Organization","application/pdf","2026-07-16",true,{"@type":64,"interactionType":65,"userInteractionCount":4},"InteractionCounter",{"@type":66},"ViewAction",{"@type":68,"mainEntity":69},"FAQPage",[70,76,80],{"name":71,"@type":72,"acceptedAnswer":73},"What is NLF and what problem class does it target?","Question",{"text":74,"@type":75},"NLF (Nonlinear Laplacian Flow) is a unified framework for computing convex network-flow equilibria. It targets congestion routing, minimum-delay routing, and maximum flow within a single nonlinear Laplacian stationarity form.","Answer",{"name":77,"@type":72,"acceptedAnswer":78},"How does the paper unify traffic routing and maximum flow under one mathematical equation?",{"text":79,"@type":75},"All three problems are cast as stationary points of a convex edge-separable energy with Euler equation B ρ(Bᵀ ϕ)=αd. The specific problem behavior is determined by the monotone edge law ρe, including whether it saturates.",{"name":81,"@type":72,"acceptedAnswer":82},"How does the solver achieve near-linear performance in practice?",{"text":83,"@type":75},"NLF uses an inexact damped chord-Newton iteration with frozen global linearization. Each linearization becomes a weighted graph Laplacian that is solved using a lazily refreshed near-linear Laplacian solver (e.g., approximate Cholesky or LAMG+), yielding an empirically O(m) cost in the number of edges for the nonlinear solve.","https://schema.org",{"og:url":51,"og:type":86,"og:title":13,"og:site_name":58,"og:description":14},"article",{"robots":88,"canonical":51},"index,follow",{"doc_id":7,"site_id":24},{"code":4,"msg":5,"data":91},[92,96,100,104,109,114,119,122,127,130,134],{"id":20,"doc_module":4,"doc_module_name":45,"category_name":93,"show_sort_weight":94,"slug":95},"Story & Novel",90,"story-novel",{"id":46,"doc_module":4,"doc_module_name":45,"category_name":97,"show_sort_weight":98,"slug":99},"Literature",80,"literature",{"id":52,"doc_module":4,"doc_module_name":45,"category_name":101,"show_sort_weight":102,"slug":103},"Exam",70,"exam",{"id":105,"doc_module":4,"doc_module_name":45,"category_name":106,"show_sort_weight":107,"slug":108},5,"Comic",60,"comic",{"id":110,"doc_module":4,"doc_module_name":45,"category_name":111,"show_sort_weight":112,"slug":113},6,"Technology",50,"technology",{"id":115,"doc_module":4,"doc_module_name":45,"category_name":116,"show_sort_weight":117,"slug":118},7,"Healthcare",40,"healthcare",{"id":11,"doc_module":4,"doc_module_name":45,"category_name":12,"show_sort_weight":120,"slug":121},30,"research-report",{"id":123,"doc_module":4,"doc_module_name":45,"category_name":124,"show_sort_weight":125,"slug":126},9,"Religion & Spirituality",20,"religion-spirituality",{"id":125,"doc_module":4,"doc_module_name":45,"category_name":128,"show_sort_weight":125,"slug":129},"World Cup","world-cup",{"id":131,"doc_module":4,"doc_module_name":45,"category_name":132,"show_sort_weight":131,"slug":133},10,"Lifestyle","lifestyle",{"id":135,"doc_module":4,"doc_module_name":45,"category_name":136,"show_sort_weight":105,"slug":137},19,"General","general"]