Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mathematicator-core/search

Modular search engine layer that calls its sublayers and creates user interface.
https://github.com/mathematicator-core/search

math mathematicator mathematics search

Last synced: 21 days ago
JSON representation

Modular search engine layer that calls its sublayers and creates user interface.

Awesome Lists containing this project

README

        


Mathematicator Search





[![Integrity check](https://github.com/mathematicator-core/search/workflows/Integrity%20check/badge.svg)](https://github.com/mathematicator-core/search/actions?query=workflow%3A%22Integrity+check%22)
[![codecov](https://codecov.io/gh/mathematicator-core/search/branch/master/graph/badge.svg)](https://codecov.io/gh/mathematicator-core/search)
[![Latest Stable Version](https://poser.pugx.org/mathematicator-core/search/v/stable)](https://packagist.org/packages/mathematicator-core/search)
[![Latest Unstable Version](https://poser.pugx.org/mathematicator-core/search/v/unstable)](https://packagist.org/packages/mathematicator-core/search)
[![License: MIT](https://img.shields.io/badge/License-MIT-brightgreen.svg)](./LICENSE)
[![PHPStan Enabled](https://img.shields.io/badge/PHPStan-enabled%20L8-brightgreen.svg?style=flat)](https://phpstan.org/)

This is an official version of Mathematicator/VikiTron math search engine for computing your math problems.

Online demo: http://vikitron.com

Developed by [Baraja](https://baraja.cz)

## Mathematicator Framework tools structure

The biggest advantage is that you can choose which layer best fits
your needs and start build on the top of it, immediately, without the need
to create everything by yourself. Our tools are tested for bugs
and tuned for performance, so you can save a significant amount
of your time, money, and effort.

Framework tend to be modular as much as possible, so you should be able
to create an extension on each layer and its sublayers.

**Mathematicator framework layers** ordered from the most concrete
one to the most abstract one:





Search




Modular search engine layer that calls its sublayers
and creates user interface.






Vizualizator




Elegant graphic visualizer that can render to
SVG, PNG, JPG and Base64.

Extensions:


Mandelbrot set generator








Calculator




Modular advance calculations layer.


Extensions:


Integral Solver
,

Statistics








Engine




Core logic layer that maintains basic controllers,
DAOs, translator, common exceptions, routing etc.






Tokenizer




Tokenizer that can convert string (user input / LaTeX) to numbers
and operators.






Numbers




Fast & secure storage for numbers with arbitrary precision.
It supports Human string and LaTeX output and basic conversions.

**Third-party packages:**

⚠️ Not guaranteed!





REST API




Install the whole pack as a REST API service
on your server (Docker ready) or
access it via public cloud REST API.

## Contribution

> Please help to improve this documentation by sending a Pull request.

### Tests

All new contributions should have its unit tests in `/tests` directory.

Before you send a PR, please, check all tests pass.

This package uses [Nette Tester](https://tester.nette.org/). You can run tests via command:
```bash
composer test
````

Before PR, please run complete code check via command:
```bash
composer cs:install # only first time
composer fix # otherwise pre-commit hook can fail
````