Update to 2018 edition.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-06-13 18:53:36 -07:00
parent 33a126f4d7
commit a30a5a383c
3 changed files with 172 additions and 131 deletions

View File

@@ -1,10 +1,3 @@
#[macro_use]
extern crate log;
extern crate rand;
extern crate stderrlog;
extern crate structopt;
use rand::Rng;
use std::clone::Clone;
use std::f64;
use std::fmt;
@@ -13,6 +6,9 @@ use std::io::Write;
use std::ops::Add;
use std::ops::Mul;
use std::ops::Sub;
use log::info;
use rand::Rng;
use structopt::StructOpt;
fn vdot(v0: &Vector, v1: &Vector) -> f64 {