Time Without Timesteps: Simulating Coupled Dynamical Systems via Self-Consistency

arXiv cs.LG Papers

Summary

This paper presents a novel approach to simulating coupled dynamical systems by using neural surrogates and self-consistency to solve fixed-point problems over full trajectories, replacing traditional timestep-by-timestep integration. It demonstrates the method on van der Pol oscillators and Hodgkin–Huxley neuron networks, highlighting efficiency gains and unique gradient properties.

arXiv:2609.03358v1 Announce Type: new Abstract: Numerical simulation of dynamical systems is usually organized as a causal march through time: each state is computed from the previous one. We explore a different formulation for coupled systems. For each subsystem type we train a neural surrogate mapping a full driving trajectory and initial condition directly to a full output trajectory; following classical waveform relaxation, coupled systems are assembled by enforcing self-consistency among these trajectories: simulation becomes a fixed-point problem over complete trajectories rather than a stepwise rollout. On coupled van der Pol oscillators and Hodgkin-Huxley neuron networks, sequential depth becomes the number of solver iterations: 4-10 Newton iterations where the reference integrator takes 1500 steps. The gradient likewise loses its time recursion: it becomes a linear system solved by GMRES at memory independent of solver depth. A single scalar measured from the learned operator, the spectral radius of its Jacobian, predicts in advance where the coupled solve will converge; past that boundary, unrolled backpropagation diverges and a Neumann adjoint fails, while the implicit gradient remains correct to 0.04%. We report where the approach succeeds and where surrogate error degrades it.
Original Article
View Cached Full Text

Cached at: 09/04/26, 06:26 AM

# Time Without Timesteps: Simulating Coupled Dynamical Systems via Self-Consistency
Source: [https://arxiv.org/html/2609.03358](https://arxiv.org/html/2609.03358)
###### Abstract

Numerical simulation of dynamical systems is usually organized as a causal march through time: each state is computed from the previous state, and the full trajectory is obtained by repeated local updates\. This paper explores a different computational formulation for coupled dynamical systems\. We train neural surrogates that map full input trajectories and initial conditions directly to full output trajectories for individual subsystem types\. Building on classical waveform relaxation, we replace the numerical integration performed within each subsystem update with these learned trajectory operators\. Coupled systems are then assembled by enforcing self\-consistency between the trajectories predicted by each subsystem and those supplied as inputs to its neighbors\. Simulation therefore becomes a fixed\-point problem over complete trajectories rather than an explicit timestep\-by\-timestep rollout\.

We demonstrate the approach on van der Pol oscillators and Hodgkin–Huxley neuron networks\. The sequential depth of the computation becomes the number of solver iterations rather than the number of timesteps: we recover coupled trajectories in44–1010Newton iterations where the reference integrator takes15001500steps\. The gradient of the simulation likewise loses its time recursion: it is the solution of a linear system, not a backward pass through the integrator, and we solve it by GMRES at memory independent of solver depth\. We show that a single scalar measured from the learned operator—the spectral radius of its Jacobian—predicts in advance where the coupled solve will converge, and that this prediction holds across both coupling strength and stiffness\. We also identify a regime in which the implicit gradient is the only one available: past the contraction boundary, unrolled backpropagation diverges and a Neumann adjoint fails, while the implicit gradient remains correct to0\.04%0\.04\\%against finite differences\.

The method is not presented as a replacement for classical solvers\. It is an early exploration of a trajectory\-level simulation paradigm in which learned module operators are composed through self\-consistency\. We report regimes in which the approach succeeds and regimes in which surrogate error causes degradation, and we identify surrogate accuracy, fixed\-point conditioning, and training\-distribution coverage as the main practical bottlenecks\.

## 1Introduction

To simulate a differential equation, we almost always march: given the current state, a numerical integrator estimates the next state, and repeating this local update produces a trajectory\.

That procedure is powerful, mature, and often the right tool\. But it is not the only way to view the computation\. A differential equation, together with its initial or boundary conditions, defines a set of admissible trajectories, and the physical solution is the one that satisfies the dynamics and all coupling constraints simultaneously\. In this sense the trajectory is a global object selected by consistency; the order in which a solver happens to construct it is incidental\.

This distinction matters most in coupled systems\. When subsystems interact, each component’s trajectory depends on signals produced by its neighbors\. If those driving signals were known, each subsystem could be solved independently\. The difficulty is circular: the driving signals are themselves functions of the unknown trajectories\. Standard solvers resolve this circularity locally in time by advancing all coupled states together\. We instead ask whether the circularity can be resolved globally, at the level of whole trajectories\.

That question has an established answer in numerical analysis\. Waveform relaxation, introduced for circuit simulation\[[12](https://arxiv.org/html/2609.03358#bib.bib12)\], solves exactly this fixed point: each subsystem is integrated over the whole time window under an assumed input waveform, and the process is repeated until the waveforms agree\. The method never became a general\-purpose tool, and one reason is cost\. Every relaxation sweep requires a full numerical integration of every subsystem, so each iteration is as expensive as a complete simulation, and the derivative of a sweep is expensive for the same reason\.

*Time Without Timesteps*\(TWT\) asks what changes when that inner integration is replaced by a learned trajectory operator\. For each subsystem type, we train a neural surrogate that maps a full driving input trajectory and initial condition to a full output trajectory\. A coupled system is then assembled by requiring mutual agreement: each subsystem’s output must equal the trajectory predicted by its surrogate under the inputs induced by neighboring subsystems\.

What motivates the construction is the structure of the computation, not raw speed\.

One consequence is sequential depth\. A conventional solve is sequential in the number of timesteps, because state at stepn\+1n\+1requires state at stepnn\. A fixed\-point solve is sequential in the number of iterations, and each iteration evaluates all module operators independently\. In the experiments below the coupled solve converges in44–1010Newton iterations on trajectories represented over15001500timesteps\.

The consequence that cuts deeper is differentiation\. Differentiable simulators already exist, and gradients through coupled ODEs are routine: one either unrolls the integrator, at memory linear in the number of steps, or solves the continuous adjoint, at constant memory but still with a backward sweep across the full horizon\. Both inherit the sequential structure of the forward march\. At a fixed point the gradient is instead the solution of a linear system,\(I−J⊤\)​𝐯=∇𝒥\(I\-J^\{\\top\}\)\\mathbf\{v\}=\\nabla\\mathcal\{J\}, an object with no time recursion in it at all\. It can be solved by Krylov methods whose matrix\-vector products are single applications of the module operators\. Making those products cheap is precisely what the learned operator buys, and we show below that with an exact integrator in the same role the second\-order solver is roughly100×100\\timesslower than simple relaxation, which is why the equilibrium view has not been practical before\.

The method does not remove time from the representation\. Trajectories are still represented on discrete grids; for the oscillator system we represent them in a Chebyshev coefficient basis, which decouples the model’s input dimension from the number of timesteps but does not eliminate the time axis\. What changes is the outer computational structure: the solver no longer constructs the trajectory by applying a local update rule for every timestep\.

This paper makes four contributions\. First, it formulates coupled dynamical simulation as a trajectory\-level self\-consistency problem and situates it explicitly as waveform relaxation with learned subsystem operators\. Second, it shows that the classical relaxation iteration is not the right solver for learned operators, and that a Jacobian\-free Newton–Krylov method removes the contraction requirement that limits it\. Third, it establishes that a single measured quantity—the spectral radius of the learned operator’s Jacobian—predicts the convergence boundary of the coupled solve in advance, across both coupling strength and stiffness\. Fourth, it demonstrates implicit differentiation through the fixed point, validated three independent ways, including a regime where no other gradient is available\.

We do not claim that TWT replaces classical numerical integration\. Classical solvers remain the standard tool for accuracy, reliability, and broad applicability, and the systems studied here are small\. The purpose of this work is to make a different computational paradigm precise: learn module\-level trajectory operators, compose them through self\-consistency, and differentiate through the resulting fixed point\.

## 2Background and Related Work

### 2\.1Waveform Relaxation

Waveform relaxation\[[12](https://arxiv.org/html/2609.03358#bib.bib12)\]decomposes a coupled system into subsystems and iterates on whole waveforms: given a current guess for every subsystem’s trajectory over\[0,T\]\[0,T\], each subsystem is integrated independently under the inputs those trajectories induce, and the result becomes the next guess\. The iteration converges superlinearly on finite windows for Lipschitz systems\[[17](https://arxiv.org/html/2609.03358#bib.bib17)\], with a contraction factor that degrades as the window lengthens—which is why practical implementations window the time axis\. Parallel\-in\-time methods such as Parareal pursue the related goal of decoupling sequential depth from timestep count by decomposing the time axis itself\[[14](https://arxiv.org/html/2609.03358#bib.bib14),[6](https://arxiv.org/html/2609.03358#bib.bib6)\]; TWT instead decomposes by subsystem\.

TWT is this algorithm with the inner integration replaced by a learned operator\. The consequences go beyond cost\. Because the learned operator is differentiable and its Jacobian\-vector products cost one network evaluation, solvers that are impractical for classical waveform relaxation become available: we use Newton–Krylov for the forward solve and GMRES for the adjoint, both of which need many Jacobian applications per step\.

### 2\.2Trajectories as Global Objects

The view of trajectories as global objects has deep roots in physics\. Hamilton’s principle selects physical trajectories by extremizing an action functional over a space of possible paths\. Variational integrators discretize this principle directly and preserve geometric structure such as symplecticity and momentum maps\[[16](https://arxiv.org/html/2609.03358#bib.bib16)\]\. Physics\-informed neural networks \(PINNs\) also adopt a global view by parameterizing a solution function and minimizing differential\-equation residuals over a domain\[[18](https://arxiv.org/html/2609.03358#bib.bib18)\]\.

These approaches differ from TWT in important ways\. Variational integrators still construct the trajectory through a discretized temporal scheme\. PINNs optimize a new solution for each problem instance and often face ill\-conditioned losses, spectral bias, and difficulty balancing residual and boundary terms\[[11](https://arxiv.org/html/2609.03358#bib.bib11),[21](https://arxiv.org/html/2609.03358#bib.bib21)\]\. TWT instead amortizes subsystem solves into learned trajectory operators and uses self\-consistency to compose them at inference time\.

### 2\.3Neural Surrogates and Neural Operators

A growing body of work trains neural networks to approximate solution maps for differential equations\. Neural ordinary differential equations learn a vector field and integrate it with a numerical solver, often using adjoint methods for memory\-efficient differentiation\[[4](https://arxiv.org/html/2609.03358#bib.bib4)\]\. Neural operators such as DeepONet and the Fourier Neural Operator learn mappings between function spaces, allowing full solution fields to be predicted from inputs such as forcing functions or initial conditions\[[15](https://arxiv.org/html/2609.03358#bib.bib15),[13](https://arxiv.org/html/2609.03358#bib.bib13),[10](https://arxiv.org/html/2609.03358#bib.bib10)\]\.

TWT is closest in spirit to neural operator learning, because each module surrogate maps an input trajectory to an output trajectory\. The difference is compositional: TWT uses trajectory operators as modules inside a coupled graph and enforces agreement across modules through a fixed\-point solve\. The problem is therefore not just learning an isolated solution operator, but composing several learned operators into a mutually consistent coupled simulation\. As we show in Section[4\.3](https://arxiv.org/html/2609.03358#S4.SS3), this makes a property of the operator that isolated\-accuracy metrics do not measure—the norm of its Jacobian—directly relevant, and the two properties do not improve together\.

### 2\.4Differentiable Simulation and Equilibrium Models

Differentiable simulators allow gradients to propagate through physical dynamics, enabling optimization of controls, parameters, and designs\. Frameworks such as DiffTaichi and Jaxley differentiate through simulation programs or biophysical neuron models\[[8](https://arxiv.org/html/2609.03358#bib.bib8),[5](https://arxiv.org/html/2609.03358#bib.bib5)\]\. These approaches differentiate through the time\-stepping computation itself, either by unrolling, which stores intermediate states, or by a continuous adjoint, which integrates backward across the horizon\. In both cases the gradient computation inherits the sequential structure of the forward solve\.

Deep Equilibrium Models \(DEQs\) define network outputs as fixed points of a learned transformation and use the implicit function theorem for memory\-efficient differentiation\[[1](https://arxiv.org/html/2609.03358#bib.bib1),[3](https://arxiv.org/html/2609.03358#bib.bib3)\]\. TWT borrows the fixed\-point view from equilibrium models, but applies it to physical simulation: the fixed point is not a hidden representation of a network layer but a set of subsystem trajectories that mutually satisfy coupling constraints, and—unlike a DEQ—it can be checked against an external ground truth\.

## 3Method

### 3\.1Problem Formulation

Consider a coupled system withKKsubsystems\. The state of subsystemiievolves according to

𝐱˙i=fi​\(𝐱i,𝐮i​\(t\),θi\),𝐱i​\(0\)=𝐱i,0,\\dot\{\\mathbf\{x\}\}\_\{i\}=f\_\{i\}\(\\mathbf\{x\}\_\{i\},\\mathbf\{u\}\_\{i\}\(t\),\\theta\_\{i\}\),\\qquad\\mathbf\{x\}\_\{i\}\(0\)=\\mathbf\{x\}\_\{i,0\},\(1\)whereθi\\theta\_\{i\}denotes subsystem parameters and𝐮i​\(t\)\\mathbf\{u\}\_\{i\}\(t\)is a driving input generated by neighboring subsystem states:

𝐮i​\(t\)=gi​\(\{𝐱j​\(t\)\}j∈𝒩⁡\(i\)\)\.\\mathbf\{u\}\_\{i\}\(t\)=g\_\{i\}\\left\(\\\{\\mathbf\{x\}\_\{j\}\(t\)\\\}\_\{j\\in\\mathcal\{N\}\(i\)\}\\right\)\.\(2\)The coupling structure is represented by a graph𝒢=\(𝒱,ℰ\)\\mathcal\{G\}=\(\\mathcal\{V\},\\mathcal\{E\}\), where nodes are subsystems and edges indicate dependencies\.

If the complete driving input𝐮i​\(t\)\\mathbf\{u\}\_\{i\}\(t\)were known for each subsystem, each subsystem could be solved independently\. The difficulty is circular: the driving inputs depend on the unknown trajectories\.

### 3\.2Module\-Level Trajectory Surrogates

For each module type, we train a surrogateSϕS\_\{\\phi\}that approximates the isolated subsystem solution operator:

𝐱^i=Sϕ​\(θi,𝐮i,𝐱i,0\),\\hat\{\\mathbf\{x\}\}\_\{i\}=S\_\{\\phi\}\(\\theta\_\{i\},\\mathbf\{u\}\_\{i\},\\mathbf\{x\}\_\{i,0\}\),\(3\)where𝐮i\\mathbf\{u\}\_\{i\}is a discretized input trajectory and𝐱^i\\hat\{\\mathbf\{x\}\}\_\{i\}the predicted output trajectory\. The surrogate produces the entire trajectory in one forward evaluation, so time still appears in the representation but inference does not proceed by repeatedly applying a local update rule\.

#### Trajectory representation\.

For the oscillator system we represent trajectories by their firstNNChebyshev coefficients rather than by raw samples\[[20](https://arxiv.org/html/2609.03358#bib.bib20)\]\. The transform is a fixed linear map in both directions, so it is differentiable and commutes with any linear coupling:𝒞⁡\(W​𝐗\)=W​𝒞​\(𝐗\)\\mathcal\{C\}\(W\\mathbf\{X\}\)=W\\mathcal\{C\}\(\\mathbf\{X\}\), and coupling can be applied directly in coefficient space\. On a3030\-unit window,256256coefficients reconstruct van der Pol trajectories to below0\.5%0\.5\\%across the full stiffness range studied, against15001500raw samples\. For the neuron system we use raw samples\. We emphasize that the representation is an implementation choice orthogonal to the formulation; the two systems use different ones and the method is unchanged\.

#### Training data\.

Data is generated by simulating isolated modules with known driving inputs using a conventional numerical solver\. To expose the surrogate to inputs similar to those encountered during coupled simulation, we use a rolling\-buffer strategy: early samples are generated from simple driving inputs and stored in a buffer, and later samples draw their inputs from weighted combinations of previously generated output trajectories\.

This strategy requires care in two respects that we found to matter more than any architectural choice\. First, the buffer can degenerate\. Trajectories carrying no signal \(a neuron that never fires\) produce weaker composed drives, which produce further silent trajectories, and the buffer collapses\. We discard degenerate samples before they enter the buffer and verify the written dataset\. Second, and more consequentially, the buffer only covers the input distribution it happens to generate\. Twice during this work an experiment probed a parameter range the generator had never sampled, and in both cases the resulting error was misattributed to the method before being traced to coverage\. We return to this in Section[6](https://arxiv.org/html/2609.03358#S6)\.

The surrogate is a residual MLP with hidden dimension768768and six residual blocks \(7\.57\.5M parameters for the oscillator,8\.68\.6M for the neuron\)\. Input trajectories are concatenated with initial conditions and subsystem parameters and passed through the network, which regresses the full output trajectory\. We train with plain MSE; Section[4\.3](https://arxiv.org/html/2609.03358#S4.SS3)reports a negative result on Jacobian regularization\.

### 3\.3Self\-Consistency Solve

Given trained surrogates, the coupled solution is the fixed point

𝐗=F⁡\(𝐗\),F​\(𝐗\)i=Sϕ​\(θi,gi​\(\{𝐗j\}j∈𝒩⁡\(i\)\),𝐱i,0\)\.\\mathbf\{X\}=F\(\\mathbf\{X\}\),\\qquad F\(\\mathbf\{X\}\)\_\{i\}=S\_\{\\phi\}\\\!\\left\(\\theta\_\{i\},\\,g\_\{i\}\\\!\\left\(\\\{\\mathbf\{X\}\_\{j\}\\\}\_\{j\\in\\mathcal\{N\}\(i\)\}\\right\),\\,\\mathbf\{x\}\_\{i,0\}\\right\)\.\(4\)At a zero\-residual fixed point, every trajectory equals the one predicted by its module surrogate under the inputs induced by its neighbors\.

#### Solvers and the contraction condition\.

The natural iteration is Picard,𝐗←F⁡\(𝐗\)\\mathbf\{X\}\\leftarrow F\(\\mathbf\{X\}\), which is what classical waveform relaxation performs\. It converges only while

ρ⁡\(JF\)<1,JF=∂Sϕ∂𝐮⋅W,\\rho\(J\_\{F\}\)<1,\\qquad J\_\{F\}=\\tfrac\{\\partial S\_\{\\phi\}\}\{\\partial\\mathbf\{u\}\}\\cdot W,\(5\)whereWWis the linear coupling operator; for the all\-to\-all diffusive coupling used below,‖W‖=kc\\\|W\\\|=k\_\{c\}exactly\. This condition is a property of the iteration, not of the formulation\. We therefore also solve Eq\.[4](https://arxiv.org/html/2609.03358#S3.E4)by Newton’s method applied toG⁡\(𝐗\)=𝐗−F⁡\(𝐗\)G\(\\mathbf\{X\}\)=\\mathbf\{X\}\-F\(\\mathbf\{X\}\), with the linear system handled by GMRES\[[19](https://arxiv.org/html/2609.03358#bib.bib19)\]—a Jacobian\-free Newton–Krylov method\[[9](https://arxiv.org/html/2609.03358#bib.bib9)\]\. The Jacobian is never formed: each GMRES iteration requires only\(I−JF\)​𝐯\(I\-J\_\{F\}\)\\mathbf\{v\}, obtained by one forward\-mode differentiation ofFF\. Newton converges whereverI−JFI\-J\_\{F\}is nonsingular, with no contraction requirement\.

#### Implicit differentiation\.

At the converged fixed point𝐗∗\\mathbf\{X\}^\{\*\}, gradients of an objective𝒥\\mathcal\{J\}with respect to system parametersθ\\thetafollow from the implicit function theorem\[[1](https://arxiv.org/html/2609.03358#bib.bib1),[3](https://arxiv.org/html/2609.03358#bib.bib3)\]:

\(I−JF⊤\)​𝐯=∇𝐗∗𝒥,d​𝒥d​θ=𝐯⊤​∂F∂θ\.\\left\(I\-J\_\{F\}^\{\\top\}\\right\)\\mathbf\{v\}=\\nabla\_\{\\mathbf\{X\}^\{\*\}\}\\mathcal\{J\},\\qquad\\frac\{d\\mathcal\{J\}\}\{d\\theta\}=\\mathbf\{v\}^\{\\top\}\\frac\{\\partial F\}\{\\partial\\theta\}\.\(6\)This linear system carries no dependence on how the forward solve was performed and no time recursion\. Expanding\(I−JF⊤\)−1\(I\-J\_\{F\}^\{\\top\}\)^\{\-1\}as a Neumann series—the standard DEQ backward—reintroduces the conditionρ⁡\(JF\)<1\\rho\(J\_\{F\}\)<1, and therefore fails exactly where Newton was introduced to succeed\. We solve Eq\.[6](https://arxiv.org/html/2609.03358#S3.E6)by GMRES instead, which does not\.

### 3\.4Exact\-Surrogate Interpretation

Under an idealized exact\-surrogate assumption, a zero\-residual fixed point of Eq\.[4](https://arxiv.org/html/2609.03358#S3.E4)coincides with the unique solution of the original coupled initial value problem, provided the underlying ODE satisfies standard existence and uniqueness conditions\. At zero residual every subsystem trajectory equals the solution produced by its governing dynamics under the inputs induced by neighboring trajectories, so the assembled trajectories satisfy the coupled system; by uniqueness they are the physical solution\.

For learned surrogates this becomes approximate, and the gap is measurable\. We therefore report the self\-consistency residual and the trajectory error separately throughout, and additionally report the error obtained by running the same fixed point with an*exact*integrator as the module operator\. That third quantity is the floor attributable to the formulation and its discretization; the distance between it and the surrogate result is what learning costs\.

The decomposition earned its keep during development\. In an early version of this work the module simulator applied the drive at the end of each step while the coupled reference applied it at the start\. Both are validO⁡\(Δ​t\)O\(\\Delta t\)discretizations, but they define different fixed points, and the discrepancy, which grows from0\.8%0\.8\\%to10\.4%10\.4\\%with coupling strength, was indistinguishable from surrogate error until the exact\-operator check isolated it\. We report both conventions in Section[4\.1](https://arxiv.org/html/2609.03358#S4.SS1)\.

## 4Experiments

We study two systems\. Coupled van der Pol oscillators,x¨i=μ⁡\(1−xi2\)​x˙i−ki​xi\+Fi​\(t\)\\ddot\{x\}\_\{i\}=\\mu\(1\-x\_\{i\}^\{2\}\)\\dot\{x\}\_\{i\}\-k\_\{i\}x\_\{i\}\+F\_\{i\}\(t\), are nonlinear with a stable limit cycle and, at largeμ\\mu, relaxation oscillations; a single surrogate spansμ∈\[0\.5,5\]\\mu\\in\[0\.5,5\], from quasi\-harmonic to stiff\. Hodgkin–Huxley neurons\[[7](https://arxiv.org/html/2609.03358#bib.bib7)\]coupled through excitatory chemical synapses provide a second system with two properties the oscillators lack: the coupling is nonlinear, since the synaptic current depends on both pre\- and postsynaptic state, and the surrogate is a compact model—voltage and gating variables are used to generate data but stay latent, and only the coupling\-relevant variables⁡\(t\)s\(t\)is predicted\.

Surrogate accuracy on held\-out data is3\.05%3\.05\\%median relative error for the oscillator \(5\.24%5\.24\\%mean,16\.9%16\.9\\%at the9595th percentile\) and2\.61%2\.61\\%median for the neuron \(3\.35%3\.35\\%mean,5\.91%5\.91\\%at the9595th percentile\)\.

### 4\.1Validating the Fixed Point

Before introducing a surrogate we verify that the fixed point is the right object, by solving Eq\.[4](https://arxiv.org/html/2609.03358#S3.E4)with an exact RK4 module operator and comparing against a conventional coupled integration of the same system\.

Table 1:Classical waveform relaxation with an exact module operator,N=20N=20oscillators,μ=1\\mu=1\. The fixed point reproduces the coupled reference exactly\. The last column shows the same solve under a module discretization that differs from the reference by one step in where the coupling force is sampled: both are valid schemes, but they define different fixed points, and the discrepancy grows with coupling\.The formulation is exact, and the growth of Picard iteration counts withkck\_\{c\}is the contraction condition of Eq\.[5](https://arxiv.org/html/2609.03358#S3.E5)becoming binding\.

This baseline also quantifies why the learned operator matters\. Solving the same fixed point with Newton rather than Picard, using the exact integrator, takes15481548s atkc=2k\_\{c\}=2against Picard’s13\.713\.7s, because every GMRES iteration is a full numerical integration of every subsystem\. With the surrogate, the same Jacobian\-vector product is one forward\-mode pass\.

### 4\.2Coupled Trajectories

We solve networks ofN=20N=20oscillators with all\-to\-all diffusive coupling and detuned natural frequencies, sweeping coupling strengthkck\_\{c\}and stiffnessμ\\mu, with five random systems per cell\. The feedforward baseline is the same surrogate evaluated with the coupling disabled—the uncoupled view of the same network\.

Table 2:Relative trajectory error against RK4 ground truth,N=20N=20, five seeds per cell\. Feedforward error is9797–153%153\\%throughout and is omitted per\-cell\. Parenthesized entries report seeds converged out of five where not all converged\.Forkc≤1\.5k\_\{c\}\\leq 1\.5every configuration converges on all five seeds, with residuals below10−1110^\{\-11\}and errors between1\.0%1\.0\\%and18\.2%18\.2\\%, against a feedforward baseline that is wrong by more than100%100\\%everywhere\. The solve takes44–1010Newton iterations on trajectories spanning15001500timesteps\.

### 4\.3Contraction Predicts Convergence

The pattern in the last column of Table[2](https://arxiv.org/html/2609.03358#S4.T2)is not accidental\. We estimateρ⁡\(∂Sϕ/∂𝐮\)\\rho\\big\(\\partial S\_\{\\phi\}/\\partial\\mathbf\{u\}\\big\)by power iteration on the learned operator, using only perturbation probes—no coupled system is involved\. Combined with‖W‖=kc\\\|W\\\|=k\_\{c\}, Eq\.[5](https://arxiv.org/html/2609.03358#S3.E5)predicts a convergence boundarykc∗=1/ρk\_\{c\}^\{\*\}=1/\\rho\. Figure[1](https://arxiv.org/html/2609.03358#S4.F1)overlays the predicted boundary on the observed sweep\.

![Refer to caption](https://arxiv.org/html/2609.03358v1/fig_contraction.png)Figure 1:The spectral radius of the learned operator, measured by power iteration on the isolated operator, predicts where the coupled solve converges\. Cells: relative trajectory error against RK4 ground truth \(N=20N=20, five seeds per cell; parentheses give seeds converged where not all five did\)\. Line: the predicted boundarykc∗=1/ρk\_\{c\}^\{\*\}=1/\\rho\. No coupled solve is involved in the prediction\.Table 3:The spectral radius of the learned operator, measured independently of any coupled solve, against the observed behavior atkc=2k\_\{c\}=2\.The ordering is exact: iteration count, convergence rate, and trajectory error all followρ\\rhoacross the stiffness range\. The same measurement applied to the true operator givesρ≈0\.54\\rho\\approx 0\.54atμ=1\\mu=1, so the learned operator is more expansive than the dynamics it approximates, and the coupled solve reaches a lower coupling strength than the physics would allow\.

Accuracy and composability, in other words, are different properties, and they do not move together\. The surrogate is*least*accurate in isolation atμ=5\\mu=5\(3\.4%3\.4\\%against0\.8%0\.8\\%atμ=1\\mu=1\), yet the coupled solve is*best*there, because contraction dominates once coupling is strong\. Across three separately trained surrogates we observe the same tension: better fit accompanied by largerρ\\rho\.

The obvious remedy does not work naively, either\. We trained a surrogate with an added penalty on the operator gain, in the spirit of Jacobian regularization for equilibrium models\[[2](https://arxiv.org/html/2609.03358#bib.bib2)\], estimated by random directional probes\. The penalty reduced the probed quantity by half and made the coupled solve*worse*\. The reason is that a random probe innndimensions places only1/n1/nof its energy along any one direction, so the estimate is the Frobenius norm rather than the spectral radius; constraining it crushed all directions while leaving the one that governs convergence slightly larger\. We report this as a negative result: the correct quantity requires power iteration, not random probing\.

### 4\.4Implicit Differentiation

We differentiate a scalar objective with respect to the coupling weights of a ring of oscillators and compare the implicit gradient of Eq\.[6](https://arxiv.org/html/2609.03358#S3.E6)against unrolled backpropagation and against central finite differences\.

Table 4:Gradient agreement and memory\. Unrolled memory grows with depthKK; the implicit gradient does not\. At coupling0\.50\.5the forward Newton solve converges in1414iterations, butρ\>1\\rho\>1, and only the implicit gradient remains valid\.Where the comparison is meaningful the gradients agree to five digits\. Where it is not—past the contraction boundary—unrolled backpropagation diverges by a factor of8383and the Neumann adjoint returns non\-finite values, while the implicit gradient remains correct to0\.04%0\.04\\%against finite differences\. This is the regime the Newton solver was introduced to reach, and the implicit gradient is the only one that survives it\.

To confirm the gradients do useful work in an optimization, we recover the coupling weights of a six\-oscillator ring from observed trajectories generated by RK4—the true physics, not the surrogate’s own output—by minimizing trajectory mismatch through the fixed point\. Over ten random systems, parameter error falls from83\.2%83\.2\\%to a median of1\.2%1\.2\\%\(worst case2\.1%2\.1\\%\) and output error from105%105\\%to1\.3%1\.3\\%\. The implicit and unrolled gradients give identical results at this coupling strength; the implicit one uses memory independent of solver depth\.

### 4\.5Hodgkin–Huxley Neurons

An external neuron receives a transient current pulse and drives an internal neuron carrying a self\-recurrent synapse, so the feedback loop closes at the internal neuron’s own output\. We sweep the recurrent weight and measure on the post\-pulse window, after the external drive is gone and the recurrent term is all that remains\.

Table 5:Post\-pulse relative error and mean activity\. WR is the same fixed point with an exact module operator, and is the floor attributable to the formulation; the gap between SC and WR is surrogate error\. Feedforward activity is independent ofwrecw\_\{\\mathrm\{rec\}\}by construction\.The activity columns carry the clearer statement\. Feedforward predicts that recurrence has no effect at all: its activity is pinned at0\.05510\.0551regardless ofwrecw\_\{\\mathrm\{rec\}\}\. The true activity falls monotonically from0\.05270\.0527to0\.03970\.0397as recurrence strengthens—a consequence of the synaptic reversal potential, which makes strong input depolarizing at rest but shunting during a spike—and the fixed point tracks that dependence where the uncoupled view, by construction, cannot\.

The error columns are more equivocal, and we report them plainly\. Self\-consistency roughly halves feedforward error, but the exact\-operator floor sits near1\.9%1\.9\\%, so most of the remaining error is the surrogate rather than the formulation\. Atwrec=5w\_\{\\mathrm\{rec\}\}=5the solve does not converge for this surrogate\. The neuron surrogate is comparably accurate to the oscillator one in isolation, so the gap reflects amplification through a fixed point whose conditioning is worse, consistent with Section[4\.3](https://arxiv.org/html/2609.03358#S4.SS3)\.

## 5Discussion

The experiments support the premise: coupled simulation can be reformulated as trajectory\-level self\-consistency among learned module operators, and the reformulation changes the structure of both the forward computation and its derivative\. The validation in Section[4\.1](https://arxiv.org/html/2609.03358#S4.SS1)establishes that the fixed point is the correct object independently of any learning, and the exact\-operator floor reported throughout separates what the formulation achieves from what the surrogate costs\.

Two findings we did not anticipate seem worth emphasizing\.

The first is that the classical relaxation iteration is the wrong solver for learned operators, and that this is not a detail\. Picard is bound byρ⁡\(∂Sϕ/∂𝐮\)​‖W‖<1\\rho\(\\partial S\_\{\\phi\}/\\partial\\mathbf\{u\}\)\\,\\\|W\\\|<1, and a learned operator is typically more expansive than the dynamics it approximates, so the bound binds earlier than the physics requires\. Newton removes the condition entirely, and it is affordable only because the operator is learned: with an exact integrator in the same role it is roughly100×100\\timesslower than Picard\. The equilibrium view and the learned operator are not independent choices; each is what makes the other practical\.

The second is that operator accuracy and operator composability are distinct properties that can be measured separately and that do not improve together\. A surrogate can fit better in isolation and compose worse, and we observe this across three independently trained models and across stiffness within a single model\. Standard surrogate evaluation reports only the first property\. For any method that composes learned operators, the second appears to be equally predictive of end\-to\-end behavior, and—via power iteration on the Jacobian—it can be measured before any coupled solve is attempted\.

The results also clarify what the method does*not*solve\. TWT does not remove the need to represent trajectories, nor does it eliminate approximation error\. The self\-consistency residual measures agreement under the learned surrogate, not satisfaction of the original differential equation, so a residual of10−1210^\{\-12\}can coexist with substantial physical error—as it does atkc=2k\_\{c\}=2\. Reporting both, together with the exact\-operator floor, is necessary for the numbers to be interpretable\.

## 6Limitations and Future Work

The present results are an early demonstration rather than a mature alternative to classical solvers\. The systems studied here are small:2020coupled oscillators and neuron pairs\. Nothing in the formulation is specific to that scale, but we have not demonstrated it beyond it, and the structural claims about sequential depth would be considerably more convincing at10310^\{3\}modules\. Surrogate error of11–4%4\\%is likewise far from solver\-grade, and fixed\-point conditioning amplifies it: a converged fixed point is only as meaningful as the operators from which it is built\. The exact\-operator floors reported here \(0\.0%0\.0\\%for oscillators,1\.9%1\.9\\%for neurons\) bound what better surrogates could achieve within the same formulation\.

For the same reason we report sequential depth—44–1010iterations against15001500timesteps—and not wall\-clock speedup\. Neither our implementation nor the reference integrator is optimized, so the comparison would not be meaningful\. The structural claim is that iteration count is not tied to trajectory length and that iterations are parallel across modules; the practical claim requires an optimized implementation we have not built\. For reference, all reported experiments were trained and run in approximately one day on a single rented NVIDIA RTX 5090 \(32 GB VRAM\) instance with a 16\-core AMD Ryzen 7 7800X3D host, roughly2424GPU\-hours in total; preliminary experimentation over the project’s duration used additional heterogeneous rented GPUs\.

The dominant practical failure mode was training\-distribution coverage\. Twice, an experiment exercised a parameter range the data generator had never sampled \(once in drive magnitude, once in recurrent weight\), and in both cases the error was initially misattributed to the method\. Composing learned operators makes this worse than in standard surrogate use, because the fixed\-point iteration itself determines the inputs the operator sees, and those inputs are not known in advance\. Generating training data that covers the distribution induced by coupling, rather than a distribution chosen beforehand, seems to us a central unsolved problem for this class of method\.

Finally, the experiments cover ODE systems with linear or synaptic coupling; PDEs, stiff multiscale systems, chaotic dynamics, discontinuities, and event\-driven systems require separate investigation\. Windowing the time axis, the classical remedy for slow waveform relaxation convergence, would also reduceρ\\rhodirectly and is a natural next step we did not pursue\. Beyond that, the most promising directions we see are learned preconditioners for the fixed\-point solve, compressed or latent trajectory representations for long horizons, and training objectives that control the spectral radius directly rather than through the proxy we found insufficient\.

## 7Conclusion

Time Without Timesteps reframes coupled dynamical simulation as a fixed\-point problem over trajectories, following classical waveform relaxation but replacing the inner numerical integration with learned trajectory operators\. The reformulation changes the sequential structure of the forward solve, converging in44–1010iterations on trajectories spanning15001500timesteps, and it changes the structure of the gradient, replacing a backward march through the integrator with a linear system that can be solved at memory independent of solver depth\. We show that the convergence boundary of the coupled solve is predicted in advance by a single measured property of the learned operator, that this property is distinct from isolated accuracy and does not improve alongside it, and that past the boundary the implicit gradient is the only one that remains valid\. The result is not a universal alternative to numerical integration, but a computational paradigm for differentiable, modular simulation whose failure modes we can now measure rather than merely observe\.

## References

- \[1\]Shaojie Bai, J\. Zico Kolter, and Vladlen Koltun\.Deep equilibrium models\.InAdvances in Neural Information Processing Systems, volume 32, 2019\.
- \[2\]Shaojie Bai, Vladlen Koltun, and J\. Zico Kolter\.Stabilizing equilibrium models by Jacobian regularization\.InInternational Conference on Machine Learning, 2021\.
- \[3\]Mathieu Blondel, Quentin Berthet, Marco Cuturi, Roy Frostig, Stephan Hoyer, Felipe Llinares\-López, Fabian Pedregosa, and Jean\-Philippe Vert\.Efficient and modular implicit differentiation\.InAdvances in Neural Information Processing Systems, volume 35, 2022\.
- \[4\]Ricky T\. Q\. Chen, Yulia Rubanova, Jesse Bettencourt, and David Duvenaud\.Neural ordinary differential equations\.InAdvances in Neural Information Processing Systems, volume 31, 2018\.
- \[5\]Michael Deistler, Kyra L\. Kadhim, Matthijs Pals, Jonas Beck, Ziwei Huang, Manuel Gloeckler, Janne K\. Lappalainen, Cornelius Schröder, Philipp Berens, Pedro J\. Gonçalves, and Jakob H\. Macke\.Jaxley: Differentiable simulation enables large\-scale training of detailed biophysical models of neural dynamics\.Nature Methods, 22\(12\):2649–2657, 2025\.
- \[6\]Martin J\. Gander\.50 years of time parallel time integration\.InMultiple Shooting and Time Domain Decomposition Methods, pages 69–113\. Springer, 2015\.
- \[7\]Alan L\. Hodgkin and Andrew F\. Huxley\.A quantitative description of membrane current and its application to conduction and excitation in nerve\.The Journal of Physiology, 117\(4\):500–544, 1952\.
- \[8\]Yuanming Hu, Luke Anderson, Tzu\-Mao Li, Qi Sun, Nathan Carr, Jonathan Ragan\-Kelley, and Frédo Durand\.DiffTaichi: Differentiable programming for physical simulation\.InInternational Conference on Learning Representations, 2020\.
- \[9\]Dana A\. Knoll and David E\. Keyes\.Jacobian\-free Newton–Krylov methods: A survey of approaches and applications\.Journal of Computational Physics, 193\(2\):357–397, 2004\.
- \[10\]Nikola Kovachki, Zongyi Li, Burigede Liu, Kamyar Azizzadenesheli, Kaushik Bhattacharya, Andrew Stuart, and Anima Anandkumar\.Neural operator: Learning maps between function spaces with applications to PDEs\.Journal of Machine Learning Research, 24\(89\):1–97, 2023\.
- \[11\]Aditi S\. Krishnapriyan, Amir Gholami, Shandian Zhe, Robert M\. Kirby, and Michael W\. Mahoney\.Characterizing possible failure modes in physics\-informed neural networks\.InAdvances in Neural Information Processing Systems, volume 34, 2021\.
- \[12\]Ekachai Lelarasmee, Albert E\. Ruehli, and Alberto L\. Sangiovanni\-Vincentelli\.The waveform relaxation method for time\-domain analysis of large scale integrated circuits\.IEEE Transactions on Computer\-Aided Design of Integrated Circuits and Systems, 1\(3\):131–145, 1982\.
- \[13\]Zongyi Li, Nikola Kovachki, Kamyar Azizzadenesheli, Burigede Liu, Kaushik Bhattacharya, Andrew Stuart, and Anima Anandkumar\.Fourier neural operator for parametric partial differential equations\.InInternational Conference on Learning Representations, 2021\.
- \[14\]Jacques\-Louis Lions, Yvon Maday, and Gabriel Turinici\.Résolution d’EDP par un schéma en temps “pararéel”\.Comptes Rendus de l’Académie des Sciences – Series I – Mathematics, 332\(7\):661–668, 2001\.
- \[15\]Lu Lu, Pengzhan Jin, Guofei Pang, Zhongqiang Zhang, and George Em Karniadakis\.Learning nonlinear operators via DeepONet based on the universal approximation theorem of operators\.Nature Machine Intelligence, 3\(3\):218–229, 2021\.
- \[16\]Jerrold E\. Marsden and Matthew West\.Discrete mechanics and variational integrators\.Acta Numerica, 10:357–514, 2001\.
- \[17\]Ulla Miekkala and Olavi Nevanlinna\.Convergence of dynamic iteration methods for initial value problems\.SIAM Journal on Scientific and Statistical Computing, 8\(4\):459–482, 1987\.
- \[18\]Maziar Raissi, Paris Perdikaris, and George E\. Karniadakis\.Physics\-informed neural networks: A deep learning framework for solving forward and inverse problems involving nonlinear partial differential equations\.Journal of Computational Physics, 378:686–707, 2019\.
- \[19\]Youcef Saad and Martin H\. Schultz\.GMRES: A generalized minimal residual algorithm for solving nonsymmetric linear systems\.SIAM Journal on Scientific and Statistical Computing, 7\(3\):856–869, 1986\.
- \[20\]Lloyd N\. Trefethen\.Approximation Theory and Approximation Practice\.SIAM, 2013\.
- \[21\]Sifan Wang, Xinling Yu, and Paris Perdikaris\.When and why PINNs fail to train: A neural tangent kernel perspective\.Journal of Computational Physics, 449:110768, 2022\.

Similar Articles