├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── equations_ci.yml │ ├── example_web_deploy.yml │ └── integration_tests.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── assets ├── circle_logo.svg ├── equations_logo.png └── equations_logo.svg ├── example ├── README.md ├── dart_example │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── analysis_options.yaml │ ├── bin │ │ └── equation_solver_cli.dart │ ├── lib │ │ ├── equation_solver_cli.dart │ │ └── src │ │ │ ├── output.dart │ │ │ └── output_writers │ │ │ ├── error_output.dart │ │ │ ├── integral_output.dart │ │ │ ├── matrix_output.dart │ │ │ ├── nonlinear_output.dart │ │ │ └── polynomial_output.dart │ ├── pubspec.yaml │ └── test │ │ ├── common_process.dart │ │ ├── error_output_test.dart │ │ └── output_printers_test.dart └── flutter_example │ ├── .gitignore │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── fluttercompletereference │ │ │ │ │ └── equations_solver │ │ │ │ │ └── flutter_example │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ ├── background.png │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ ├── background.png │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ ├── styles.xml │ │ │ │ ├── values-fr │ │ │ │ └── strings.xml │ │ │ │ └── values-it │ │ │ │ └── strings.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ ├── assets │ └── svg │ │ ├── angle.svg │ │ ├── atoms.svg │ │ ├── axis.svg │ │ ├── function.svg │ │ ├── integral.svg │ │ ├── logo.svg │ │ ├── matrix.svg │ │ ├── plot.svg │ │ ├── plot_opacity.svg │ │ ├── polynomial.svg │ │ ├── solutions.svg │ │ ├── square-root-simple.svg │ │ ├── square_matrix.svg │ │ ├── tools_imaginary.svg │ │ ├── tools_matrix.svg │ │ ├── url_error.svg │ │ └── wrench.svg │ ├── integration_test │ ├── home_page_test.dart │ ├── integral_page_test.dart │ ├── nonlinear_page_test.dart │ ├── other_page_test.dart │ ├── polynomial_page_test.dart │ ├── system_page_test.dart │ └── utils.dart │ ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Podfile.lock │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ ├── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h │ └── RunnerTests │ │ └── RunnerTests.swift │ ├── l10n.yaml │ ├── lib │ ├── localization │ │ ├── l10n │ │ │ ├── app_en.arb │ │ │ ├── app_fr.arb │ │ │ └── app_it.arb │ │ └── localization.dart │ ├── main.dart │ ├── routes.dart │ └── routes │ │ ├── error_page.dart │ │ ├── home_page.dart │ │ ├── home_page │ │ ├── card_containers.dart │ │ └── home_contents.dart │ │ ├── integral_page.dart │ │ ├── integral_page │ │ ├── integral_body.dart │ │ ├── integral_data_input.dart │ │ ├── integral_results.dart │ │ ├── model │ │ │ ├── inherited_integral.dart │ │ │ ├── integral_result.dart │ │ │ └── integral_state.dart │ │ └── utils │ │ │ ├── dropdown_selection.dart │ │ │ └── integral_plot_widget.dart │ │ ├── models │ │ ├── dropdown_value │ │ │ └── inherited_dropdown_value.dart │ │ ├── inherited_navigation │ │ │ └── inherited_navigation.dart │ │ ├── number_switcher │ │ │ ├── inherited_number_switcher.dart │ │ │ └── number_switcher_state.dart │ │ ├── plot_zoom │ │ │ ├── inherited_plot_zoom.dart │ │ │ └── plot_zoom_state.dart │ │ ├── precision_slider │ │ │ ├── inherited_precision_slider.dart │ │ │ └── precision_slider_state.dart │ │ ├── system_text_controllers │ │ │ ├── inherited_system_controllers.dart │ │ │ └── system_text_controllers.dart │ │ └── text_controllers │ │ │ └── inherited_text_controllers.dart │ │ ├── nonlinear_page.dart │ │ ├── nonlinear_page │ │ ├── model │ │ │ ├── inherited_nonlinear.dart │ │ │ ├── nonlinear_result.dart │ │ │ └── nonlinear_state.dart │ │ ├── nonlinear_body.dart │ │ ├── nonlinear_data_input.dart │ │ ├── nonlinear_results.dart │ │ └── utils │ │ │ ├── dropdown_selection.dart │ │ │ ├── nonlinear_plot_widget.dart │ │ │ ├── nonlinear_title_localizer.dart │ │ │ └── precision_slider.dart │ │ ├── other_page.dart │ │ ├── other_page │ │ ├── complex_numbers │ │ │ ├── complex_analyzer_input.dart │ │ │ ├── complex_number_analyzer_results.dart │ │ │ └── complex_number_input.dart │ │ ├── complex_numbers_body.dart │ │ ├── matrix │ │ │ ├── matrix_analyze_results.dart │ │ │ ├── matrix_analyzer_input.dart │ │ │ └── matrix_output.dart │ │ ├── matrix_body.dart │ │ └── model │ │ │ ├── analyzer │ │ │ ├── analyzer.dart │ │ │ ├── analyzers │ │ │ │ ├── complex_analyzer.dart │ │ │ │ └── matrix_analyzer.dart │ │ │ ├── result_wrapper.dart │ │ │ └── wrappers │ │ │ │ ├── complex_result_wrapper.dart │ │ │ │ └── matrix_result_wrapper.dart │ │ │ ├── inherited_other.dart │ │ │ ├── other_result.dart │ │ │ └── other_state.dart │ │ ├── polynomial_page.dart │ │ ├── polynomial_page │ │ ├── model │ │ │ ├── inherited_polynomial.dart │ │ │ ├── polynomial_result.dart │ │ │ └── polynomial_state.dart │ │ ├── polynomial_body.dart │ │ ├── polynomial_data_input.dart │ │ ├── polynomial_input_field.dart │ │ ├── polynomial_results.dart │ │ └── utils │ │ │ ├── no_discriminant.dart │ │ │ ├── polynomial_discriminant.dart │ │ │ ├── polynomial_plot_widget.dart │ │ │ └── polynomial_title_localizer.dart │ │ ├── system_page.dart │ │ ├── system_page │ │ ├── model │ │ │ ├── inherited_system.dart │ │ │ ├── system_result.dart │ │ │ └── system_state.dart │ │ ├── system_body.dart │ │ ├── system_data_input.dart │ │ ├── system_input_field.dart │ │ ├── system_results.dart │ │ └── utils │ │ │ ├── dropdown_selection.dart │ │ │ ├── jacobi_initial_vector.dart │ │ │ ├── matrix_input.dart │ │ │ ├── size_picker.dart │ │ │ ├── sor_relaxation_factor.dart │ │ │ └── vector_input.dart │ │ └── utils │ │ ├── app_logo.dart │ │ ├── body_pages │ │ ├── equation_text_formatter.dart │ │ ├── go_back_button.dart │ │ └── page_title.dart │ │ ├── breakpoints.dart │ │ ├── collapsible.dart │ │ ├── equation_input.dart │ │ ├── equation_scaffold.dart │ │ ├── equation_scaffold │ │ ├── bottom_navigation_bar.dart │ │ ├── bottom_navigation_widget.dart │ │ ├── navigation_item.dart │ │ ├── rail_navigation.dart │ │ ├── rail_navigation_widget.dart │ │ ├── scaffold_contents.dart │ │ └── tabbed_layout.dart │ │ ├── input_kind_dialog_button.dart │ │ ├── no_results.dart │ │ ├── plot_widget │ │ ├── color_area.dart │ │ ├── equation_drawer_widget.dart │ │ ├── equation_painter.dart │ │ └── function_evaluators.dart │ │ ├── result_cards │ │ ├── bool_result_card.dart │ │ ├── colored_text.dart │ │ ├── complex_result_card.dart │ │ ├── message_card.dart │ │ ├── number_printer_extension.dart │ │ ├── polynomial_result_card.dart │ │ └── real_result_card.dart │ │ ├── section_title.dart │ │ └── svg_images │ │ ├── svg_image.dart │ │ └── types │ │ ├── sections_logos.dart │ │ └── vectorial_images.dart │ ├── linux │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ │ ├── CMakeLists.txt │ │ ├── generated_plugin_registrant.cc │ │ ├── generated_plugin_registrant.h │ │ └── generated_plugins.cmake │ ├── main.cc │ ├── my_application.cc │ └── my_application.h │ ├── macos │ ├── .gitignore │ ├── Flutter │ │ ├── Flutter-Debug.xcconfig │ │ ├── Flutter-Release.xcconfig │ │ └── GeneratedPluginRegistrant.swift │ ├── Podfile │ ├── Podfile.lock │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── app_icon_1024.png │ │ │ │ ├── app_icon_128.png │ │ │ │ ├── app_icon_16.png │ │ │ │ ├── app_icon_256.png │ │ │ │ ├── app_icon_32.png │ │ │ │ ├── app_icon_512.png │ │ │ │ └── app_icon_64.png │ │ ├── Base.lproj │ │ │ └── MainMenu.xib │ │ ├── Configs │ │ │ ├── AppInfo.xcconfig │ │ │ ├── Debug.xcconfig │ │ │ ├── Release.xcconfig │ │ │ └── Warnings.xcconfig │ │ ├── DebugProfile.entitlements │ │ ├── Info.plist │ │ ├── MainFlutterWindow.swift │ │ └── Release.entitlements │ └── RunnerTests │ │ └── RunnerTests.swift │ ├── pubspec.yaml │ ├── test │ ├── double_approximation_matcher.dart │ ├── localization │ │ ├── english_strings.dart │ │ ├── french_strings.dart │ │ ├── italian_strings.dart │ │ └── localization_test.dart │ ├── main_test.dart │ ├── routes │ │ ├── error_page_test.dart │ │ ├── goldens │ │ │ ├── error_page.png │ │ │ ├── integral_body_large_screen.png │ │ │ ├── integral_body_large_screen_with_data.png │ │ │ ├── integral_body_small_screen.png │ │ │ ├── integral_body_small_screen_with_data.png │ │ │ ├── nonlinear_body_large_screen.png │ │ │ ├── nonlinear_body_large_screen_with_data.png │ │ │ ├── nonlinear_body_large_screen_with_error.png │ │ │ ├── nonlinear_body_small_screen.png │ │ │ ├── nonlinear_body_small_screen_with_data.png │ │ │ ├── nonlinear_body_small_screen_with_error.png │ │ │ ├── other_body_complex_large_screen.png │ │ │ ├── other_body_complex_small_screen.png │ │ │ ├── other_body_matrix_large_screen.png │ │ │ ├── other_body_matrix_small_screen_part1.png │ │ │ ├── other_body_matrix_small_screen_part2.png │ │ │ ├── polynomial_body_large_screen.png │ │ │ ├── polynomial_body_large_screen_with_data.png │ │ │ ├── polynomial_body_small_screen.png │ │ │ ├── polynomial_body_small_screen_with_data.png │ │ │ ├── system_body_factorization.png │ │ │ ├── system_body_factorization_singular.png │ │ │ ├── system_body_factorization_solution.png │ │ │ ├── system_body_iterative.png │ │ │ ├── system_body_iterative_singular.png │ │ │ ├── system_body_iterative_solution.png │ │ │ ├── system_body_rowreduction.png │ │ │ ├── system_body_rowreduction_singular.png │ │ │ └── system_body_rowreduction_solution.png │ │ ├── home_page │ │ │ ├── card_container_test.dart │ │ │ ├── goldens │ │ │ │ ├── cardcontainer_no_image.png │ │ │ │ ├── cardcontainer_with_image.png │ │ │ │ └── home_contents.png │ │ │ └── home_contents_test.dart │ │ ├── home_page_test.dart │ │ ├── integral_page │ │ │ ├── goldens │ │ │ │ ├── integral_data_input_midpoint.png │ │ │ │ ├── integral_data_input_simpson.png │ │ │ │ └── integral_data_input_trapezoid.png │ │ │ ├── integral_body_test.dart │ │ │ ├── integral_data_input_test.dart │ │ │ ├── integral_mock.dart │ │ │ ├── integral_results_test.dart │ │ │ ├── model │ │ │ │ ├── inherited_integral_test.dart │ │ │ │ ├── integral_result_test.dart │ │ │ │ └── integral_state_test.dart │ │ │ └── utils │ │ │ │ ├── dropdown_selection_test.dart │ │ │ │ ├── goldens │ │ │ │ ├── dropdown_selection_midpoint.png │ │ │ │ ├── dropdown_selection_simpson.png │ │ │ │ ├── dropdown_selection_trapezoid.png │ │ │ │ ├── integral_plot_midpoint.png │ │ │ │ ├── integral_plot_simpson.png │ │ │ │ └── integral_plot_trapezoid.png │ │ │ │ └── integral_plot_test.dart │ │ ├── integral_page_test.dart │ │ ├── mock_wrapper.dart │ │ ├── model │ │ │ ├── dropdown_value │ │ │ │ └── inherited_dropdown_value_test.dart │ │ │ ├── inherited_navigation │ │ │ │ └── inherited_navigation_test.dart │ │ │ ├── number_switcher │ │ │ │ ├── inherited_number_switcher_test.dart │ │ │ │ └── number_switcher_state_test.dart │ │ │ ├── plot_zoom │ │ │ │ ├── inherited_plot_zoom_test.dart │ │ │ │ └── plot_zoom_state_test.dart │ │ │ ├── precision_slider │ │ │ │ ├── inherited_precision_slider.dart │ │ │ │ └── precision_slider_state_test.dart │ │ │ ├── system_text_controllers │ │ │ │ └── inherited_system_text_controllers_test.dart │ │ │ └── text_controllers │ │ │ │ └── inherited_text_controllers_test.dart │ │ ├── nonlinear_page │ │ │ ├── goldens │ │ │ │ ├── nonlinear_data_input_bracketing.png │ │ │ │ └── nonlinear_data_input_single_point.png │ │ │ ├── model │ │ │ │ ├── inherited_nonlinear_test.dart │ │ │ │ ├── nonlinear_result_test.dart │ │ │ │ └── nonlinear_state_test.dart │ │ │ ├── nonlinear_body_test.dart │ │ │ ├── nonlinear_data_input_test.dart │ │ │ ├── nonlinear_mock.dart │ │ │ ├── nonlinear_results_test.dart │ │ │ └── utils │ │ │ │ ├── dropdown_selection_test.dart │ │ │ │ ├── goldens │ │ │ │ ├── dropdown_selection_bracketing.png │ │ │ │ ├── dropdown_selection_single_point.png │ │ │ │ ├── nonlinear_plot_bisection.png │ │ │ │ ├── nonlinear_plot_single_point.png │ │ │ │ └── precision_slider.png │ │ │ │ ├── nonlinear_plot_test.dart │ │ │ │ └── precision_slider_test.dart │ │ ├── nonlinear_page_test.dart │ │ ├── other_page │ │ │ ├── complex_numbers │ │ │ │ ├── complex_analyzer_input_test.dart │ │ │ │ ├── complex_analyzer_result_test.dart │ │ │ │ ├── complex_number_input_test.dart │ │ │ │ └── goldens │ │ │ │ │ ├── complex_analyze_input.png │ │ │ │ │ ├── complex_input_novalues.png │ │ │ │ │ ├── complex_input_values.png │ │ │ │ │ └── complex_output_results.png │ │ │ ├── complex_numbers_body_test.dart │ │ │ ├── complex_numbers_mock.dart │ │ │ ├── matrix │ │ │ │ ├── goldens │ │ │ │ │ ├── matrix_analyze_input_1x1.png │ │ │ │ │ ├── matrix_analyze_input_2x2.png │ │ │ │ │ ├── matrix_analyze_input_3x3.png │ │ │ │ │ ├── matrix_analyze_input_4x4.png │ │ │ │ │ ├── matrix_analyze_results.png │ │ │ │ │ ├── matrix_analyze_results_onecolumn.png │ │ │ │ │ ├── matrix_output_1x1.png │ │ │ │ │ ├── matrix_output_2x2.png │ │ │ │ │ ├── matrix_output_2x2_nodecimals.png │ │ │ │ │ └── matrix_output_3x3.png │ │ │ │ ├── matrix_analyze_input_test.dart │ │ │ │ ├── matrix_analyze_results_test.dart │ │ │ │ └── matrix_output_test.dart │ │ │ ├── matrix_body_test.dart │ │ │ ├── matrix_mock.dart │ │ │ └── model │ │ │ │ ├── inherited_other_test.dart │ │ │ │ ├── other_result_test.dart │ │ │ │ └── other_state_test.dart │ │ ├── other_page_test.dart │ │ ├── polynomial_page │ │ │ ├── goldens │ │ │ │ ├── polynomial_data_input_cubic.png │ │ │ │ ├── polynomial_data_input_linear.png │ │ │ │ ├── polynomial_data_input_quadratic.png │ │ │ │ ├── polynomial_data_input_quartic.png │ │ │ │ ├── polynomial_input_field.png │ │ │ │ └── polynomial_results.png │ │ │ ├── model │ │ │ │ ├── inherited_polynomial_test.dart │ │ │ │ ├── polynomial_result_test.dart │ │ │ │ └── polynomial_state_test.dart │ │ │ ├── polynomial_body_test.dart │ │ │ ├── polynomial_data_input_test.dart │ │ │ ├── polynomial_input_field_test.dart │ │ │ ├── polynomial_mock.dart │ │ │ ├── polynomial_results_test.dart │ │ │ └── utils │ │ │ │ ├── goldens │ │ │ │ ├── no_discriminant.png │ │ │ │ ├── polynomial_discriminant.png │ │ │ │ ├── polynomial_plot_cubic.png │ │ │ │ ├── polynomial_plot_linear.png │ │ │ │ ├── polynomial_plot_quadratic.png │ │ │ │ └── polynomial_plot_quartic.png │ │ │ │ ├── no_discriminant_test.dart │ │ │ │ ├── polynomial_discriminant_test.dart │ │ │ │ └── polynomial_plot_test.dart │ │ ├── polynomial_page_test.dart │ │ ├── system_page │ │ │ ├── goldens │ │ │ │ ├── system_data_input_cholesky.png │ │ │ │ ├── system_data_input_jacobi.png │ │ │ │ ├── system_data_input_lu.png │ │ │ │ ├── system_data_input_row_reduction.png │ │ │ │ ├── system_data_input_sor.png │ │ │ │ ├── system_input_field_noplaceholder.png │ │ │ │ ├── system_input_field_placeholder.png │ │ │ │ ├── system_results_cards.png │ │ │ │ └── system_results_nothing.png │ │ │ ├── model │ │ │ │ ├── inherited_system_test.dart │ │ │ │ ├── system_result_test.dart │ │ │ │ └── system_state_test.dart │ │ │ ├── system_body_test.dart │ │ │ ├── system_data_input_test.dart │ │ │ ├── system_input_field_test.dart │ │ │ ├── system_mock.dart │ │ │ ├── system_results_test.dart │ │ │ └── utils │ │ │ │ ├── dropdown_selection_test.dart │ │ │ │ ├── goldens │ │ │ │ ├── dropdown_input_cholesky.png │ │ │ │ ├── dropdown_input_gauss.png │ │ │ │ ├── dropdown_input_jacobi.png │ │ │ │ ├── dropdown_input_lu.png │ │ │ │ ├── dropdown_input_sor.png │ │ │ │ ├── jacobi_vector_input_1.png │ │ │ │ ├── jacobi_vector_input_2.png │ │ │ │ ├── jacobi_vector_input_3.png │ │ │ │ ├── jacobi_vector_input_4.png │ │ │ │ ├── matrix_input_1.png │ │ │ │ ├── matrix_input_2.png │ │ │ │ ├── matrix_input_3.png │ │ │ │ ├── matrix_input_4.png │ │ │ │ ├── relaxation_factor_input.png │ │ │ │ ├── size_picker_1.png │ │ │ │ ├── size_picker_2.png │ │ │ │ ├── size_picker_3.png │ │ │ │ ├── size_picker_4.png │ │ │ │ ├── vector_input_1.png │ │ │ │ ├── vector_input_2.png │ │ │ │ ├── vector_input_3.png │ │ │ │ └── vector_input_4.png │ │ │ │ ├── jacobi_initial_vector_test.dart │ │ │ │ ├── matrix_input_test.dart │ │ │ │ ├── size_picker_test.dart │ │ │ │ ├── sor_relaxation_factor_test.dart │ │ │ │ └── vector_input_test.dart │ │ ├── system_page_test.dart │ │ └── utils │ │ │ ├── app_logo_test.dart │ │ │ ├── body_pages │ │ │ ├── equation_text_formatter_test.dart │ │ │ ├── go_back_button_test.dart │ │ │ ├── goldens │ │ │ │ ├── equation_text_formatter.png │ │ │ │ ├── go_back_button.png │ │ │ │ ├── go_back_button_pressed.png │ │ │ │ └── page_title.png │ │ │ └── page_title_test.dart │ │ │ ├── breakpoints_test.dart │ │ │ ├── collapsible_test.dart │ │ │ ├── color_area_test.dart │ │ │ ├── equation_input_test.dart │ │ │ ├── equation_scaffold │ │ │ ├── bottom_navigation_bar_test.dart │ │ │ ├── bottom_navigation_widget_test.dart │ │ │ ├── goldens │ │ │ │ ├── bottom_navigation.png │ │ │ │ ├── bottom_navigation_widget.png │ │ │ │ ├── rail_navigation.png │ │ │ │ ├── rail_navigation_widget.png │ │ │ │ └── scaffold_contents.png │ │ │ ├── navigation_item_test.dart │ │ │ ├── rail_navigation_test.dart │ │ │ ├── rail_navigation_widget_test.dart │ │ │ ├── scaffold_contents_test.dart │ │ │ └── tabbed_navigation_test.dart │ │ │ ├── equation_scaffold_test.dart │ │ │ ├── goldens │ │ │ ├── app_logo.png │ │ │ ├── collapsible_collapsed.png │ │ │ ├── collapsible_expanded.png │ │ │ ├── equation_input.png │ │ │ ├── input_kind_button_equations_dialog.png │ │ │ ├── input_kind_button_number_dialog.png │ │ │ ├── input_kind_button_pressed.png │ │ │ ├── no_results.png │ │ │ └── section_title.png │ │ │ ├── input_kind_dialog_button_test.dart │ │ │ ├── no_results_test.dart │ │ │ ├── plot_widget │ │ │ ├── color_area_test.dart │ │ │ ├── equation_drawer_widget_test.dart │ │ │ ├── equation_painter_test.dart │ │ │ ├── function_evaluators_test.dart │ │ │ └── goldens │ │ │ │ ├── equation_drawer_widget.png │ │ │ │ ├── equation_drawer_widget_zoom.png │ │ │ │ ├── equation_painter_area_color.png │ │ │ │ ├── equation_painter_area_color_and_ranges.png │ │ │ │ ├── equation_painter_area_color_and_ranges_swapped.png │ │ │ │ ├── equation_painter_area_color_left_range.png │ │ │ │ ├── equation_painter_area_color_right_range.png │ │ │ │ ├── equation_painter_nonlinear.png │ │ │ │ ├── equation_painter_nonlinear_high.png │ │ │ │ ├── equation_painter_nonlinear_low.png │ │ │ │ ├── equation_painter_polynomial.png │ │ │ │ ├── equation_painter_polynomial_edges.png │ │ │ │ ├── equation_painter_polynomial_high.png │ │ │ │ └── equation_painter_polynomial_low.png │ │ │ ├── result_cards │ │ │ ├── bool_result_card_test.dart │ │ │ ├── colored_text_test.dart │ │ │ ├── complex_result_card_test.dart │ │ │ ├── goldens │ │ │ │ ├── bool_result_card_false.png │ │ │ │ ├── bool_result_card_true.png │ │ │ │ ├── colored_text.png │ │ │ │ ├── complex_result_card.png │ │ │ │ ├── complex_result_card_expanded.png │ │ │ │ ├── complex_result_card_expanded_with_nan.png │ │ │ │ ├── complex_result_card_leading.png │ │ │ │ ├── complex_result_card_leading_trailing.png │ │ │ │ ├── message_card.png │ │ │ │ ├── message_card_long_text.png │ │ │ │ ├── polynomial_result_card_constant.png │ │ │ │ ├── polynomial_result_card_cubic.png │ │ │ │ ├── polynomial_result_card_linear.png │ │ │ │ ├── polynomial_result_card_quadratic.png │ │ │ │ ├── polynomial_result_card_quartic.png │ │ │ │ ├── real_result_card.png │ │ │ │ ├── real_result_card_expanded.png │ │ │ │ ├── real_result_card_expanded_with_nan.png │ │ │ │ └── real_result_card_leading.png │ │ │ ├── message_card_test.dart │ │ │ ├── number_printer_extension_test.dart │ │ │ ├── polynomial_result_card_test.dart │ │ │ └── real_result_card_test.dart │ │ │ ├── section_title_test.dart │ │ │ └── svg_images │ │ │ ├── goldens │ │ │ ├── integral_logo.png │ │ │ ├── nonlinear_logo.png │ │ │ ├── other_logo.png │ │ │ ├── polynomial_logo.png │ │ │ └── system_logo.png │ │ │ ├── section_logos_test.dart │ │ │ └── vectorial_images_test.dart │ └── routes_test.dart │ ├── web │ ├── icons │ │ ├── Icon-192.png │ │ ├── Icon-512.png │ │ ├── Icon-maskable-192.png │ │ ├── Icon-maskable-512.png │ │ ├── favicon-16.png │ │ ├── favicon-192.png │ │ ├── favicon-32.png │ │ └── favicon-96.png │ ├── images │ │ └── circle_logo.svg │ ├── index.html │ ├── manifest.json │ ├── messages.js │ └── styles │ │ └── styles.min.css │ └── windows │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake │ └── runner │ ├── CMakeLists.txt │ ├── Runner.rc │ ├── flutter_window.cpp │ ├── flutter_window.h │ ├── main.cpp │ ├── resource.h │ ├── resources │ └── app_icon.ico │ ├── runner.exe.manifest │ ├── utils.cpp │ ├── utils.h │ ├── win32_window.cpp │ └── win32_window.h ├── lib ├── equations.dart └── src │ ├── algebraic │ ├── algebraic.dart │ ├── types │ │ ├── constant.dart │ │ ├── cubic.dart │ │ ├── durand_kerner.dart │ │ ├── linear.dart │ │ ├── quadratic.dart │ │ └── quartic.dart │ └── utils │ │ ├── algebraic_division.dart │ │ ├── polynomial_long_division.dart │ │ └── sylvester_matrix.dart │ ├── integral │ ├── numerical_integration.dart │ └── types │ │ ├── adaptive_quadrature.dart │ │ ├── intervals_integration.dart │ │ └── intervals_methods │ │ ├── midpoint_rule.dart │ │ ├── simpson_rule.dart │ │ └── trapezoidal_rule.dart │ ├── interpolation │ ├── interpolation.dart │ ├── types │ │ ├── linear_interpolation.dart │ │ ├── newton_interpolation.dart │ │ ├── polynomial_interpolation.dart │ │ └── spline_interpolation.dart │ └── utils │ │ ├── interpolation_node.dart │ │ ├── spline_function.dart │ │ └── spline_functions │ │ ├── linear_spline.dart │ │ └── montone_cubic_spline.dart │ ├── nonlinear │ ├── nonlinear.dart │ └── types │ │ ├── bisection.dart │ │ ├── brent.dart │ │ ├── chords.dart │ │ ├── newton.dart │ │ ├── regula_falsi.dart │ │ ├── riddler.dart │ │ ├── secant.dart │ │ └── steffensen.dart │ ├── system │ ├── system.dart │ ├── types │ │ ├── cholesky.dart │ │ ├── gauss.dart │ │ ├── gauss_seidel.dart │ │ ├── jacobi.dart │ │ ├── lu.dart │ │ └── sor.dart │ └── utils │ │ ├── matrix.dart │ │ └── matrix │ │ ├── complex_matrix.dart │ │ ├── decompositions │ │ ├── decomposition.dart │ │ ├── eigenvalue_decomposition │ │ │ ├── eigen_complex_decomposition.dart │ │ │ ├── eigen_decomposition.dart │ │ │ └── eigen_real_decomposition.dart │ │ ├── qr_decomposition │ │ │ ├── qr_complex_decomposition.dart │ │ │ ├── qr_decomposition.dart │ │ │ └── qr_real_decomposition.dart │ │ └── singular_value_decomposition │ │ │ ├── complex_svd.dart │ │ │ ├── real_svd.dart │ │ │ └── single_value_decomposition.dart │ │ └── real_matrix.dart │ └── utils │ ├── complex │ ├── complex.dart │ └── polar_complex.dart │ ├── exceptions │ ├── exceptions.dart │ └── types │ │ ├── algebraic_exception.dart │ │ ├── complex_exception.dart │ │ ├── interpolation_exception.dart │ │ ├── matrix_exception.dart │ │ ├── nonlinear_exception.dart │ │ ├── numerical_integration_exception.dart │ │ ├── parser_exception.dart │ │ ├── poly_long_division_exception.dart │ │ └── system_solver_exception.dart │ ├── expression_parser.dart │ ├── factorial.dart │ └── math_utils.dart ├── pubspec.yaml └── test ├── algebraic ├── algebraic_test.dart ├── constant_test.dart ├── cubic_test.dart ├── durand_kerner_test.dart ├── linear_test.dart ├── quadratic_test.dart ├── quartic_test.dart └── utils │ ├── algebraic_division_test.dart │ ├── polynomial_long_division_test.dart │ └── sylvester_matrix_test.dart ├── double_approximation_matcher.dart ├── instantiation_test.dart ├── integral ├── adaptive_quadrature_test.dart ├── midpoint_rule_test.dart ├── simpson_rule_test.dart └── trapezoidal_rule_test.dart ├── interpolation ├── linear_interpolation_test.dart ├── newton_interpolation_test.dart ├── polynomial_interpolation_test.dart ├── spline_interpolation_test.dart └── utils │ ├── interpolation_node_test.dart │ ├── linear_spline_test.dart │ ├── monotone_cubic_spline_test.dart │ └── spline_function_test.dart ├── nonlinear ├── bisection_test.dart ├── brent_test.dart ├── chords_test.dart ├── newton_test.dart ├── regula_falsi_test.dart ├── riddler_test.dart ├── secant_test.dart └── steffensen_test.dart ├── system ├── cholesky_test.dart ├── gauss_seidel_test.dart ├── gauss_test.dart ├── jacobi_test.dart ├── lu_test.dart ├── sor_test.dart └── utils │ ├── complex_matrix_test.dart │ ├── decompositions │ ├── eigendecomposition_test.dart │ ├── qr_decomposition_test.dart │ └── single_value_decomposition_test.dart │ └── real_matrix_test.dart └── utils ├── complex ├── complex_test.dart └── polar_complex_test.dart ├── exceptions_test.dart ├── expression_parser_test.dart ├── factorial_test.dart └── math_utils_test.dart /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @albertodev01 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/equations_ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/.github/workflows/equations_ci.yml -------------------------------------------------------------------------------- /.github/workflows/example_web_deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/.github/workflows/example_web_deploy.yml -------------------------------------------------------------------------------- /.github/workflows/integration_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/.github/workflows/integration_tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /assets/circle_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/assets/circle_logo.svg -------------------------------------------------------------------------------- /assets/equations_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/assets/equations_logo.png -------------------------------------------------------------------------------- /assets/equations_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/assets/equations_logo.svg -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/README.md -------------------------------------------------------------------------------- /example/dart_example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/dart_example/.gitignore -------------------------------------------------------------------------------- /example/dart_example/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/dart_example/CHANGELOG.md -------------------------------------------------------------------------------- /example/dart_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/dart_example/README.md -------------------------------------------------------------------------------- /example/dart_example/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: ../../analysis_options.yaml -------------------------------------------------------------------------------- /example/dart_example/bin/equation_solver_cli.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/dart_example/bin/equation_solver_cli.dart -------------------------------------------------------------------------------- /example/dart_example/lib/equation_solver_cli.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/dart_example/lib/equation_solver_cli.dart -------------------------------------------------------------------------------- /example/dart_example/lib/src/output.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/dart_example/lib/src/output.dart -------------------------------------------------------------------------------- /example/dart_example/lib/src/output_writers/error_output.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/dart_example/lib/src/output_writers/error_output.dart -------------------------------------------------------------------------------- /example/dart_example/lib/src/output_writers/integral_output.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/dart_example/lib/src/output_writers/integral_output.dart -------------------------------------------------------------------------------- /example/dart_example/lib/src/output_writers/matrix_output.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/dart_example/lib/src/output_writers/matrix_output.dart -------------------------------------------------------------------------------- /example/dart_example/lib/src/output_writers/nonlinear_output.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/dart_example/lib/src/output_writers/nonlinear_output.dart -------------------------------------------------------------------------------- /example/dart_example/lib/src/output_writers/polynomial_output.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/dart_example/lib/src/output_writers/polynomial_output.dart -------------------------------------------------------------------------------- /example/dart_example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/dart_example/pubspec.yaml -------------------------------------------------------------------------------- /example/dart_example/test/common_process.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/dart_example/test/common_process.dart -------------------------------------------------------------------------------- /example/dart_example/test/error_output_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/dart_example/test/error_output_test.dart -------------------------------------------------------------------------------- /example/dart_example/test/output_printers_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/dart_example/test/output_printers_test.dart -------------------------------------------------------------------------------- /example/flutter_example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/.gitignore -------------------------------------------------------------------------------- /example/flutter_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/README.md -------------------------------------------------------------------------------- /example/flutter_example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/analysis_options.yaml -------------------------------------------------------------------------------- /example/flutter_example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/android/.gitignore -------------------------------------------------------------------------------- /example/flutter_example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/android/app/build.gradle -------------------------------------------------------------------------------- /example/flutter_example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/flutter_example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/flutter_example/android/app/src/main/res/drawable-v21/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/android/app/src/main/res/drawable-v21/background.png -------------------------------------------------------------------------------- /example/flutter_example/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /example/flutter_example/android/app/src/main/res/drawable/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/android/app/src/main/res/drawable/background.png -------------------------------------------------------------------------------- /example/flutter_example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /example/flutter_example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/flutter_example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/flutter_example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/flutter_example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/flutter_example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/flutter_example/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /example/flutter_example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/flutter_example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/flutter_example/android/app/src/main/res/values/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/android/app/src/main/res/values/values-fr/strings.xml -------------------------------------------------------------------------------- /example/flutter_example/android/app/src/main/res/values/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/android/app/src/main/res/values/values-it/strings.xml -------------------------------------------------------------------------------- /example/flutter_example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example/flutter_example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/android/build.gradle -------------------------------------------------------------------------------- /example/flutter_example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/android/gradle.properties -------------------------------------------------------------------------------- /example/flutter_example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/flutter_example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/android/settings.gradle -------------------------------------------------------------------------------- /example/flutter_example/assets/svg/angle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/assets/svg/angle.svg -------------------------------------------------------------------------------- /example/flutter_example/assets/svg/atoms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/assets/svg/atoms.svg -------------------------------------------------------------------------------- /example/flutter_example/assets/svg/axis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/assets/svg/axis.svg -------------------------------------------------------------------------------- /example/flutter_example/assets/svg/function.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/assets/svg/function.svg -------------------------------------------------------------------------------- /example/flutter_example/assets/svg/integral.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/assets/svg/integral.svg -------------------------------------------------------------------------------- /example/flutter_example/assets/svg/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/assets/svg/logo.svg -------------------------------------------------------------------------------- /example/flutter_example/assets/svg/matrix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/assets/svg/matrix.svg -------------------------------------------------------------------------------- /example/flutter_example/assets/svg/plot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/assets/svg/plot.svg -------------------------------------------------------------------------------- /example/flutter_example/assets/svg/plot_opacity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/assets/svg/plot_opacity.svg -------------------------------------------------------------------------------- /example/flutter_example/assets/svg/polynomial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/assets/svg/polynomial.svg -------------------------------------------------------------------------------- /example/flutter_example/assets/svg/solutions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/assets/svg/solutions.svg -------------------------------------------------------------------------------- /example/flutter_example/assets/svg/square-root-simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/assets/svg/square-root-simple.svg -------------------------------------------------------------------------------- /example/flutter_example/assets/svg/square_matrix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/assets/svg/square_matrix.svg -------------------------------------------------------------------------------- /example/flutter_example/assets/svg/tools_imaginary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/assets/svg/tools_imaginary.svg -------------------------------------------------------------------------------- /example/flutter_example/assets/svg/tools_matrix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/assets/svg/tools_matrix.svg -------------------------------------------------------------------------------- /example/flutter_example/assets/svg/url_error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/assets/svg/url_error.svg -------------------------------------------------------------------------------- /example/flutter_example/assets/svg/wrench.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/assets/svg/wrench.svg -------------------------------------------------------------------------------- /example/flutter_example/integration_test/home_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/integration_test/home_page_test.dart -------------------------------------------------------------------------------- /example/flutter_example/integration_test/integral_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/integration_test/integral_page_test.dart -------------------------------------------------------------------------------- /example/flutter_example/integration_test/nonlinear_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/integration_test/nonlinear_page_test.dart -------------------------------------------------------------------------------- /example/flutter_example/integration_test/other_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/integration_test/other_page_test.dart -------------------------------------------------------------------------------- /example/flutter_example/integration_test/polynomial_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/integration_test/polynomial_page_test.dart -------------------------------------------------------------------------------- /example/flutter_example/integration_test/system_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/integration_test/system_page_test.dart -------------------------------------------------------------------------------- /example/flutter_example/integration_test/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/integration_test/utils.dart -------------------------------------------------------------------------------- /example/flutter_example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/.gitignore -------------------------------------------------------------------------------- /example/flutter_example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/flutter_example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /example/flutter_example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /example/flutter_example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Podfile -------------------------------------------------------------------------------- /example/flutter_example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/flutter_example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/flutter_example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/flutter_example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/flutter_example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/flutter_example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/flutter_example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/flutter_example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /example/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /example/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /example/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /example/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /example/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /example/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /example/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /example/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /example/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /example/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /example/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /example/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /example/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /example/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /example/flutter_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /example/flutter_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /example/flutter_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /example/flutter_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /example/flutter_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /example/flutter_example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/flutter_example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/flutter_example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/flutter_example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /example/flutter_example/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /example/flutter_example/l10n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/l10n.yaml -------------------------------------------------------------------------------- /example/flutter_example/lib/localization/l10n/app_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/localization/l10n/app_en.arb -------------------------------------------------------------------------------- /example/flutter_example/lib/localization/l10n/app_fr.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/localization/l10n/app_fr.arb -------------------------------------------------------------------------------- /example/flutter_example/lib/localization/l10n/app_it.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/localization/l10n/app_it.arb -------------------------------------------------------------------------------- /example/flutter_example/lib/localization/localization.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/localization/localization.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/main.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/error_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/error_page.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/home_page.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/home_page/card_containers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/home_page/card_containers.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/home_page/home_contents.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/home_page/home_contents.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/integral_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/integral_page.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/integral_page/integral_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/integral_page/integral_body.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/integral_page/integral_data_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/integral_page/integral_data_input.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/integral_page/integral_results.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/integral_page/integral_results.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/integral_page/model/inherited_integral.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/integral_page/model/inherited_integral.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/integral_page/model/integral_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/integral_page/model/integral_result.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/integral_page/model/integral_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/integral_page/model/integral_state.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/integral_page/utils/dropdown_selection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/integral_page/utils/dropdown_selection.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/integral_page/utils/integral_plot_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/integral_page/utils/integral_plot_widget.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/models/dropdown_value/inherited_dropdown_value.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/models/dropdown_value/inherited_dropdown_value.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/models/inherited_navigation/inherited_navigation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/models/inherited_navigation/inherited_navigation.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/models/number_switcher/inherited_number_switcher.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/models/number_switcher/inherited_number_switcher.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/models/number_switcher/number_switcher_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/models/number_switcher/number_switcher_state.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/models/plot_zoom/inherited_plot_zoom.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/models/plot_zoom/inherited_plot_zoom.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/models/plot_zoom/plot_zoom_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/models/plot_zoom/plot_zoom_state.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/models/precision_slider/inherited_precision_slider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/models/precision_slider/inherited_precision_slider.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/models/precision_slider/precision_slider_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/models/precision_slider/precision_slider_state.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/models/system_text_controllers/system_text_controllers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/models/system_text_controllers/system_text_controllers.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/models/text_controllers/inherited_text_controllers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/models/text_controllers/inherited_text_controllers.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/nonlinear_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/nonlinear_page.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/nonlinear_page/model/inherited_nonlinear.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/nonlinear_page/model/inherited_nonlinear.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/nonlinear_page/model/nonlinear_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/nonlinear_page/model/nonlinear_result.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/nonlinear_page/model/nonlinear_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/nonlinear_page/model/nonlinear_state.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/nonlinear_page/nonlinear_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/nonlinear_page/nonlinear_body.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/nonlinear_page/nonlinear_data_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/nonlinear_page/nonlinear_data_input.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/nonlinear_page/nonlinear_results.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/nonlinear_page/nonlinear_results.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/nonlinear_page/utils/dropdown_selection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/nonlinear_page/utils/dropdown_selection.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/nonlinear_page/utils/nonlinear_plot_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/nonlinear_page/utils/nonlinear_plot_widget.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/nonlinear_page/utils/nonlinear_title_localizer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/nonlinear_page/utils/nonlinear_title_localizer.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/nonlinear_page/utils/precision_slider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/nonlinear_page/utils/precision_slider.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/other_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/other_page.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/other_page/complex_numbers/complex_analyzer_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/other_page/complex_numbers/complex_analyzer_input.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/other_page/complex_numbers/complex_number_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/other_page/complex_numbers/complex_number_input.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/other_page/complex_numbers_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/other_page/complex_numbers_body.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/other_page/matrix/matrix_analyze_results.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/other_page/matrix/matrix_analyze_results.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/other_page/matrix/matrix_analyzer_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/other_page/matrix/matrix_analyzer_input.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/other_page/matrix/matrix_output.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/other_page/matrix/matrix_output.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/other_page/matrix_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/other_page/matrix_body.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/other_page/model/analyzer/analyzer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/other_page/model/analyzer/analyzer.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/other_page/model/analyzer/analyzers/complex_analyzer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/other_page/model/analyzer/analyzers/complex_analyzer.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/other_page/model/analyzer/analyzers/matrix_analyzer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/other_page/model/analyzer/analyzers/matrix_analyzer.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/other_page/model/analyzer/result_wrapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/other_page/model/analyzer/result_wrapper.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/other_page/model/analyzer/wrappers/complex_result_wrapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/other_page/model/analyzer/wrappers/complex_result_wrapper.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/other_page/model/analyzer/wrappers/matrix_result_wrapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/other_page/model/analyzer/wrappers/matrix_result_wrapper.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/other_page/model/inherited_other.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/other_page/model/inherited_other.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/other_page/model/other_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/other_page/model/other_result.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/other_page/model/other_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/other_page/model/other_state.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/polynomial_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/polynomial_page.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/polynomial_page/model/inherited_polynomial.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/polynomial_page/model/inherited_polynomial.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/polynomial_page/model/polynomial_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/polynomial_page/model/polynomial_result.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/polynomial_page/model/polynomial_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/polynomial_page/model/polynomial_state.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/polynomial_page/polynomial_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/polynomial_page/polynomial_body.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/polynomial_page/polynomial_data_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/polynomial_page/polynomial_data_input.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/polynomial_page/polynomial_input_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/polynomial_page/polynomial_input_field.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/polynomial_page/polynomial_results.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/polynomial_page/polynomial_results.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/polynomial_page/utils/no_discriminant.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/polynomial_page/utils/no_discriminant.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/polynomial_page/utils/polynomial_discriminant.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/polynomial_page/utils/polynomial_discriminant.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/polynomial_page/utils/polynomial_plot_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/polynomial_page/utils/polynomial_plot_widget.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/polynomial_page/utils/polynomial_title_localizer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/polynomial_page/utils/polynomial_title_localizer.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/system_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/system_page.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/system_page/model/inherited_system.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/system_page/model/inherited_system.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/system_page/model/system_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/system_page/model/system_result.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/system_page/model/system_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/system_page/model/system_state.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/system_page/system_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/system_page/system_body.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/system_page/system_data_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/system_page/system_data_input.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/system_page/system_input_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/system_page/system_input_field.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/system_page/system_results.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/system_page/system_results.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/system_page/utils/dropdown_selection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/system_page/utils/dropdown_selection.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/system_page/utils/jacobi_initial_vector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/system_page/utils/jacobi_initial_vector.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/system_page/utils/matrix_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/system_page/utils/matrix_input.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/system_page/utils/size_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/system_page/utils/size_picker.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/system_page/utils/sor_relaxation_factor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/system_page/utils/sor_relaxation_factor.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/system_page/utils/vector_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/system_page/utils/vector_input.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/utils/app_logo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/utils/app_logo.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/utils/body_pages/equation_text_formatter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/utils/body_pages/equation_text_formatter.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/utils/body_pages/go_back_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/utils/body_pages/go_back_button.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/utils/body_pages/page_title.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/utils/body_pages/page_title.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/utils/breakpoints.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/utils/breakpoints.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/utils/collapsible.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/utils/collapsible.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/utils/equation_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/utils/equation_input.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/utils/equation_scaffold.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/utils/equation_scaffold.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/utils/equation_scaffold/bottom_navigation_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/utils/equation_scaffold/bottom_navigation_bar.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/utils/equation_scaffold/bottom_navigation_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/utils/equation_scaffold/bottom_navigation_widget.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/utils/equation_scaffold/navigation_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/utils/equation_scaffold/navigation_item.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/utils/equation_scaffold/rail_navigation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/utils/equation_scaffold/rail_navigation.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/utils/equation_scaffold/rail_navigation_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/utils/equation_scaffold/rail_navigation_widget.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/utils/equation_scaffold/scaffold_contents.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/utils/equation_scaffold/scaffold_contents.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/utils/equation_scaffold/tabbed_layout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/utils/equation_scaffold/tabbed_layout.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/utils/input_kind_dialog_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/utils/input_kind_dialog_button.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/utils/no_results.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/utils/no_results.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/utils/plot_widget/color_area.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/utils/plot_widget/color_area.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/utils/plot_widget/equation_drawer_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/utils/plot_widget/equation_drawer_widget.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/utils/plot_widget/equation_painter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/utils/plot_widget/equation_painter.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/utils/plot_widget/function_evaluators.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/utils/plot_widget/function_evaluators.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/utils/result_cards/bool_result_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/utils/result_cards/bool_result_card.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/utils/result_cards/colored_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/utils/result_cards/colored_text.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/utils/result_cards/complex_result_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/utils/result_cards/complex_result_card.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/utils/result_cards/message_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/utils/result_cards/message_card.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/utils/result_cards/number_printer_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/utils/result_cards/number_printer_extension.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/utils/result_cards/polynomial_result_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/utils/result_cards/polynomial_result_card.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/utils/result_cards/real_result_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/utils/result_cards/real_result_card.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/utils/section_title.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/utils/section_title.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/utils/svg_images/svg_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/utils/svg_images/svg_image.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/utils/svg_images/types/sections_logos.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/utils/svg_images/types/sections_logos.dart -------------------------------------------------------------------------------- /example/flutter_example/lib/routes/utils/svg_images/types/vectorial_images.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/lib/routes/utils/svg_images/types/vectorial_images.dart -------------------------------------------------------------------------------- /example/flutter_example/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /example/flutter_example/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/linux/CMakeLists.txt -------------------------------------------------------------------------------- /example/flutter_example/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /example/flutter_example/linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /example/flutter_example/linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /example/flutter_example/linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /example/flutter_example/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/linux/main.cc -------------------------------------------------------------------------------- /example/flutter_example/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/linux/my_application.cc -------------------------------------------------------------------------------- /example/flutter_example/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/linux/my_application.h -------------------------------------------------------------------------------- /example/flutter_example/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/macos/.gitignore -------------------------------------------------------------------------------- /example/flutter_example/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /example/flutter_example/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /example/flutter_example/macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /example/flutter_example/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/macos/Podfile -------------------------------------------------------------------------------- /example/flutter_example/macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/macos/Podfile.lock -------------------------------------------------------------------------------- /example/flutter_example/macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/flutter_example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/flutter_example/macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/flutter_example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/flutter_example/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /example/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /example/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /example/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /example/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /example/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /example/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /example/flutter_example/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /example/flutter_example/macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /example/flutter_example/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /example/flutter_example/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /example/flutter_example/macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /example/flutter_example/macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /example/flutter_example/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/macos/Runner/Info.plist -------------------------------------------------------------------------------- /example/flutter_example/macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /example/flutter_example/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /example/flutter_example/macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /example/flutter_example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/pubspec.yaml -------------------------------------------------------------------------------- /example/flutter_example/test/double_approximation_matcher.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/double_approximation_matcher.dart -------------------------------------------------------------------------------- /example/flutter_example/test/localization/english_strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/localization/english_strings.dart -------------------------------------------------------------------------------- /example/flutter_example/test/localization/french_strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/localization/french_strings.dart -------------------------------------------------------------------------------- /example/flutter_example/test/localization/italian_strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/localization/italian_strings.dart -------------------------------------------------------------------------------- /example/flutter_example/test/localization/localization_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/localization/localization_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/main_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/main_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/error_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/error_page_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/goldens/error_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/goldens/error_page.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/goldens/integral_body_large_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/goldens/integral_body_large_screen.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/goldens/integral_body_large_screen_with_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/goldens/integral_body_large_screen_with_data.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/goldens/integral_body_small_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/goldens/integral_body_small_screen.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/goldens/integral_body_small_screen_with_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/goldens/integral_body_small_screen_with_data.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/goldens/nonlinear_body_large_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/goldens/nonlinear_body_large_screen.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/goldens/nonlinear_body_large_screen_with_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/goldens/nonlinear_body_large_screen_with_data.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/goldens/nonlinear_body_large_screen_with_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/goldens/nonlinear_body_large_screen_with_error.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/goldens/nonlinear_body_small_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/goldens/nonlinear_body_small_screen.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/goldens/nonlinear_body_small_screen_with_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/goldens/nonlinear_body_small_screen_with_data.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/goldens/nonlinear_body_small_screen_with_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/goldens/nonlinear_body_small_screen_with_error.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/goldens/other_body_complex_large_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/goldens/other_body_complex_large_screen.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/goldens/other_body_complex_small_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/goldens/other_body_complex_small_screen.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/goldens/other_body_matrix_large_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/goldens/other_body_matrix_large_screen.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/goldens/other_body_matrix_small_screen_part1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/goldens/other_body_matrix_small_screen_part1.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/goldens/other_body_matrix_small_screen_part2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/goldens/other_body_matrix_small_screen_part2.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/goldens/polynomial_body_large_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/goldens/polynomial_body_large_screen.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/goldens/polynomial_body_large_screen_with_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/goldens/polynomial_body_large_screen_with_data.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/goldens/polynomial_body_small_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/goldens/polynomial_body_small_screen.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/goldens/polynomial_body_small_screen_with_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/goldens/polynomial_body_small_screen_with_data.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/goldens/system_body_factorization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/goldens/system_body_factorization.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/goldens/system_body_factorization_singular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/goldens/system_body_factorization_singular.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/goldens/system_body_factorization_solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/goldens/system_body_factorization_solution.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/goldens/system_body_iterative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/goldens/system_body_iterative.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/goldens/system_body_iterative_singular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/goldens/system_body_iterative_singular.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/goldens/system_body_iterative_solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/goldens/system_body_iterative_solution.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/goldens/system_body_rowreduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/goldens/system_body_rowreduction.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/goldens/system_body_rowreduction_singular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/goldens/system_body_rowreduction_singular.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/goldens/system_body_rowreduction_solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/goldens/system_body_rowreduction_solution.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/home_page/card_container_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/home_page/card_container_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/home_page/goldens/cardcontainer_no_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/home_page/goldens/cardcontainer_no_image.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/home_page/goldens/cardcontainer_with_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/home_page/goldens/cardcontainer_with_image.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/home_page/goldens/home_contents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/home_page/goldens/home_contents.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/home_page/home_contents_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/home_page/home_contents_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/home_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/home_page_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/integral_page/goldens/integral_data_input_midpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/integral_page/goldens/integral_data_input_midpoint.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/integral_page/goldens/integral_data_input_simpson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/integral_page/goldens/integral_data_input_simpson.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/integral_page/goldens/integral_data_input_trapezoid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/integral_page/goldens/integral_data_input_trapezoid.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/integral_page/integral_body_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/integral_page/integral_body_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/integral_page/integral_data_input_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/integral_page/integral_data_input_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/integral_page/integral_mock.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/integral_page/integral_mock.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/integral_page/integral_results_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/integral_page/integral_results_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/integral_page/model/inherited_integral_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/integral_page/model/inherited_integral_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/integral_page/model/integral_result_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/integral_page/model/integral_result_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/integral_page/model/integral_state_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/integral_page/model/integral_state_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/integral_page/utils/dropdown_selection_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/integral_page/utils/dropdown_selection_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/integral_page/utils/goldens/dropdown_selection_midpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/integral_page/utils/goldens/dropdown_selection_midpoint.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/integral_page/utils/goldens/dropdown_selection_simpson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/integral_page/utils/goldens/dropdown_selection_simpson.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/integral_page/utils/goldens/dropdown_selection_trapezoid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/integral_page/utils/goldens/dropdown_selection_trapezoid.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/integral_page/utils/goldens/integral_plot_midpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/integral_page/utils/goldens/integral_plot_midpoint.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/integral_page/utils/goldens/integral_plot_simpson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/integral_page/utils/goldens/integral_plot_simpson.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/integral_page/utils/goldens/integral_plot_trapezoid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/integral_page/utils/goldens/integral_plot_trapezoid.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/integral_page/utils/integral_plot_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/integral_page/utils/integral_plot_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/integral_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/integral_page_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/mock_wrapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/mock_wrapper.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/model/dropdown_value/inherited_dropdown_value_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/model/dropdown_value/inherited_dropdown_value_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/model/inherited_navigation/inherited_navigation_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/model/inherited_navigation/inherited_navigation_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/model/number_switcher/inherited_number_switcher_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/model/number_switcher/inherited_number_switcher_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/model/number_switcher/number_switcher_state_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/model/number_switcher/number_switcher_state_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/model/plot_zoom/inherited_plot_zoom_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/model/plot_zoom/inherited_plot_zoom_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/model/plot_zoom/plot_zoom_state_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/model/plot_zoom/plot_zoom_state_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/model/precision_slider/inherited_precision_slider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/model/precision_slider/inherited_precision_slider.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/model/precision_slider/precision_slider_state_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/model/precision_slider/precision_slider_state_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/model/text_controllers/inherited_text_controllers_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/model/text_controllers/inherited_text_controllers_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/nonlinear_page/goldens/nonlinear_data_input_bracketing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/nonlinear_page/goldens/nonlinear_data_input_bracketing.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/nonlinear_page/goldens/nonlinear_data_input_single_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/nonlinear_page/goldens/nonlinear_data_input_single_point.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/nonlinear_page/model/inherited_nonlinear_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/nonlinear_page/model/inherited_nonlinear_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/nonlinear_page/model/nonlinear_result_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/nonlinear_page/model/nonlinear_result_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/nonlinear_page/model/nonlinear_state_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/nonlinear_page/model/nonlinear_state_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/nonlinear_page/nonlinear_body_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/nonlinear_page/nonlinear_body_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/nonlinear_page/nonlinear_data_input_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/nonlinear_page/nonlinear_data_input_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/nonlinear_page/nonlinear_mock.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/nonlinear_page/nonlinear_mock.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/nonlinear_page/nonlinear_results_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/nonlinear_page/nonlinear_results_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/nonlinear_page/utils/dropdown_selection_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/nonlinear_page/utils/dropdown_selection_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/nonlinear_page/utils/goldens/nonlinear_plot_bisection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/nonlinear_page/utils/goldens/nonlinear_plot_bisection.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/nonlinear_page/utils/goldens/nonlinear_plot_single_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/nonlinear_page/utils/goldens/nonlinear_plot_single_point.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/nonlinear_page/utils/goldens/precision_slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/nonlinear_page/utils/goldens/precision_slider.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/nonlinear_page/utils/nonlinear_plot_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/nonlinear_page/utils/nonlinear_plot_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/nonlinear_page/utils/precision_slider_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/nonlinear_page/utils/precision_slider_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/nonlinear_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/nonlinear_page_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/other_page/complex_numbers/complex_analyzer_input_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/other_page/complex_numbers/complex_analyzer_input_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/other_page/complex_numbers/complex_analyzer_result_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/other_page/complex_numbers/complex_analyzer_result_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/other_page/complex_numbers/complex_number_input_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/other_page/complex_numbers/complex_number_input_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/other_page/complex_numbers/goldens/complex_analyze_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/other_page/complex_numbers/goldens/complex_analyze_input.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/other_page/complex_numbers/goldens/complex_input_novalues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/other_page/complex_numbers/goldens/complex_input_novalues.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/other_page/complex_numbers/goldens/complex_input_values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/other_page/complex_numbers/goldens/complex_input_values.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/other_page/complex_numbers/goldens/complex_output_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/other_page/complex_numbers/goldens/complex_output_results.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/other_page/complex_numbers_body_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/other_page/complex_numbers_body_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/other_page/complex_numbers_mock.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/other_page/complex_numbers_mock.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/other_page/matrix/goldens/matrix_analyze_input_1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/other_page/matrix/goldens/matrix_analyze_input_1x1.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/other_page/matrix/goldens/matrix_analyze_input_2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/other_page/matrix/goldens/matrix_analyze_input_2x2.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/other_page/matrix/goldens/matrix_analyze_input_3x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/other_page/matrix/goldens/matrix_analyze_input_3x3.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/other_page/matrix/goldens/matrix_analyze_input_4x4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/other_page/matrix/goldens/matrix_analyze_input_4x4.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/other_page/matrix/goldens/matrix_analyze_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/other_page/matrix/goldens/matrix_analyze_results.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/other_page/matrix/goldens/matrix_output_1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/other_page/matrix/goldens/matrix_output_1x1.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/other_page/matrix/goldens/matrix_output_2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/other_page/matrix/goldens/matrix_output_2x2.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/other_page/matrix/goldens/matrix_output_2x2_nodecimals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/other_page/matrix/goldens/matrix_output_2x2_nodecimals.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/other_page/matrix/goldens/matrix_output_3x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/other_page/matrix/goldens/matrix_output_3x3.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/other_page/matrix/matrix_analyze_input_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/other_page/matrix/matrix_analyze_input_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/other_page/matrix/matrix_analyze_results_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/other_page/matrix/matrix_analyze_results_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/other_page/matrix/matrix_output_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/other_page/matrix/matrix_output_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/other_page/matrix_body_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/other_page/matrix_body_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/other_page/matrix_mock.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/other_page/matrix_mock.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/other_page/model/inherited_other_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/other_page/model/inherited_other_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/other_page/model/other_result_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/other_page/model/other_result_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/other_page/model/other_state_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/other_page/model/other_state_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/other_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/other_page_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/polynomial_page/goldens/polynomial_data_input_cubic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/polynomial_page/goldens/polynomial_data_input_cubic.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/polynomial_page/goldens/polynomial_data_input_linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/polynomial_page/goldens/polynomial_data_input_linear.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/polynomial_page/goldens/polynomial_data_input_quadratic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/polynomial_page/goldens/polynomial_data_input_quadratic.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/polynomial_page/goldens/polynomial_data_input_quartic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/polynomial_page/goldens/polynomial_data_input_quartic.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/polynomial_page/goldens/polynomial_input_field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/polynomial_page/goldens/polynomial_input_field.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/polynomial_page/goldens/polynomial_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/polynomial_page/goldens/polynomial_results.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/polynomial_page/model/inherited_polynomial_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/polynomial_page/model/inherited_polynomial_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/polynomial_page/model/polynomial_result_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/polynomial_page/model/polynomial_result_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/polynomial_page/model/polynomial_state_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/polynomial_page/model/polynomial_state_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/polynomial_page/polynomial_body_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/polynomial_page/polynomial_body_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/polynomial_page/polynomial_data_input_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/polynomial_page/polynomial_data_input_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/polynomial_page/polynomial_input_field_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/polynomial_page/polynomial_input_field_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/polynomial_page/polynomial_mock.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/polynomial_page/polynomial_mock.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/polynomial_page/polynomial_results_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/polynomial_page/polynomial_results_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/polynomial_page/utils/goldens/no_discriminant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/polynomial_page/utils/goldens/no_discriminant.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/polynomial_page/utils/goldens/polynomial_discriminant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/polynomial_page/utils/goldens/polynomial_discriminant.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/polynomial_page/utils/goldens/polynomial_plot_cubic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/polynomial_page/utils/goldens/polynomial_plot_cubic.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/polynomial_page/utils/goldens/polynomial_plot_linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/polynomial_page/utils/goldens/polynomial_plot_linear.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/polynomial_page/utils/goldens/polynomial_plot_quadratic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/polynomial_page/utils/goldens/polynomial_plot_quadratic.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/polynomial_page/utils/goldens/polynomial_plot_quartic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/polynomial_page/utils/goldens/polynomial_plot_quartic.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/polynomial_page/utils/no_discriminant_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/polynomial_page/utils/no_discriminant_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/polynomial_page/utils/polynomial_discriminant_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/polynomial_page/utils/polynomial_discriminant_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/polynomial_page/utils/polynomial_plot_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/polynomial_page/utils/polynomial_plot_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/polynomial_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/polynomial_page_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/goldens/system_data_input_cholesky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/goldens/system_data_input_cholesky.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/goldens/system_data_input_jacobi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/goldens/system_data_input_jacobi.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/goldens/system_data_input_lu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/goldens/system_data_input_lu.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/goldens/system_data_input_row_reduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/goldens/system_data_input_row_reduction.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/goldens/system_data_input_sor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/goldens/system_data_input_sor.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/goldens/system_input_field_noplaceholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/goldens/system_input_field_noplaceholder.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/goldens/system_input_field_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/goldens/system_input_field_placeholder.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/goldens/system_results_cards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/goldens/system_results_cards.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/goldens/system_results_nothing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/goldens/system_results_nothing.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/model/inherited_system_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/model/inherited_system_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/model/system_result_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/model/system_result_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/model/system_state_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/model/system_state_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/system_body_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/system_body_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/system_data_input_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/system_data_input_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/system_input_field_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/system_input_field_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/system_mock.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/system_mock.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/system_results_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/system_results_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/utils/dropdown_selection_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/utils/dropdown_selection_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/utils/goldens/dropdown_input_cholesky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/utils/goldens/dropdown_input_cholesky.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/utils/goldens/dropdown_input_gauss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/utils/goldens/dropdown_input_gauss.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/utils/goldens/dropdown_input_jacobi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/utils/goldens/dropdown_input_jacobi.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/utils/goldens/dropdown_input_lu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/utils/goldens/dropdown_input_lu.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/utils/goldens/dropdown_input_sor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/utils/goldens/dropdown_input_sor.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/utils/goldens/jacobi_vector_input_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/utils/goldens/jacobi_vector_input_1.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/utils/goldens/jacobi_vector_input_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/utils/goldens/jacobi_vector_input_2.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/utils/goldens/jacobi_vector_input_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/utils/goldens/jacobi_vector_input_3.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/utils/goldens/jacobi_vector_input_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/utils/goldens/jacobi_vector_input_4.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/utils/goldens/matrix_input_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/utils/goldens/matrix_input_1.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/utils/goldens/matrix_input_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/utils/goldens/matrix_input_2.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/utils/goldens/matrix_input_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/utils/goldens/matrix_input_3.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/utils/goldens/matrix_input_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/utils/goldens/matrix_input_4.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/utils/goldens/relaxation_factor_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/utils/goldens/relaxation_factor_input.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/utils/goldens/size_picker_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/utils/goldens/size_picker_1.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/utils/goldens/size_picker_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/utils/goldens/size_picker_2.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/utils/goldens/size_picker_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/utils/goldens/size_picker_3.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/utils/goldens/size_picker_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/utils/goldens/size_picker_4.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/utils/goldens/vector_input_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/utils/goldens/vector_input_1.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/utils/goldens/vector_input_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/utils/goldens/vector_input_2.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/utils/goldens/vector_input_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/utils/goldens/vector_input_3.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/utils/goldens/vector_input_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/utils/goldens/vector_input_4.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/utils/jacobi_initial_vector_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/utils/jacobi_initial_vector_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/utils/matrix_input_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/utils/matrix_input_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/utils/size_picker_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/utils/size_picker_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/utils/sor_relaxation_factor_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/utils/sor_relaxation_factor_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page/utils/vector_input_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page/utils/vector_input_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/system_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/system_page_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/app_logo_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/app_logo_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/body_pages/equation_text_formatter_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/body_pages/equation_text_formatter_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/body_pages/go_back_button_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/body_pages/go_back_button_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/body_pages/goldens/equation_text_formatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/body_pages/goldens/equation_text_formatter.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/body_pages/goldens/go_back_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/body_pages/goldens/go_back_button.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/body_pages/goldens/go_back_button_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/body_pages/goldens/go_back_button_pressed.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/body_pages/goldens/page_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/body_pages/goldens/page_title.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/body_pages/page_title_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/body_pages/page_title_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/breakpoints_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/breakpoints_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/collapsible_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/collapsible_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/color_area_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/color_area_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/equation_input_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/equation_input_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/equation_scaffold/bottom_navigation_bar_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/equation_scaffold/bottom_navigation_bar_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/equation_scaffold/bottom_navigation_widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/equation_scaffold/bottom_navigation_widget_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/equation_scaffold/goldens/bottom_navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/equation_scaffold/goldens/bottom_navigation.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/equation_scaffold/goldens/bottom_navigation_widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/equation_scaffold/goldens/bottom_navigation_widget.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/equation_scaffold/goldens/rail_navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/equation_scaffold/goldens/rail_navigation.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/equation_scaffold/goldens/rail_navigation_widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/equation_scaffold/goldens/rail_navigation_widget.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/equation_scaffold/goldens/scaffold_contents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/equation_scaffold/goldens/scaffold_contents.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/equation_scaffold/navigation_item_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/equation_scaffold/navigation_item_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/equation_scaffold/rail_navigation_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/equation_scaffold/rail_navigation_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/equation_scaffold/rail_navigation_widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/equation_scaffold/rail_navigation_widget_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/equation_scaffold/scaffold_contents_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/equation_scaffold/scaffold_contents_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/equation_scaffold/tabbed_navigation_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/equation_scaffold/tabbed_navigation_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/equation_scaffold_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/equation_scaffold_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/goldens/app_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/goldens/app_logo.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/goldens/collapsible_collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/goldens/collapsible_collapsed.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/goldens/collapsible_expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/goldens/collapsible_expanded.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/goldens/equation_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/goldens/equation_input.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/goldens/input_kind_button_equations_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/goldens/input_kind_button_equations_dialog.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/goldens/input_kind_button_number_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/goldens/input_kind_button_number_dialog.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/goldens/input_kind_button_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/goldens/input_kind_button_pressed.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/goldens/no_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/goldens/no_results.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/goldens/section_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/goldens/section_title.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/input_kind_dialog_button_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/input_kind_dialog_button_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/no_results_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/no_results_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/plot_widget/color_area_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/plot_widget/color_area_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/plot_widget/equation_drawer_widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/plot_widget/equation_drawer_widget_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/plot_widget/equation_painter_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/plot_widget/equation_painter_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/plot_widget/function_evaluators_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/plot_widget/function_evaluators_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/plot_widget/goldens/equation_drawer_widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/plot_widget/goldens/equation_drawer_widget.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/plot_widget/goldens/equation_drawer_widget_zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/plot_widget/goldens/equation_drawer_widget_zoom.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/plot_widget/goldens/equation_painter_area_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/plot_widget/goldens/equation_painter_area_color.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/plot_widget/goldens/equation_painter_nonlinear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/plot_widget/goldens/equation_painter_nonlinear.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/plot_widget/goldens/equation_painter_nonlinear_high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/plot_widget/goldens/equation_painter_nonlinear_high.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/plot_widget/goldens/equation_painter_nonlinear_low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/plot_widget/goldens/equation_painter_nonlinear_low.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/plot_widget/goldens/equation_painter_polynomial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/plot_widget/goldens/equation_painter_polynomial.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/result_cards/bool_result_card_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/result_cards/bool_result_card_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/result_cards/colored_text_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/result_cards/colored_text_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/result_cards/complex_result_card_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/result_cards/complex_result_card_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/result_cards/goldens/bool_result_card_false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/result_cards/goldens/bool_result_card_false.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/result_cards/goldens/bool_result_card_true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/result_cards/goldens/bool_result_card_true.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/result_cards/goldens/colored_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/result_cards/goldens/colored_text.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/result_cards/goldens/complex_result_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/result_cards/goldens/complex_result_card.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/result_cards/goldens/complex_result_card_expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/result_cards/goldens/complex_result_card_expanded.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/result_cards/goldens/complex_result_card_leading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/result_cards/goldens/complex_result_card_leading.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/result_cards/goldens/message_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/result_cards/goldens/message_card.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/result_cards/goldens/message_card_long_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/result_cards/goldens/message_card_long_text.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/result_cards/goldens/polynomial_result_card_cubic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/result_cards/goldens/polynomial_result_card_cubic.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/result_cards/goldens/real_result_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/result_cards/goldens/real_result_card.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/result_cards/goldens/real_result_card_expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/result_cards/goldens/real_result_card_expanded.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/result_cards/goldens/real_result_card_leading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/result_cards/goldens/real_result_card_leading.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/result_cards/message_card_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/result_cards/message_card_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/result_cards/number_printer_extension_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/result_cards/number_printer_extension_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/result_cards/polynomial_result_card_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/result_cards/polynomial_result_card_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/result_cards/real_result_card_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/result_cards/real_result_card_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/section_title_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/section_title_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/svg_images/goldens/integral_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/svg_images/goldens/integral_logo.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/svg_images/goldens/nonlinear_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/svg_images/goldens/nonlinear_logo.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/svg_images/goldens/other_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/svg_images/goldens/other_logo.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/svg_images/goldens/polynomial_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/svg_images/goldens/polynomial_logo.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/svg_images/goldens/system_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/svg_images/goldens/system_logo.png -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/svg_images/section_logos_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/svg_images/section_logos_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes/utils/svg_images/vectorial_images_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes/utils/svg_images/vectorial_images_test.dart -------------------------------------------------------------------------------- /example/flutter_example/test/routes_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/test/routes_test.dart -------------------------------------------------------------------------------- /example/flutter_example/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/web/icons/Icon-192.png -------------------------------------------------------------------------------- /example/flutter_example/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/web/icons/Icon-512.png -------------------------------------------------------------------------------- /example/flutter_example/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /example/flutter_example/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /example/flutter_example/web/icons/favicon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/web/icons/favicon-16.png -------------------------------------------------------------------------------- /example/flutter_example/web/icons/favicon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/web/icons/favicon-192.png -------------------------------------------------------------------------------- /example/flutter_example/web/icons/favicon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/web/icons/favicon-32.png -------------------------------------------------------------------------------- /example/flutter_example/web/icons/favicon-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/web/icons/favicon-96.png -------------------------------------------------------------------------------- /example/flutter_example/web/images/circle_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/web/images/circle_logo.svg -------------------------------------------------------------------------------- /example/flutter_example/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/web/index.html -------------------------------------------------------------------------------- /example/flutter_example/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/web/manifest.json -------------------------------------------------------------------------------- /example/flutter_example/web/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/web/messages.js -------------------------------------------------------------------------------- /example/flutter_example/web/styles/styles.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/web/styles/styles.min.css -------------------------------------------------------------------------------- /example/flutter_example/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/windows/.gitignore -------------------------------------------------------------------------------- /example/flutter_example/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/windows/CMakeLists.txt -------------------------------------------------------------------------------- /example/flutter_example/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /example/flutter_example/windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /example/flutter_example/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /example/flutter_example/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /example/flutter_example/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /example/flutter_example/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/windows/runner/Runner.rc -------------------------------------------------------------------------------- /example/flutter_example/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /example/flutter_example/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /example/flutter_example/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/windows/runner/main.cpp -------------------------------------------------------------------------------- /example/flutter_example/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/windows/runner/resource.h -------------------------------------------------------------------------------- /example/flutter_example/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /example/flutter_example/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /example/flutter_example/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/windows/runner/utils.cpp -------------------------------------------------------------------------------- /example/flutter_example/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/windows/runner/utils.h -------------------------------------------------------------------------------- /example/flutter_example/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /example/flutter_example/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/example/flutter_example/windows/runner/win32_window.h -------------------------------------------------------------------------------- /lib/equations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/equations.dart -------------------------------------------------------------------------------- /lib/src/algebraic/algebraic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/algebraic/algebraic.dart -------------------------------------------------------------------------------- /lib/src/algebraic/types/constant.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/algebraic/types/constant.dart -------------------------------------------------------------------------------- /lib/src/algebraic/types/cubic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/algebraic/types/cubic.dart -------------------------------------------------------------------------------- /lib/src/algebraic/types/durand_kerner.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/algebraic/types/durand_kerner.dart -------------------------------------------------------------------------------- /lib/src/algebraic/types/linear.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/algebraic/types/linear.dart -------------------------------------------------------------------------------- /lib/src/algebraic/types/quadratic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/algebraic/types/quadratic.dart -------------------------------------------------------------------------------- /lib/src/algebraic/types/quartic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/algebraic/types/quartic.dart -------------------------------------------------------------------------------- /lib/src/algebraic/utils/algebraic_division.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/algebraic/utils/algebraic_division.dart -------------------------------------------------------------------------------- /lib/src/algebraic/utils/polynomial_long_division.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/algebraic/utils/polynomial_long_division.dart -------------------------------------------------------------------------------- /lib/src/algebraic/utils/sylvester_matrix.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/algebraic/utils/sylvester_matrix.dart -------------------------------------------------------------------------------- /lib/src/integral/numerical_integration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/integral/numerical_integration.dart -------------------------------------------------------------------------------- /lib/src/integral/types/adaptive_quadrature.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/integral/types/adaptive_quadrature.dart -------------------------------------------------------------------------------- /lib/src/integral/types/intervals_integration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/integral/types/intervals_integration.dart -------------------------------------------------------------------------------- /lib/src/integral/types/intervals_methods/midpoint_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/integral/types/intervals_methods/midpoint_rule.dart -------------------------------------------------------------------------------- /lib/src/integral/types/intervals_methods/simpson_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/integral/types/intervals_methods/simpson_rule.dart -------------------------------------------------------------------------------- /lib/src/integral/types/intervals_methods/trapezoidal_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/integral/types/intervals_methods/trapezoidal_rule.dart -------------------------------------------------------------------------------- /lib/src/interpolation/interpolation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/interpolation/interpolation.dart -------------------------------------------------------------------------------- /lib/src/interpolation/types/linear_interpolation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/interpolation/types/linear_interpolation.dart -------------------------------------------------------------------------------- /lib/src/interpolation/types/newton_interpolation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/interpolation/types/newton_interpolation.dart -------------------------------------------------------------------------------- /lib/src/interpolation/types/polynomial_interpolation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/interpolation/types/polynomial_interpolation.dart -------------------------------------------------------------------------------- /lib/src/interpolation/types/spline_interpolation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/interpolation/types/spline_interpolation.dart -------------------------------------------------------------------------------- /lib/src/interpolation/utils/interpolation_node.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/interpolation/utils/interpolation_node.dart -------------------------------------------------------------------------------- /lib/src/interpolation/utils/spline_function.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/interpolation/utils/spline_function.dart -------------------------------------------------------------------------------- /lib/src/interpolation/utils/spline_functions/linear_spline.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/interpolation/utils/spline_functions/linear_spline.dart -------------------------------------------------------------------------------- /lib/src/interpolation/utils/spline_functions/montone_cubic_spline.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/interpolation/utils/spline_functions/montone_cubic_spline.dart -------------------------------------------------------------------------------- /lib/src/nonlinear/nonlinear.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/nonlinear/nonlinear.dart -------------------------------------------------------------------------------- /lib/src/nonlinear/types/bisection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/nonlinear/types/bisection.dart -------------------------------------------------------------------------------- /lib/src/nonlinear/types/brent.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/nonlinear/types/brent.dart -------------------------------------------------------------------------------- /lib/src/nonlinear/types/chords.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/nonlinear/types/chords.dart -------------------------------------------------------------------------------- /lib/src/nonlinear/types/newton.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/nonlinear/types/newton.dart -------------------------------------------------------------------------------- /lib/src/nonlinear/types/regula_falsi.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/nonlinear/types/regula_falsi.dart -------------------------------------------------------------------------------- /lib/src/nonlinear/types/riddler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/nonlinear/types/riddler.dart -------------------------------------------------------------------------------- /lib/src/nonlinear/types/secant.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/nonlinear/types/secant.dart -------------------------------------------------------------------------------- /lib/src/nonlinear/types/steffensen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/nonlinear/types/steffensen.dart -------------------------------------------------------------------------------- /lib/src/system/system.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/system/system.dart -------------------------------------------------------------------------------- /lib/src/system/types/cholesky.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/system/types/cholesky.dart -------------------------------------------------------------------------------- /lib/src/system/types/gauss.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/system/types/gauss.dart -------------------------------------------------------------------------------- /lib/src/system/types/gauss_seidel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/system/types/gauss_seidel.dart -------------------------------------------------------------------------------- /lib/src/system/types/jacobi.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/system/types/jacobi.dart -------------------------------------------------------------------------------- /lib/src/system/types/lu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/system/types/lu.dart -------------------------------------------------------------------------------- /lib/src/system/types/sor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/system/types/sor.dart -------------------------------------------------------------------------------- /lib/src/system/utils/matrix.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/system/utils/matrix.dart -------------------------------------------------------------------------------- /lib/src/system/utils/matrix/complex_matrix.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/system/utils/matrix/complex_matrix.dart -------------------------------------------------------------------------------- /lib/src/system/utils/matrix/decompositions/decomposition.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/system/utils/matrix/decompositions/decomposition.dart -------------------------------------------------------------------------------- /lib/src/system/utils/matrix/decompositions/eigenvalue_decomposition/eigen_decomposition.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/system/utils/matrix/decompositions/eigenvalue_decomposition/eigen_decomposition.dart -------------------------------------------------------------------------------- /lib/src/system/utils/matrix/decompositions/qr_decomposition/qr_complex_decomposition.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/system/utils/matrix/decompositions/qr_decomposition/qr_complex_decomposition.dart -------------------------------------------------------------------------------- /lib/src/system/utils/matrix/decompositions/qr_decomposition/qr_decomposition.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/system/utils/matrix/decompositions/qr_decomposition/qr_decomposition.dart -------------------------------------------------------------------------------- /lib/src/system/utils/matrix/decompositions/qr_decomposition/qr_real_decomposition.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/system/utils/matrix/decompositions/qr_decomposition/qr_real_decomposition.dart -------------------------------------------------------------------------------- /lib/src/system/utils/matrix/decompositions/singular_value_decomposition/complex_svd.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/system/utils/matrix/decompositions/singular_value_decomposition/complex_svd.dart -------------------------------------------------------------------------------- /lib/src/system/utils/matrix/decompositions/singular_value_decomposition/real_svd.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/system/utils/matrix/decompositions/singular_value_decomposition/real_svd.dart -------------------------------------------------------------------------------- /lib/src/system/utils/matrix/real_matrix.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/system/utils/matrix/real_matrix.dart -------------------------------------------------------------------------------- /lib/src/utils/complex/complex.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/utils/complex/complex.dart -------------------------------------------------------------------------------- /lib/src/utils/complex/polar_complex.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/utils/complex/polar_complex.dart -------------------------------------------------------------------------------- /lib/src/utils/exceptions/exceptions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/utils/exceptions/exceptions.dart -------------------------------------------------------------------------------- /lib/src/utils/exceptions/types/algebraic_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/utils/exceptions/types/algebraic_exception.dart -------------------------------------------------------------------------------- /lib/src/utils/exceptions/types/complex_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/utils/exceptions/types/complex_exception.dart -------------------------------------------------------------------------------- /lib/src/utils/exceptions/types/interpolation_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/utils/exceptions/types/interpolation_exception.dart -------------------------------------------------------------------------------- /lib/src/utils/exceptions/types/matrix_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/utils/exceptions/types/matrix_exception.dart -------------------------------------------------------------------------------- /lib/src/utils/exceptions/types/nonlinear_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/utils/exceptions/types/nonlinear_exception.dart -------------------------------------------------------------------------------- /lib/src/utils/exceptions/types/numerical_integration_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/utils/exceptions/types/numerical_integration_exception.dart -------------------------------------------------------------------------------- /lib/src/utils/exceptions/types/parser_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/utils/exceptions/types/parser_exception.dart -------------------------------------------------------------------------------- /lib/src/utils/exceptions/types/poly_long_division_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/utils/exceptions/types/poly_long_division_exception.dart -------------------------------------------------------------------------------- /lib/src/utils/exceptions/types/system_solver_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/utils/exceptions/types/system_solver_exception.dart -------------------------------------------------------------------------------- /lib/src/utils/expression_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/utils/expression_parser.dart -------------------------------------------------------------------------------- /lib/src/utils/factorial.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/utils/factorial.dart -------------------------------------------------------------------------------- /lib/src/utils/math_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/lib/src/utils/math_utils.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/algebraic/algebraic_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/algebraic/algebraic_test.dart -------------------------------------------------------------------------------- /test/algebraic/constant_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/algebraic/constant_test.dart -------------------------------------------------------------------------------- /test/algebraic/cubic_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/algebraic/cubic_test.dart -------------------------------------------------------------------------------- /test/algebraic/durand_kerner_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/algebraic/durand_kerner_test.dart -------------------------------------------------------------------------------- /test/algebraic/linear_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/algebraic/linear_test.dart -------------------------------------------------------------------------------- /test/algebraic/quadratic_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/algebraic/quadratic_test.dart -------------------------------------------------------------------------------- /test/algebraic/quartic_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/algebraic/quartic_test.dart -------------------------------------------------------------------------------- /test/algebraic/utils/algebraic_division_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/algebraic/utils/algebraic_division_test.dart -------------------------------------------------------------------------------- /test/algebraic/utils/polynomial_long_division_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/algebraic/utils/polynomial_long_division_test.dart -------------------------------------------------------------------------------- /test/algebraic/utils/sylvester_matrix_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/algebraic/utils/sylvester_matrix_test.dart -------------------------------------------------------------------------------- /test/double_approximation_matcher.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/double_approximation_matcher.dart -------------------------------------------------------------------------------- /test/instantiation_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/instantiation_test.dart -------------------------------------------------------------------------------- /test/integral/adaptive_quadrature_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/integral/adaptive_quadrature_test.dart -------------------------------------------------------------------------------- /test/integral/midpoint_rule_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/integral/midpoint_rule_test.dart -------------------------------------------------------------------------------- /test/integral/simpson_rule_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/integral/simpson_rule_test.dart -------------------------------------------------------------------------------- /test/integral/trapezoidal_rule_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/integral/trapezoidal_rule_test.dart -------------------------------------------------------------------------------- /test/interpolation/linear_interpolation_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/interpolation/linear_interpolation_test.dart -------------------------------------------------------------------------------- /test/interpolation/newton_interpolation_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/interpolation/newton_interpolation_test.dart -------------------------------------------------------------------------------- /test/interpolation/polynomial_interpolation_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/interpolation/polynomial_interpolation_test.dart -------------------------------------------------------------------------------- /test/interpolation/spline_interpolation_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/interpolation/spline_interpolation_test.dart -------------------------------------------------------------------------------- /test/interpolation/utils/interpolation_node_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/interpolation/utils/interpolation_node_test.dart -------------------------------------------------------------------------------- /test/interpolation/utils/linear_spline_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/interpolation/utils/linear_spline_test.dart -------------------------------------------------------------------------------- /test/interpolation/utils/monotone_cubic_spline_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/interpolation/utils/monotone_cubic_spline_test.dart -------------------------------------------------------------------------------- /test/interpolation/utils/spline_function_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/interpolation/utils/spline_function_test.dart -------------------------------------------------------------------------------- /test/nonlinear/bisection_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/nonlinear/bisection_test.dart -------------------------------------------------------------------------------- /test/nonlinear/brent_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/nonlinear/brent_test.dart -------------------------------------------------------------------------------- /test/nonlinear/chords_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/nonlinear/chords_test.dart -------------------------------------------------------------------------------- /test/nonlinear/newton_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/nonlinear/newton_test.dart -------------------------------------------------------------------------------- /test/nonlinear/regula_falsi_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/nonlinear/regula_falsi_test.dart -------------------------------------------------------------------------------- /test/nonlinear/riddler_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/nonlinear/riddler_test.dart -------------------------------------------------------------------------------- /test/nonlinear/secant_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/nonlinear/secant_test.dart -------------------------------------------------------------------------------- /test/nonlinear/steffensen_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/nonlinear/steffensen_test.dart -------------------------------------------------------------------------------- /test/system/cholesky_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/system/cholesky_test.dart -------------------------------------------------------------------------------- /test/system/gauss_seidel_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/system/gauss_seidel_test.dart -------------------------------------------------------------------------------- /test/system/gauss_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/system/gauss_test.dart -------------------------------------------------------------------------------- /test/system/jacobi_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/system/jacobi_test.dart -------------------------------------------------------------------------------- /test/system/lu_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/system/lu_test.dart -------------------------------------------------------------------------------- /test/system/sor_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/system/sor_test.dart -------------------------------------------------------------------------------- /test/system/utils/complex_matrix_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/system/utils/complex_matrix_test.dart -------------------------------------------------------------------------------- /test/system/utils/decompositions/eigendecomposition_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/system/utils/decompositions/eigendecomposition_test.dart -------------------------------------------------------------------------------- /test/system/utils/decompositions/qr_decomposition_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/system/utils/decompositions/qr_decomposition_test.dart -------------------------------------------------------------------------------- /test/system/utils/decompositions/single_value_decomposition_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/system/utils/decompositions/single_value_decomposition_test.dart -------------------------------------------------------------------------------- /test/system/utils/real_matrix_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/system/utils/real_matrix_test.dart -------------------------------------------------------------------------------- /test/utils/complex/complex_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/utils/complex/complex_test.dart -------------------------------------------------------------------------------- /test/utils/complex/polar_complex_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/utils/complex/polar_complex_test.dart -------------------------------------------------------------------------------- /test/utils/exceptions_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/utils/exceptions_test.dart -------------------------------------------------------------------------------- /test/utils/expression_parser_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/utils/expression_parser_test.dart -------------------------------------------------------------------------------- /test/utils/factorial_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/utils/factorial_test.dart -------------------------------------------------------------------------------- /test/utils/math_utils_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodev01/equations/HEAD/test/utils/math_utils_test.dart --------------------------------------------------------------------------------