From 8c7abad0730d318e07ea87656c96736316f44ce7 Mon Sep 17 00:00:00 2001 From: James Logan Date: Tue, 20 Aug 2024 20:11:34 -0400 Subject: [PATCH] update readme --- README.md | 1 - interpn/README.md | 1 - interpn/src/lib.rs | 1 - 3 files changed, 3 deletions(-) diff --git a/README.md b/README.md index adf9308..318dbfc 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,6 @@ multicubic::rectilinear::interpn(grids, &z, false, &obs, &mut out).unwrap(); ``` # Development Roadmap -* Recursive multilinear methods (for better extrapolation speed and timing determinism) * Methods for unstructured triangular and tetrahedral meshes # License diff --git a/interpn/README.md b/interpn/README.md index adf9308..318dbfc 100644 --- a/interpn/README.md +++ b/interpn/README.md @@ -81,7 +81,6 @@ multicubic::rectilinear::interpn(grids, &z, false, &obs, &mut out).unwrap(); ``` # Development Roadmap -* Recursive multilinear methods (for better extrapolation speed and timing determinism) * Methods for unstructured triangular and tetrahedral meshes # License diff --git a/interpn/src/lib.rs b/interpn/src/lib.rs index 5c64270..bf3a625 100644 --- a/interpn/src/lib.rs +++ b/interpn/src/lib.rs @@ -80,7 +80,6 @@ //! ``` //! //! # Development Roadmap -//! * Recursive multilinear methods (for better extrapolation speed and timing determinism) //! * Methods for unstructured triangular and tetrahedral meshes #![cfg_attr(not(feature = "std"), no_std)] // These "needless" range loops are a significant speedup