1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//! # The `LLaMaPUn` library in Rust
//! Language and Mathematics Processing and Understanding
//! Common data structures and algorithms for semi-structured NLP on math-rich
//! documents.

#![deny(
  missing_docs,
  trivial_casts,
  trivial_numeric_casts,
  unused_import_braces,
  unused_qualifications
)]

extern crate crypto;
extern crate gnuplot;
#[macro_use]
extern crate lazy_static;
extern crate libc;
extern crate libxml;
extern crate regex;
extern crate rustmorpha;
extern crate senna;
extern crate unidecode;
extern crate walkdir;

#[macro_use]
pub mod util;
pub mod ams;
pub mod data;
pub mod dnm;
pub mod ngrams;
pub mod parallel_data;
pub mod patterns;
pub mod stopwords;
pub mod tokenizer;

pub mod extern_use;