update
This commit is contained in:
parent
a612aa1fbf
commit
e9ba5b43b4
17
TODO.md
17
TODO.md
@ -8,15 +8,14 @@
|
|||||||
- Non `y=` functions.
|
- Non `y=` functions.
|
||||||
3. Smart display of graph
|
3. Smart display of graph
|
||||||
- Display of intersections between functions
|
- Display of intersections between functions
|
||||||
4. Properly parse lowercase `e` as euler's number
|
4. Allow constants in min/max integral input (like pi or euler's number)
|
||||||
5. Allow constants in min/max integral input (like pi or euler's number)
|
5. Sliding values for functions (like a user-interactable slider that adjusts a variable in the function, like desmos)
|
||||||
6. Sliding values for functions (like a user-interactable slider that adjusts a variable in the function, like desmos)
|
6. nth derivative support (again)
|
||||||
7. nth derivative support (again)
|
7. Threading (Partially mplemented when running natively)
|
||||||
8. Threading (Partially mplemented when running natively)
|
8. Fix integral display
|
||||||
9. Fix integral display
|
9. Look into other, better methods of compression that would be faster
|
||||||
10. Look into other, better methods of compression that would be faster
|
10. Better handling of panics and errors to display to the user
|
||||||
11. Better handling of panics and errors to display to the user
|
11. Hints for functions
|
||||||
12. Hints for functions
|
|
||||||
- Random default functions for demo purposes
|
- Random default functions for demo purposes
|
||||||
- Syntax
|
- Syntax
|
||||||
- Parentheses (Done)
|
- Parentheses (Done)
|
||||||
|
|||||||
@ -15,7 +15,7 @@
|
|||||||
"- floor, ceil, round, signum"
|
"- floor, ceil, round, signum"
|
||||||
],
|
],
|
||||||
"help_vars": [
|
"help_vars": [
|
||||||
"- Euler's number is supported via 'E' (note it being uppercase)",
|
"- Euler's number is supported via 'e' or 'E'",
|
||||||
"- PI is available through 'pi' or 'π'"
|
"- PI is available through 'pi' or 'π'"
|
||||||
],
|
],
|
||||||
"help_panel": [
|
"help_panel": [
|
||||||
|
|||||||
@ -704,7 +704,7 @@ impl epi::App for MathApp {
|
|||||||
.map(|ele| ele.as_ref().unwrap())
|
.map(|ele| ele.as_ref().unwrap())
|
||||||
.for_each(|ele| {
|
.for_each(|ele| {
|
||||||
ui.heading(
|
ui.heading(
|
||||||
&(&format!("(Function #{}) {}\n", ele.0, ele.1)).to_string(),
|
format!("(Function #{}) {}\n", ele.0, ele.1),
|
||||||
);
|
);
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
|
|||||||
115
src/function.rs
115
src/function.rs
@ -1,7 +1,6 @@
|
|||||||
#![allow(clippy::too_many_arguments)] // Clippy, shut
|
#![allow(clippy::too_many_arguments)] // Clippy, shut
|
||||||
|
|
||||||
use crate::egui_app::AppSettings;
|
use crate::egui_app::AppSettings;
|
||||||
use crate::function_output::FunctionOutput;
|
|
||||||
use crate::misc::*;
|
use crate::misc::*;
|
||||||
use crate::parsing::BackingFunction;
|
use crate::parsing::BackingFunction;
|
||||||
use eframe::{egui, epaint};
|
use eframe::{egui, epaint};
|
||||||
@ -48,15 +47,18 @@ pub struct FunctionEntry {
|
|||||||
min_x: f64,
|
min_x: f64,
|
||||||
max_x: f64,
|
max_x: f64,
|
||||||
|
|
||||||
/// output/cached data
|
|
||||||
output: FunctionOutput,
|
|
||||||
|
|
||||||
/// If calculating/displayingintegrals are enabled
|
/// If calculating/displayingintegrals are enabled
|
||||||
pub integral: bool,
|
pub integral: bool,
|
||||||
|
|
||||||
/// If displaying derivatives are enabled (note, they are still calculated
|
/// If displaying derivatives are enabled (note, they are still calculated
|
||||||
/// for other purposes)
|
/// for other purposes)
|
||||||
pub derivative: bool,
|
pub derivative: bool,
|
||||||
|
|
||||||
|
back_data: Option<Vec<Value>>,
|
||||||
|
integral_data: Option<(Vec<Bar>, f64)>,
|
||||||
|
derivative_data: Option<Vec<Value>>,
|
||||||
|
extrema_data: Option<Vec<Value>>,
|
||||||
|
roots_data: Option<Vec<Value>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Default for FunctionEntry {
|
impl Default for FunctionEntry {
|
||||||
@ -67,9 +69,13 @@ impl Default for FunctionEntry {
|
|||||||
func_str: String::new(),
|
func_str: String::new(),
|
||||||
min_x: -1.0,
|
min_x: -1.0,
|
||||||
max_x: 1.0,
|
max_x: 1.0,
|
||||||
output: FunctionOutput::new_empty(),
|
|
||||||
integral: false,
|
integral: false,
|
||||||
derivative: false,
|
derivative: false,
|
||||||
|
back_data: None,
|
||||||
|
integral_data: None,
|
||||||
|
derivative_data: None,
|
||||||
|
extrema_data: None,
|
||||||
|
roots_data: None,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -81,7 +87,7 @@ impl FunctionEntry {
|
|||||||
if func_str != self.func_str {
|
if func_str != self.func_str {
|
||||||
self.func_str = func_str.to_string();
|
self.func_str = func_str.to_string();
|
||||||
self.function = BackingFunction::new(func_str);
|
self.function = BackingFunction::new(func_str);
|
||||||
self.output.invalidate_whole();
|
self.invalidate_whole();
|
||||||
}
|
}
|
||||||
|
|
||||||
self.derivative = derivative;
|
self.derivative = derivative;
|
||||||
@ -140,14 +146,14 @@ impl FunctionEntry {
|
|||||||
0 => newtons_method_helper(
|
0 => newtons_method_helper(
|
||||||
&threshold,
|
&threshold,
|
||||||
&range,
|
&range,
|
||||||
&self.output.back.as_ref().unwrap(),
|
&self.back_data.as_ref().unwrap(),
|
||||||
&|x: f64| self.function.get(x),
|
&|x: f64| self.function.get(x),
|
||||||
&|x: f64| self.function.get_derivative_1(x),
|
&|x: f64| self.function.get_derivative_1(x),
|
||||||
),
|
),
|
||||||
1 => newtons_method_helper(
|
1 => newtons_method_helper(
|
||||||
&threshold,
|
&threshold,
|
||||||
&range,
|
&range,
|
||||||
&self.output.derivative.as_ref().unwrap(),
|
&self.derivative_data.as_ref().unwrap(),
|
||||||
&|x: f64| self.function.get_derivative_1(x),
|
&|x: f64| self.function.get_derivative_1(x),
|
||||||
&|x: f64| self.function.get_derivative_2(x),
|
&|x: f64| self.function.get_derivative_2(x),
|
||||||
),
|
),
|
||||||
@ -165,7 +171,7 @@ impl FunctionEntry {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Does the calculations and stores results in `self.output`
|
/// Does the calculations and stores results in `self`
|
||||||
pub fn calculate(
|
pub fn calculate(
|
||||||
&mut self, min_x: &f64, max_x: &f64, width_changed: bool, settings: &AppSettings,
|
&mut self, min_x: &f64, max_x: &f64, width_changed: bool, settings: &AppSettings,
|
||||||
) {
|
) {
|
||||||
@ -174,7 +180,7 @@ impl FunctionEntry {
|
|||||||
|
|
||||||
// Makes sure proper arguments are passed when integral is enabled
|
// Makes sure proper arguments are passed when integral is enabled
|
||||||
if self.integral && settings.integral_changed {
|
if self.integral && settings.integral_changed {
|
||||||
self.output.invalidate_integral();
|
self.invalidate_integral();
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut partial_regen = false;
|
let mut partial_regen = false;
|
||||||
@ -183,12 +189,12 @@ impl FunctionEntry {
|
|||||||
self.min_x = *min_x;
|
self.min_x = *min_x;
|
||||||
self.max_x = *max_x;
|
self.max_x = *max_x;
|
||||||
if width_changed {
|
if width_changed {
|
||||||
self.output.invalidate_back();
|
self.invalidate_back();
|
||||||
self.output.invalidate_derivative();
|
self.invalidate_derivative();
|
||||||
} else if min_max_changed && self.output.back.is_some() {
|
} else if min_max_changed && self.back_data.is_some() {
|
||||||
partial_regen = true;
|
partial_regen = true;
|
||||||
|
|
||||||
let back_cache = self.output.back.as_ref().unwrap();
|
let back_cache = self.back_data.as_ref().unwrap();
|
||||||
|
|
||||||
let x_data: SteppedVector = back_cache
|
let x_data: SteppedVector = back_cache
|
||||||
.iter()
|
.iter()
|
||||||
@ -206,9 +212,9 @@ impl FunctionEntry {
|
|||||||
})
|
})
|
||||||
.collect();
|
.collect();
|
||||||
// assert_eq!(back_data.len(), settings.plot_width + 1);
|
// assert_eq!(back_data.len(), settings.plot_width + 1);
|
||||||
self.output.back = Some(back_data);
|
self.back_data = Some(back_data);
|
||||||
|
|
||||||
let derivative_cache = self.output.derivative.as_ref().unwrap();
|
let derivative_cache = self.derivative_data.as_ref().unwrap();
|
||||||
let new_derivative_data: Vec<Value> = dyn_iter(&resolution_iter)
|
let new_derivative_data: Vec<Value> = dyn_iter(&resolution_iter)
|
||||||
.map(|x| {
|
.map(|x| {
|
||||||
if let Some(i) = x_data.get_index(x) {
|
if let Some(i) = x_data.get_index(x) {
|
||||||
@ -221,56 +227,56 @@ impl FunctionEntry {
|
|||||||
|
|
||||||
// assert_eq!(new_derivative_data.len(), settings.plot_width + 1);
|
// assert_eq!(new_derivative_data.len(), settings.plot_width + 1);
|
||||||
|
|
||||||
self.output.derivative = Some(new_derivative_data);
|
self.derivative_data = Some(new_derivative_data);
|
||||||
} else {
|
} else {
|
||||||
self.output.invalidate_back();
|
self.invalidate_back();
|
||||||
self.output.invalidate_derivative();
|
self.invalidate_derivative();
|
||||||
}
|
}
|
||||||
|
|
||||||
let threshold: f64 = resolution / 2.0;
|
let threshold: f64 = resolution / 2.0;
|
||||||
|
|
||||||
if !partial_regen {
|
if !partial_regen {
|
||||||
if self.output.back.is_none() {
|
if self.back_data.is_none() {
|
||||||
let data: Vec<Value> = dyn_iter(&resolution_iter)
|
let data: Vec<Value> = dyn_iter(&resolution_iter)
|
||||||
.map(|x| Value::new(*x, self.function.get(*x)))
|
.map(|x| Value::new(*x, self.function.get(*x)))
|
||||||
.collect();
|
.collect();
|
||||||
assert_eq!(data.len(), settings.plot_width + 1);
|
assert_eq!(data.len(), settings.plot_width + 1);
|
||||||
|
|
||||||
self.output.back = Some(data);
|
self.back_data = Some(data);
|
||||||
}
|
}
|
||||||
|
|
||||||
if self.output.derivative.is_none() {
|
if self.derivative_data.is_none() {
|
||||||
let data: Vec<Value> = dyn_iter(&resolution_iter)
|
let data: Vec<Value> = dyn_iter(&resolution_iter)
|
||||||
.map(|x| Value::new(*x, self.function.get_derivative_1(*x)))
|
.map(|x| Value::new(*x, self.function.get_derivative_1(*x)))
|
||||||
.collect();
|
.collect();
|
||||||
assert_eq!(data.len(), settings.plot_width + 1);
|
assert_eq!(data.len(), settings.plot_width + 1);
|
||||||
self.output.derivative = Some(data);
|
self.derivative_data = Some(data);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if self.integral {
|
if self.integral {
|
||||||
if self.output.integral.is_none() {
|
if self.integral_data.is_none() {
|
||||||
let (data, area) = self.integral_rectangles(
|
let (data, area) = self.integral_rectangles(
|
||||||
&settings.integral_min_x,
|
&settings.integral_min_x,
|
||||||
&settings.integral_max_x,
|
&settings.integral_max_x,
|
||||||
&settings.riemann_sum,
|
&settings.riemann_sum,
|
||||||
&settings.integral_num,
|
&settings.integral_num,
|
||||||
);
|
);
|
||||||
self.output.integral =
|
self.integral_data =
|
||||||
Some((data.iter().map(|(x, y)| Bar::new(*x, *y)).collect(), area));
|
Some((data.iter().map(|(x, y)| Bar::new(*x, *y)).collect(), area));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
self.output.integral = None;
|
self.invalidate_integral();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Calculates extrema
|
// Calculates extrema
|
||||||
if settings.do_extrema && (min_max_changed | self.output.extrema.is_none()) {
|
if settings.do_extrema && (min_max_changed | self.extrema_data.is_none()) {
|
||||||
self.output.extrema = self.newtons_method_helper(&threshold, 1);
|
self.extrema_data = self.newtons_method_helper(&threshold, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Calculates roots
|
// Calculates roots
|
||||||
if settings.do_roots && (min_max_changed | self.output.roots.is_none()) {
|
if settings.do_roots && (min_max_changed | self.roots_data.is_none()) {
|
||||||
self.output.roots = self.newtons_method_helper(&threshold, 0);
|
self.roots_data = self.newtons_method_helper(&threshold, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -283,14 +289,14 @@ impl FunctionEntry {
|
|||||||
/ (settings.integral_num as f64);
|
/ (settings.integral_num as f64);
|
||||||
// Plot back data
|
// Plot back data
|
||||||
plot_ui.line(
|
plot_ui.line(
|
||||||
vec_tuple_to_line(self.output.back.clone().unwrap())
|
vec_tuple_to_line(self.back_data.clone().unwrap())
|
||||||
.color(Color32::RED)
|
.color(Color32::RED)
|
||||||
.name(func_str),
|
.name(func_str),
|
||||||
);
|
);
|
||||||
|
|
||||||
// Plot derivative data
|
// Plot derivative data
|
||||||
if self.derivative {
|
if self.derivative {
|
||||||
if let Some(derivative_data) = self.output.derivative.clone() {
|
if let Some(derivative_data) = self.derivative_data.clone() {
|
||||||
plot_ui.line(
|
plot_ui.line(
|
||||||
vec_tuple_to_line(derivative_data)
|
vec_tuple_to_line(derivative_data)
|
||||||
.color(Color32::GREEN)
|
.color(Color32::GREEN)
|
||||||
@ -301,9 +307,9 @@ impl FunctionEntry {
|
|||||||
|
|
||||||
// Plot extrema points
|
// Plot extrema points
|
||||||
if settings.do_extrema {
|
if settings.do_extrema {
|
||||||
if let Some(extrema_data) = self.output.extrema.clone() {
|
if let Some(extrema_data) = &self.extrema_data {
|
||||||
plot_ui.points(
|
plot_ui.points(
|
||||||
vec_tuple_to_points(extrema_data)
|
vec_tuple_to_points(extrema_data.clone())
|
||||||
.color(Color32::YELLOW)
|
.color(Color32::YELLOW)
|
||||||
.name("Extrema")
|
.name("Extrema")
|
||||||
.radius(5.0), // Radius of points of Extrema
|
.radius(5.0), // Radius of points of Extrema
|
||||||
@ -313,9 +319,9 @@ impl FunctionEntry {
|
|||||||
|
|
||||||
// Plot roots points
|
// Plot roots points
|
||||||
if settings.do_roots {
|
if settings.do_roots {
|
||||||
if let Some(roots_data) = self.output.roots.clone() {
|
if let Some(roots_data) = &self.roots_data {
|
||||||
plot_ui.points(
|
plot_ui.points(
|
||||||
vec_tuple_to_points(roots_data)
|
vec_tuple_to_points(roots_data.clone())
|
||||||
.color(Color32::LIGHT_BLUE)
|
.color(Color32::LIGHT_BLUE)
|
||||||
.name("Root")
|
.name("Root")
|
||||||
.radius(5.0), // Radius of points of Roots
|
.radius(5.0), // Radius of points of Roots
|
||||||
@ -324,9 +330,9 @@ impl FunctionEntry {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Plot integral data
|
// Plot integral data
|
||||||
if let Some(integral_data) = self.output.integral.clone() {
|
if let Some(integral_data) = &self.integral_data {
|
||||||
plot_ui.bar_chart(
|
plot_ui.bar_chart(
|
||||||
BarChart::new(integral_data.0)
|
BarChart::new(integral_data.clone().0)
|
||||||
.color(Color32::BLUE)
|
.color(Color32::BLUE)
|
||||||
.width(step),
|
.width(step),
|
||||||
);
|
);
|
||||||
@ -338,6 +344,23 @@ impl FunctionEntry {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn invalidate_whole(&mut self) {
|
||||||
|
self.back_data = None;
|
||||||
|
self.integral_data = None;
|
||||||
|
self.derivative_data = None;
|
||||||
|
self.extrema_data = None;
|
||||||
|
self.roots_data = None;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Invalidate `back` data
|
||||||
|
pub fn invalidate_back(&mut self) { self.back_data = None; }
|
||||||
|
|
||||||
|
/// Invalidate Integral data
|
||||||
|
pub fn invalidate_integral(&mut self) { self.integral_data = None; }
|
||||||
|
|
||||||
|
/// Invalidate Derivative data
|
||||||
|
pub fn invalidate_derivative(&mut self) { self.derivative_data = None; }
|
||||||
|
|
||||||
/// Runs asserts to make sure everything is the expected value
|
/// Runs asserts to make sure everything is the expected value
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
pub fn tests(
|
pub fn tests(
|
||||||
@ -348,8 +371,8 @@ impl FunctionEntry {
|
|||||||
self.calculate(&min_x, &max_x, true, &settings);
|
self.calculate(&min_x, &max_x, true, &settings);
|
||||||
let settings = settings;
|
let settings = settings;
|
||||||
let back_target = back_target;
|
let back_target = back_target;
|
||||||
assert!(self.output.back.is_some());
|
assert!(self.back_data.is_some());
|
||||||
let back_data = self.output.back.as_ref().unwrap().clone();
|
let back_data = self.back_data.as_ref().unwrap().clone();
|
||||||
assert_eq!(back_data.len(), settings.plot_width + 1);
|
assert_eq!(back_data.len(), settings.plot_width + 1);
|
||||||
let back_vec_tuple = back_data.to_tuple();
|
let back_vec_tuple = back_data.to_tuple();
|
||||||
assert_eq!(back_vec_tuple, back_target);
|
assert_eq!(back_vec_tuple, back_target);
|
||||||
@ -357,17 +380,17 @@ impl FunctionEntry {
|
|||||||
assert!(self.integral);
|
assert!(self.integral);
|
||||||
assert!(self.derivative);
|
assert!(self.derivative);
|
||||||
|
|
||||||
assert_eq!(self.output.roots.is_some(), settings.do_roots);
|
assert_eq!(self.roots_data.is_some(), settings.do_roots);
|
||||||
assert_eq!(self.output.extrema.is_some(), settings.do_extrema);
|
assert_eq!(self.extrema_data.is_some(), settings.do_extrema);
|
||||||
assert!(self.output.derivative.is_some());
|
assert!(self.derivative_data.is_some());
|
||||||
assert!(self.output.integral.is_some());
|
assert!(self.integral_data.is_some());
|
||||||
|
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
self.output.derivative.as_ref().unwrap().to_tuple(),
|
self.derivative_data.as_ref().unwrap().to_tuple(),
|
||||||
derivative_target
|
derivative_target
|
||||||
);
|
);
|
||||||
|
|
||||||
assert_eq!(self.output.integral.clone().unwrap().1, area_target);
|
assert_eq!(self.integral_data.clone().unwrap().1, area_target);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,82 +0,0 @@
|
|||||||
use eframe::egui::{plot::Value, widgets::plot::Bar};
|
|
||||||
|
|
||||||
#[derive(Clone)]
|
|
||||||
pub struct FunctionOutput {
|
|
||||||
pub(crate) back: Option<Vec<Value>>,
|
|
||||||
pub(crate) integral: Option<(Vec<Bar>, f64)>,
|
|
||||||
pub(crate) derivative: Option<Vec<Value>>,
|
|
||||||
pub(crate) extrema: Option<Vec<Value>>,
|
|
||||||
pub(crate) roots: Option<Vec<Value>>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl FunctionOutput {
|
|
||||||
/// Creates empty instance of [`FunctionOutput`]
|
|
||||||
pub fn new_empty() -> Self {
|
|
||||||
Self {
|
|
||||||
back: None,
|
|
||||||
integral: None,
|
|
||||||
derivative: None,
|
|
||||||
extrema: None,
|
|
||||||
roots: None,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Invalidate all data (setting it all to `None`)
|
|
||||||
pub fn invalidate_whole(&mut self) {
|
|
||||||
self.back = None;
|
|
||||||
self.integral = None;
|
|
||||||
self.derivative = None;
|
|
||||||
self.extrema = None;
|
|
||||||
self.roots = None;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Invalidate `back` data
|
|
||||||
pub fn invalidate_back(&mut self) { self.back = None; }
|
|
||||||
|
|
||||||
/// Invalidate Integral data
|
|
||||||
pub fn invalidate_integral(&mut self) { self.integral = None; }
|
|
||||||
|
|
||||||
/// Invalidate Derivative data
|
|
||||||
pub fn invalidate_derivative(&mut self) { self.derivative = None; }
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Tests to make sure invalidation and the default empty state works as
|
|
||||||
/// expected
|
|
||||||
#[test]
|
|
||||||
fn function_output_test() {
|
|
||||||
let empty_value = vec![Value::new(0, 0)];
|
|
||||||
let empty_bars = (vec![Bar::new(0.0, 0.0)], 0.0);
|
|
||||||
|
|
||||||
let mut function_output = FunctionOutput::new_empty();
|
|
||||||
assert!(function_output.back.is_none());
|
|
||||||
assert!(function_output.integral.is_none());
|
|
||||||
assert!(function_output.derivative.is_none());
|
|
||||||
assert!(function_output.extrema.is_none());
|
|
||||||
assert!(function_output.roots.is_none());
|
|
||||||
|
|
||||||
function_output.back = Some(empty_value.clone());
|
|
||||||
function_output.invalidate_back();
|
|
||||||
assert!(function_output.back.is_none());
|
|
||||||
|
|
||||||
function_output.integral = Some(empty_bars.clone());
|
|
||||||
function_output.invalidate_integral();
|
|
||||||
assert!(function_output.integral.is_none());
|
|
||||||
|
|
||||||
function_output.derivative = Some(empty_value.clone());
|
|
||||||
function_output.invalidate_derivative();
|
|
||||||
assert!(function_output.derivative.is_none());
|
|
||||||
|
|
||||||
function_output.back = Some(empty_value.clone());
|
|
||||||
function_output.integral = Some(empty_bars);
|
|
||||||
function_output.derivative = Some(empty_value.clone());
|
|
||||||
function_output.extrema = Some(empty_value.clone());
|
|
||||||
function_output.roots = Some(empty_value);
|
|
||||||
|
|
||||||
function_output.invalidate_whole();
|
|
||||||
|
|
||||||
assert!(function_output.back.is_none());
|
|
||||||
assert!(function_output.integral.is_none());
|
|
||||||
assert!(function_output.derivative.is_none());
|
|
||||||
assert!(function_output.extrema.is_none());
|
|
||||||
assert!(function_output.roots.is_none());
|
|
||||||
}
|
|
||||||
@ -7,7 +7,6 @@ extern crate static_assertions;
|
|||||||
mod consts;
|
mod consts;
|
||||||
mod egui_app;
|
mod egui_app;
|
||||||
mod function;
|
mod function;
|
||||||
mod function_output;
|
|
||||||
mod misc;
|
mod misc;
|
||||||
mod parsing;
|
mod parsing;
|
||||||
mod suggestions;
|
mod suggestions;
|
||||||
|
|||||||
@ -6,7 +6,6 @@ extern crate static_assertions;
|
|||||||
mod consts;
|
mod consts;
|
||||||
mod egui_app;
|
mod egui_app;
|
||||||
mod function;
|
mod function;
|
||||||
mod function_output;
|
|
||||||
mod misc;
|
mod misc;
|
||||||
mod parsing;
|
mod parsing;
|
||||||
mod suggestions;
|
mod suggestions;
|
||||||
|
|||||||
@ -188,13 +188,7 @@ pub fn test_func(function_string: &str) -> Option<String> {
|
|||||||
return match var_names_not_x.len() {
|
return match var_names_not_x.len() {
|
||||||
1 => {
|
1 => {
|
||||||
let var_name = &var_names_not_x[0];
|
let var_name = &var_names_not_x[0];
|
||||||
if var_name == "e" {
|
Some(format!("Error: invalid variable: {}", var_name))
|
||||||
Some(String::from(
|
|
||||||
"If trying to use Euler's number, please use an uppercase E",
|
|
||||||
))
|
|
||||||
} else {
|
|
||||||
Some(format!("Error: invalid variable: {}", var_name))
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
_ => Some(format!("Error: invalid variables: {:?}", var_names_not_x)),
|
_ => Some(format!("Error: invalid variables: {:?}", var_names_not_x)),
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user