C/C++
sal.txt
Associated article: The Spatial Aggregation Language
Tags: C/C++
Published source code accompanying the article Feng Zhao, Christopher Bailey-Kellogg, and Ivan Ordonez in which they present the Spatial Aggregation (SAL), a C++ library for supporting rapid prototyping of data analysis and control applications for distributed physical systems.
The Spatial Aggregation Language by Feng Zhao, Christopher Bailey-Kellogg, Ivan Ordonez Listing One // (1.1) Read input points. points = read_points(infile) // (1.2) Aggregate into a Delaunay triangulation; find the // minimal spanning tree. point_trig = aggregate(points, make_mesh_delaunay()) point_mst = mst(...


