Skip to main content

fanroots

Nate MacFadden, Liam McAllister Group, Cornell

Root-finding and optimization for vector-valued functions defined piecewise over the secondary fan of a point or vector configuration. Designed for Kähler moduli stabilization (KMS) in string compactifications, where it is roughly an order of magnitude faster than prior methods (i.e., those in arXiv:2406.13751).

The Problem

Given a vector/point configuration with $N$ elements, the secondary fan partitions $\mathbb{R}^N$ (or, for vector configurations, a convex subregion of this space) into convex 'secondary' cones. Call $\mathbb{R}^N$ 'height space'. This software is designed for continuous, differentiable functions whose analytic form may vary chamber-by-chamber. One example is K"ahler moduli stabilization, which depends on the intersection numbers of the toric variety associated to each triangulation. These numbers change discretely as one crosses walls of the secondary fan, but the function remains smooth.

The major complication in practice is the moderate-to-high dimension $\mathbb{R}^N$ ($N\approx 200$) as well as the large number of chambers (depending roughly exponentially on N - see arXiv:2008.01730, arXiv:2309.10855, and arXiv:2602.16909). At $N$ of interest, there are far too many chambers to enumerate, so operations are instead taken locally.

Algorithm

fanroots solves this by moving through the fan adaptively:

  • Large steps (JumpStep): jump directly to target heights, recomputing the triangulation from scratch. Effective when the function varies slowly chamber-by-chamber, as is typical for finding locations in Kähler moduli space where the divisors take certain volumes.
  • Small steps (FlopStep): walk along the step direction via CYTools' flop_linear -- a wrapper of regfans' flip routines that additionally tracks intersection numbers -- flipping through chamber walls one at a time. Efficient for fine-grained convergence once near a solution.

A schedule can mix both strategies dynamically based on step size. Step proposals include Newton's method, Gauss-Newton, gradient descent, and Levenberg-Marquardt. Step sizes are tuned via backtracking line search, ternary search, or 'shrinking'.

For functions depending on the intersection numbers, performance is further boosted by a recently developed fast intersection number kernel in CYTools, since computation of the intersection numbers typically becomes the bottleneck for such cases.

Performance

Finding KKLT points (see arXiv:2406.13751), FanRoots is both faster and more robust than the prior method. Across geometries of optimization dimension ($h^{1,1}$) 56-150, it solves in well under 2 s while the prior method takes seconds to minutes -- a ~20-70x speedup that grows with dimension -- and on some geometries the prior method fails to converge where FanRoots succeeds (ringed below). Times are means over repeated runs with BLAS threads pinned (the prior method's BLAS calls oversubscribe otherwise); error bars are +/-std but are smaller than the markers. See benchmarks/.

VolumeFinder benchmarking vs the prior method, across optimization dimension

Each marker is a single Calabi-Yau geometry with its own KKLT point; see benchmarks/ for the harness, data, and full table.

Installation

fanroots builds on CYTools: its cytools.vector_config module supplies the VectorConfiguration/Fan types fanroots operates on (these wrap regfans' flip/flop routines, adding toric capabilities). CYTools is conda-based and pulls in dependencies that aren't pip-installable on their own (pplpy, normaliz, python-flint, regfans). The provided environment.yml creates a conda environment with that full stack (this is the same setup CI uses); then install fanroots into it with pip:

conda env create -f environment.yml
conda activate fanroots
pip install -e .

Usage

The primary interface is FanRoots, which root-finds a vector-valued function over the secondary fan. Its built-in application VolumeFinder solves the divisor-volume problem -- finding Kähler parameters whose divisor volumes match a target. This runs one of the benchmark geometries (see benchmarks/):

import sys
sys.path.insert(0, "benchmarks")

import numpy as np
from cytools import Polytope
from fanroots.applications.volume_finder import VolumeFinder
from data import PROBLEMS

# A real benchmark geometry with its target divisor volumes (see benchmarks/).
prob = PROBLEMS[1]
vc = Polytope(prob["points"]).vc(include_points_interior_to_facets=False)
vc._gale_basis = np.asarray(prob["basis"])  # pin the basis (cytools' default is system-dependent)

vf = VolumeFinder(target=np.asarray(prob["target"], dtype=float), vc=vc)
vf.optimize()
print(vf.finished_reason)  # -> "converged"

Key arguments (see help(FanRoots) for the full list):

Argument Options Description
step_proposal "newton", "gauss_newton", "grad", "lma" Step direction method ("newton" aliases "gauss_newton" here)
step_size_optimizer "shrink", "bls", "ternary", "naive" Step size tuning
step_taking_method "jump", "flop" How to move through the fan; overridden by step_taking_schedule for mixed strategies
learning_rate float Scales the proposed step before size optimization
tolerance float Halt when |fct(h)|_2 < tolerance
min_step_size float Halt if step shrinks below this
verbosity int Controls diagnostic output

See fanroots/applications/volume_finder.py for the VolumeFinder implementation, and as a template for defining your own fct/jac.

Organization

fanroots/
├── fanroots/
│   ├── fanroots.py        # the FanRoots optimizer class
│   ├── step_proposal/     # step directions: newton, gauss_newton, gradient_descent, lma
│   ├── step_size/         # step-size tuning: shrink, backtracking_line_search, ternary, naive
│   ├── step_taking/       # moving through the fan: jump (recompute) vs flop (walk via flips)
│   └── applications/      # volume_finder.py: Kahler parameters for target divisor volumes
├── benchmarks/            # speedup vs the prior method (data.py, prior_method.py, bench_*.py)
├── tests/
│   └── test_volume_finder.py
├── environment.yml
├── pyproject.toml
└── LICENSE

License

GPLv3. Copyright (c) 2026 Nate MacFadden.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fanroots-0.2.1.tar.gz (43.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fanroots-0.2.1-py3-none-any.whl (48.6 kB view details)

Uploaded Python 3

File details

Details for the file fanroots-0.2.1.tar.gz.

File metadata

  • Download URL: fanroots-0.2.1.tar.gz
  • Upload date:
  • Size: 43.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for fanroots-0.2.1.tar.gz
Algorithm Hash digest
SHA256 75ffaf7aff1b8701f911b8a12d9e1cd345406dd54d3b3cf4631dd50be59e4328
MD5 71d05576ff38d18b33f4d483cc3f9787
BLAKE2b-256 796eb79d64dbc55971b00c566bab6aa9cfd24ad2fa148fe8cf53c6a07f364bd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fanroots-0.2.1.tar.gz:

Publisher: publish.yml on LiamMcAllisterGroup/fanroots

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fanroots-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: fanroots-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 48.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for fanroots-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b328e544b20608209705541dd29000d5d9d663d23fb946cddc89234503b151fd
MD5 08aa49c09311a88ccee4506242d61652
BLAKE2b-256 a6ff978422a6b9e6919cc29552dfe6a0497b693a5420c2881d5f7aa881af3033

See more details on using hashes here.

Provenance

The following attestation bundles were made for fanroots-0.2.1-py3-none-any.whl:

Publisher: publish.yml on LiamMcAllisterGroup/fanroots

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.2.1 This release

2 files

0.2.0

2 files

0.1.0

2 files

0.0.2

2 files

0.0.1

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page