example utils: improve types
This commit is contained in:
parent
1448f31cf4
commit
042fc6353c
4 changed files with 86 additions and 77 deletions
math/radix_transform/src
|
@ -21,28 +21,48 @@ use {
|
|||
async fn main() {
|
||||
let mut td = TypeDict::new();
|
||||
for tn in vec![
|
||||
"MachineWord", "MachineInt", "MachineSlab",
|
||||
"Vec", "NullTerminatedString",
|
||||
"Sequence", "Ascii",
|
||||
"MachineWord", "MachineInt", "MachineSyllab",
|
||||
"Vec", "Stream", "Json",
|
||||
"Sequence", "UTF-8-Char",
|
||||
"PositionalInt", "Digit", "LittleEndian", "BigEndian",
|
||||
"DiffStream", "ℕ"
|
||||
"DiffStream", "ℕ",
|
||||
"$src_radix", "$dst_radix"
|
||||
] { td.add_typename(tn.into()); }
|
||||
|
||||
let radix_types = vec![
|
||||
td.type_term_from_str("( ℕ )").unwrap(),
|
||||
td.type_term_from_str("( PositionalInt 10 LittleEndian )").unwrap(),
|
||||
td.type_term_from_str("( Sequence ( Digit 10 ) )").unwrap(),
|
||||
td.type_term_from_str("( Sequence Ascii )").unwrap(),
|
||||
td.type_term_from_str("( Sequence MachineSlab )").unwrap()
|
||||
td.type_term_from_str("( Sequence UTF-8-Char )").unwrap(),
|
||||
td.type_term_from_str("( Sequence MachineSyllab )").unwrap()
|
||||
];
|
||||
|
||||
let src_types = vec![
|
||||
td.type_term_from_str("( ℕ )").unwrap(),
|
||||
td.type_term_from_str("( PositionalInt $src_radix LittleEndian )").unwrap(),
|
||||
td.type_term_from_str("( Sequence ( Digit $src_radix ) )").unwrap(),
|
||||
td.type_term_from_str("( Sequence MachineInt )").unwrap(),
|
||||
td.type_term_from_str("( DiffStream ( Vec MachineInt ) )").unwrap(),
|
||||
td.type_term_from_str("( Json )").unwrap(),
|
||||
td.type_term_from_str("( Stream UTF-8-Char )").unwrap(),
|
||||
td.type_term_from_str("( Stream MachineSyllab )").unwrap()
|
||||
];
|
||||
|
||||
let dst_types = vec![
|
||||
td.type_term_from_str("( ℕ )").unwrap(),
|
||||
td.type_term_from_str("( PositionalInt $dst_radix LittleEndian )").unwrap(),
|
||||
td.type_term_from_str("( Sequence ( Digit $dst_radix ) )").unwrap(),
|
||||
td.type_term_from_str("( Sequence MachineInt )").unwrap(),
|
||||
td.type_term_from_str("( DiffStream ( Vec MachineInt ) )").unwrap(),
|
||||
td.type_term_from_str("( Json )").unwrap(),
|
||||
td.type_term_from_str("( Stream UTF-8-Char )").unwrap(),
|
||||
td.type_term_from_str("( Stream MachineSyllab )").unwrap()
|
||||
];
|
||||
|
||||
nested::magic_header();
|
||||
eprintln!(" Convert Radix of Positional Integer");
|
||||
nested::magic_header();
|
||||
|
||||
let mut args = std::env::args();
|
||||
args.next().expect("Arg $0 missing!");
|
||||
|
||||
eprintln!("\n$1: src_radix");
|
||||
for t in radix_types.iter() {
|
||||
eprintln!(" {}", td.type_term_to_str(t));
|
||||
|
@ -53,58 +73,29 @@ async fn main() {
|
|||
eprintln!(" {}", td.type_term_to_str(t));
|
||||
}
|
||||
|
||||
eprintln!("\n>0: n");
|
||||
for t in src_types.iter() {
|
||||
eprintln!(" {}", td.type_term_to_str(t));
|
||||
}
|
||||
|
||||
eprintln!("\n<1: n");
|
||||
for t in dst_types.iter() {
|
||||
eprintln!(" {}", td.type_term_to_str(t));
|
||||
}
|
||||
|
||||
nested::magic_header();
|
||||
|
||||
let mut args = std::env::args();
|
||||
args.next().expect("Arg $0 missing!");
|
||||
|
||||
let src_radix_str = args.next().expect("Arg $1 required!");
|
||||
let dst_radix_str = args.next().expect("Arg $2 required!");
|
||||
|
||||
let src_radix = usize::from_str_radix(&src_radix_str, 10).expect("could not parse src_radix");
|
||||
let dst_radix = usize::from_str_radix(&dst_radix_str, 10).expect("could not parse dst_radix");
|
||||
|
||||
let in_types = vec![
|
||||
td.type_term_from_str("( ℕ )").unwrap(),
|
||||
td.type_term_from_str("( PositionalInt )").unwrap()
|
||||
.num_arg(src_radix as i64)
|
||||
.arg(td.type_term_from_str("( LittleEndian )").unwrap())
|
||||
.clone(),
|
||||
|
||||
td.type_term_from_str("( Sequence )").unwrap()
|
||||
.arg(
|
||||
td.type_term_from_str("( Digit )").unwrap()
|
||||
.num_arg(src_radix as i64).clone()
|
||||
)
|
||||
.clone(),
|
||||
|
||||
td.type_term_from_str("( Sequence MachineInt )").unwrap(),
|
||||
td.type_term_from_str("( DiffStream ( Vec MachineInt ) )").unwrap(),
|
||||
];
|
||||
|
||||
let out_types = vec![
|
||||
td.type_term_from_str("( ℕ )").unwrap(),
|
||||
td.type_term_from_str("( PositionalInt )").unwrap()
|
||||
.num_arg(dst_radix as i64)
|
||||
.arg(td.type_term_from_str("( LittleEndian )").unwrap()).clone(),
|
||||
|
||||
td.type_term_from_str("( Sequence )").unwrap()
|
||||
.arg(
|
||||
td.type_term_from_str("( Digit )").unwrap()
|
||||
.num_arg(dst_radix as i64).clone()
|
||||
)
|
||||
.clone(),
|
||||
|
||||
td.type_term_from_str("( Sequence MachineInt )").unwrap(),
|
||||
td.type_term_from_str("( DiffStream ( Vec MachineInt ) )").unwrap(),
|
||||
];
|
||||
|
||||
eprintln!("\n>0: n");
|
||||
for t in in_types.iter() {
|
||||
eprintln!(" {}", td.type_term_to_str(t));
|
||||
}
|
||||
|
||||
eprintln!("\n<1: n");
|
||||
for t in out_types.iter() {
|
||||
eprintln!(" {}", td.type_term_to_str(t));
|
||||
}
|
||||
|
||||
nested::magic_header();
|
||||
assert!(src_radix > 1);
|
||||
assert!(dst_radix > 1);
|
||||
|
||||
let src_digits_port = ViewPort::new();
|
||||
let dst_digits_port = ViewPort::new();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue