src/main.rs

Mon, 05 Dec 2022 23:50:22 +0200

author
Tuomo Valkonen <tuomov@iki.fi>
date
Mon, 05 Dec 2022 23:50:22 +0200
changeset 80
24e470b278e4
parent 61
4f468d35fa29
permissions
-rw-r--r--

Zenodo packaging hacks

// The main documentation is in the README.
// We need to uglify it in build.rs because rustdoc is stuck in the past.
#![doc = include_str!(concat!(env!("OUT_DIR"), "/README_uglified.md"))]

use pointsource_algs::{common_main, experiments::DefaultExperimentSetup};

/// The entry point for the program.
pub fn main() {
    common_main::<DefaultExperimentSetup<f64>>().unwrap();
}

mercurial