symbolica 2.2.0

A blazing fast computer algebra system
Documentation
use std::sync::Arc;

use symbolica::prelude::*;

fn main() {
    let expr = parse!("x*z+x*(y+2)^-1*(y+z+1)");
    println!("> In: {expr}");

    let expr_yz =
        expr.set_coefficient_ring(&Arc::new(vec![symbol!("y").into(), symbol!("z").into()]));
    println!("> Coefficient ring y,z: {expr_yz}");

    // the coefficient must downgrade from y,z to y
    let expr_y = expr_yz.set_coefficient_ring(&Arc::new(vec![symbol!("y").into()]));
    println!("> Coefficient ring y: {expr_y}");

    // the coefficient must downgrade from y,z to y
    let expr_exp = expr_y.expand();
    println!("> Coefficient ring y after expansion: {expr_exp}");
}