A Rust-based tool for generating Lojban gismu (root words) and lujvo (compound words).
- Generates gismu based on input from transliterations of words in multiple languages
- Creates lujvo using the jvozba algorithm
- Customizable language weighting
- Efficient Rust implementation
-
Ensure you have Rust installed and up to date:
rustup default stable rustup update
-
Clone the repository and build the project:
git clone https://github.com/your-username/vlazba.git cd vlazba cargo build --release
-
The executable will be available at
target/release/vlazba
Basic usage:
./vlazba "<Mandarin> <Hindi> <English> <Spanish> <Russian> <Arabic>"
Example:
./vlazba "uan rakan ekspekt esper predpologa mulud"
Custom weights:
./vlazba -w 0.271,0.170,0.130,0.125,0.104,0.076,0.064,0.060 mandarin english spanish hindi arabic bengali russian portuguese
To create lujvo using the jvozba algorithm:
./vlazba --jvozba "<word1> <word2> <word3>"
./vlazba --jvozba --exp-rafsi "<word1> <word2> <word3>"
Examples:
./vlazba --jvozba "klama klama gasnu"
./vlazba --jvozba --exp-rafsi "corci klama gasnu"
To split lujvo using the jvokaha algorithm:
./vlazba --jvokaha "<lujvo>"
./vlazba --jvokajha --exp-rafsi "<lujvo>"
Examples:
./vlazba --jvozba "klaklagau"
./vlazba --jvozba --exp-rafsi "cocklagau"
-w, --weights
: Specify custom language weights (default: 0.347,0.196,0.160,0.123,0.089,0.085)-s, --shapes
: Define gismu candidate shapes (default: "ccvcv,cvccv")-a, --all-letters
: Use all available letters instead of only those in input words-d, --deduplicate
: Path to existing gismu list for deduplication--jvozba
: Use jvozba function to create lujvo instead of gismu generation--forbid-la-lai-doi
: Forbid 'la', 'lai', 'doi' in lujvo when using jvozba--jvokaha
: Use jvokaha function to split lujvo into components--exp-rafsi
: Include experimental rafsi when generating lujvo
RUST_BACKTRACE=full cargo run -- "uan rakan ekspekt esper predpologa mulud"
This project is a Rust rewrite of the original gimyzba and its Python port. It aims to provide a more efficient and maintainable implementation of the gismu generation algorithm. Additionally it ports jvozba algorithm for getting lujvo creation functionality.
Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the GNU GENERAL PUBLIC LICENSE.