- edges
Two-column integer matrix of edges (1-based vertex ids).
- n
Number of vertices.
- adj_list
Adjacency list (1-based) for undirected graphs.
- weight_list
Optional parallel list of edge weights (edge lengths).
If NULL, all edges are treated as weight 1. All weights must be finite
and strictly positive.
- edge_weights
Optional vector of edge weights for edges. All
weights must be finite and strictly positive.
- dim
Layout dimension (2 or 3). Default is 3.
- placement
Initial placement strategy. "circle" is only used for 2D.
- preset
Optional tuning preset. NULL uses the historical
defaults. "carpet" applies a preset tuned for
Sierpinski-carpet-like graphs and validated on carpet levels 3 and 4.
"mesh" applies a preset tuned for rectangular lattice graphs and
validated on 8x8 and 12x12 mesh layouts. "torus" applies a preset
tuned for 3D torus layouts and validated on torus sizes from 8x8 through
20x20. "tree" applies a preset tuned for symmetric force-directed
layouts of tree-like graphs and validated on binary trees of depths 5 and
6. Presets only fill in tuning arguments that you did not supply
explicitly.
- rounds
Initial rounds for refinement.
- final_rounds
Final rounds for refinement.
- num_init
Number of initial vertices in the coarsest level.
- num_nbrs
Maximum number of graph-distance neighbors retained for local
refinement at each filtration level.
- r
Main local temperature adaptation rate in [0, 1].
- s
Non-negative boost factor applied when successive displacements have
a consistent direction.
- repulsion_factor
Non-negative multiplier applied to GRIP's
finest-level repulsive force scale. 1 keeps the historical
repulsion strength; 0 disables that repulsive term.
- tinit_factor
Initial temperature factor.
- seed
Optional RNG seed for reproducibility. If NULL, uses current time.
- trace
Snapshot granularity. "round" records the coarsest
initialization, each level start, every trace.every completed rounds,
and the final layout. "level" records the coarsest initialization,
every trace.everyth level start, and the final layout.
- trace.every
Positive integer thinning factor for recorded rounds or
levels. Initial and final snapshots are always included.