2024-08-04 23:23:20 +02:00
|
|
|
|
use {
|
|
|
|
|
crate::{
|
|
|
|
|
TypeTerm, TypeID,
|
|
|
|
|
unification::UnificationProblem,
|
|
|
|
|
},
|
|
|
|
|
std::collections::HashMap
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
//<<<<>>>><<>><><<>><<<*>>><<>><><<>><<<<>>>>\\
|
|
|
|
|
|
2024-08-05 02:54:35 +02:00
|
|
|
|
#[derive(Clone, PartialEq, Eq, Debug)]
|
2024-08-04 23:23:20 +02:00
|
|
|
|
pub struct MorphismType {
|
|
|
|
|
pub src_type: TypeTerm,
|
|
|
|
|
pub dst_type: TypeTerm,
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-05 02:54:35 +02:00
|
|
|
|
pub trait Morphism : Sized {
|
|
|
|
|
fn get_type(&self) -> MorphismType;
|
|
|
|
|
fn list_map_morphism(&self, list_typeid: TypeID) -> Option< Self >;
|
2024-08-11 22:50:48 +02:00
|
|
|
|
|
|
|
|
|
fn weight(&self) -> u64 {
|
|
|
|
|
1
|
|
|
|
|
}
|
2024-08-05 02:54:35 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
|
pub struct MorphismBase<M: Morphism + Clone> {
|
|
|
|
|
morphisms: Vec< M >,
|
2024-08-04 23:23:20 +02:00
|
|
|
|
list_typeid: TypeID
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//<<<<>>>><<>><><<>><<<*>>><<>><><<>><<<<>>>>\\
|
|
|
|
|
|
|
|
|
|
impl MorphismType {
|
2024-08-05 02:54:35 +02:00
|
|
|
|
pub fn normalize(self) -> Self {
|
2024-08-04 23:23:20 +02:00
|
|
|
|
MorphismType {
|
|
|
|
|
src_type: self.src_type.normalize(),
|
|
|
|
|
dst_type: self.dst_type.normalize()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//<<<<>>>><<>><><<>><<<*>>><<>><><<>><<<<>>>>\\
|
|
|
|
|
|
2024-08-05 02:54:35 +02:00
|
|
|
|
impl<M: Morphism + Clone> MorphismBase<M> {
|
2024-08-04 23:47:59 +02:00
|
|
|
|
pub fn new(list_typeid: TypeID) -> Self {
|
2024-08-04 23:23:20 +02:00
|
|
|
|
MorphismBase {
|
|
|
|
|
morphisms: Vec::new(),
|
2024-08-04 23:47:59 +02:00
|
|
|
|
list_typeid
|
2024-08-04 23:23:20 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-05 02:54:35 +02:00
|
|
|
|
pub fn add_morphism(&mut self, m: M) {
|
|
|
|
|
self.morphisms.push( m );
|
2024-08-04 23:23:20 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn enum_morphisms(&self, src_type: &TypeTerm)
|
|
|
|
|
-> Vec< (HashMap<TypeID, TypeTerm>, TypeTerm) >
|
|
|
|
|
{
|
|
|
|
|
let mut dst_types = Vec::new();
|
|
|
|
|
|
|
|
|
|
// first enumerate all "direct" morphisms,
|
2024-08-05 02:54:35 +02:00
|
|
|
|
for m in self.morphisms.iter() {
|
2024-08-04 23:23:20 +02:00
|
|
|
|
if let Ok(σ) = crate::unification::unify(
|
2024-08-05 02:54:35 +02:00
|
|
|
|
&m.get_type().src_type,
|
2024-08-04 23:23:20 +02:00
|
|
|
|
&src_type.clone().normalize()
|
|
|
|
|
) {
|
|
|
|
|
let dst_type =
|
2024-08-05 02:54:35 +02:00
|
|
|
|
m.get_type().dst_type.clone()
|
|
|
|
|
.apply_substitution( &|x| σ.get(x).cloned() )
|
|
|
|
|
.clone();
|
2024-08-04 23:23:20 +02:00
|
|
|
|
|
|
|
|
|
dst_types.push( (σ, dst_type) );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ..then all "list-map" morphisms.
|
|
|
|
|
// Check if we have a List type, and if so, see what the Item type is
|
|
|
|
|
|
|
|
|
|
// TODO: function for generating fresh variables
|
|
|
|
|
let item_variable = TypeID::Var(100);
|
|
|
|
|
|
|
|
|
|
if let Ok(σ) = crate::unification::unify(
|
|
|
|
|
&TypeTerm::App(vec![
|
|
|
|
|
TypeTerm::TypeID(self.list_typeid),
|
|
|
|
|
TypeTerm::TypeID(item_variable)
|
|
|
|
|
]),
|
|
|
|
|
&src_type.clone().param_normalize(),
|
|
|
|
|
) {
|
|
|
|
|
let src_item_type = σ.get(&item_variable).unwrap().clone();
|
|
|
|
|
|
|
|
|
|
for (γ, dst_item_type) in self.enum_morphisms( &src_item_type ) {
|
|
|
|
|
let dst_type =
|
|
|
|
|
TypeTerm::App(vec![
|
|
|
|
|
TypeTerm::TypeID(self.list_typeid),
|
|
|
|
|
dst_item_type.clone()
|
|
|
|
|
.apply_substitution(
|
|
|
|
|
&|x| γ.get(x).cloned()
|
|
|
|
|
).clone()
|
|
|
|
|
]).normalize();
|
|
|
|
|
|
|
|
|
|
dst_types.push( (γ.clone(), dst_type) );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dst_types
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn enum_morphisms_with_subtyping(&self, src_type: &TypeTerm)
|
|
|
|
|
-> Vec< (TypeTerm, TypeTerm) >
|
|
|
|
|
{
|
|
|
|
|
let mut src_lnf = src_type.clone().get_lnf_vec();
|
|
|
|
|
let mut halo_lnf = vec![];
|
|
|
|
|
let mut dst_types = Vec::new();
|
|
|
|
|
|
|
|
|
|
while src_lnf.len() > 0 {
|
|
|
|
|
let src_type = TypeTerm::Ladder( src_lnf.clone() );
|
|
|
|
|
let halo_type = TypeTerm::Ladder( halo_lnf.clone() );
|
|
|
|
|
|
|
|
|
|
for (σ, t) in self.enum_morphisms( &src_type ) {
|
|
|
|
|
dst_types.push(
|
|
|
|
|
(halo_type.clone()
|
|
|
|
|
.apply_substitution(
|
|
|
|
|
&|x| σ.get(x).cloned()
|
|
|
|
|
).clone(),
|
|
|
|
|
t.clone()
|
|
|
|
|
.apply_substitution(
|
|
|
|
|
&|x| σ.get(x).cloned()
|
|
|
|
|
).clone()
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// continue with next supertype
|
|
|
|
|
halo_lnf.push(src_lnf.remove(0));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dst_types
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-11 22:50:48 +02:00
|
|
|
|
/* try to find shortest morphism-path for a given type
|
2024-08-04 23:23:20 +02:00
|
|
|
|
*/
|
|
|
|
|
pub fn find_morphism_path(&self, ty: MorphismType)
|
|
|
|
|
-> Option< Vec<TypeTerm> >
|
|
|
|
|
{
|
|
|
|
|
let ty = ty.normalize();
|
2024-08-11 22:50:48 +02:00
|
|
|
|
|
2024-08-04 23:23:20 +02:00
|
|
|
|
let mut queue = vec![
|
2024-08-11 22:50:48 +02:00
|
|
|
|
(0, vec![ ty.src_type.clone().normalize() ])
|
2024-08-04 23:23:20 +02:00
|
|
|
|
];
|
|
|
|
|
|
2024-08-11 22:50:48 +02:00
|
|
|
|
while ! queue.is_empty() {
|
|
|
|
|
queue.sort_by( |&(w1,_),&(w2,_)| w2.cmp(&w1));
|
2024-08-04 23:23:20 +02:00
|
|
|
|
|
2024-08-11 22:50:48 +02:00
|
|
|
|
if let Some((current_weight, current_path)) = queue.pop() {
|
|
|
|
|
let current_type = current_path.last().unwrap();
|
2024-08-04 23:23:20 +02:00
|
|
|
|
|
|
|
|
|
for (h, t) in self.enum_morphisms_with_subtyping(¤t_type) {
|
|
|
|
|
let tt = TypeTerm::Ladder( vec![ h, t ] ).normalize();
|
|
|
|
|
|
2024-08-11 22:50:48 +02:00
|
|
|
|
if ! current_path.contains( &tt ) {
|
2024-08-04 23:23:20 +02:00
|
|
|
|
let unification_result = crate::unification::unify(&tt, &ty.dst_type);
|
|
|
|
|
|
2024-08-11 22:50:48 +02:00
|
|
|
|
let morphism_weight = 1;
|
|
|
|
|
/*
|
|
|
|
|
{
|
|
|
|
|
self.find_morphism( &tt ).unwrap().0.get_weight()
|
|
|
|
|
};
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
let new_weight = current_weight + morphism_weight;
|
|
|
|
|
let mut new_path = current_path.clone();
|
2024-08-04 23:23:20 +02:00
|
|
|
|
new_path.push( tt );
|
|
|
|
|
|
|
|
|
|
if let Ok(σ) = unification_result {
|
|
|
|
|
new_path = new_path.into_iter().map(
|
|
|
|
|
|mut t: TypeTerm| t.apply_substitution(&|x| σ.get(x).cloned()).clone()
|
|
|
|
|
).collect::<Vec<TypeTerm>>();
|
|
|
|
|
return Some(new_path);
|
|
|
|
|
} else {
|
2024-08-11 22:50:48 +02:00
|
|
|
|
queue.push( (new_weight, new_path) );
|
2024-08-04 23:23:20 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-05 02:54:35 +02:00
|
|
|
|
pub fn find_morphism(&self, ty: &MorphismType)
|
|
|
|
|
-> Option< ( M, HashMap<TypeID, TypeTerm> ) > {
|
|
|
|
|
|
|
|
|
|
// try list-map morphism
|
|
|
|
|
if let Ok(σ) = UnificationProblem::new(vec![
|
|
|
|
|
(ty.src_type.clone().param_normalize(), TypeTerm::App(vec![ TypeTerm::TypeID(self.list_typeid), TypeTerm::TypeID(TypeID::Var(100)) ])),
|
|
|
|
|
(ty.dst_type.clone().param_normalize(), TypeTerm::App(vec![ TypeTerm::TypeID(self.list_typeid), TypeTerm::TypeID(TypeID::Var(101)) ])),
|
|
|
|
|
]).solve() {
|
|
|
|
|
|
|
|
|
|
// TODO: use real fresh variable names
|
|
|
|
|
let item_morph_type = MorphismType {
|
|
|
|
|
src_type: σ.get(&TypeID::Var(100)).unwrap().clone(),
|
|
|
|
|
dst_type: σ.get(&TypeID::Var(101)).unwrap().clone(),
|
|
|
|
|
}.normalize();
|
|
|
|
|
|
|
|
|
|
if let Some((m, σ)) = self.find_morphism( &item_morph_type ) {
|
|
|
|
|
if let Some(list_morph) = m.list_map_morphism( self.list_typeid ) {
|
|
|
|
|
return Some( (list_morph, σ) );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-08-04 23:23:20 +02:00
|
|
|
|
|
2024-08-05 02:54:35 +02:00
|
|
|
|
// otherwise
|
|
|
|
|
for m in self.morphisms.iter() {
|
|
|
|
|
let unification_problem = UnificationProblem::new(
|
|
|
|
|
vec![
|
|
|
|
|
( ty.src_type.clone().normalize(), m.get_type().src_type.clone() ),
|
|
|
|
|
( ty.dst_type.clone().normalize(), m.get_type().dst_type.clone() )
|
|
|
|
|
]
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
let unification_result = unification_problem.solve();
|
|
|
|
|
if let Ok(σ) = unification_result {
|
|
|
|
|
return Some((m.clone(), σ));
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-08-04 23:23:20 +02:00
|
|
|
|
|
|
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn find_morphism_with_subtyping(&self, ty: &MorphismType)
|
2024-08-05 02:54:35 +02:00
|
|
|
|
-> Option<( M, TypeTerm, HashMap<TypeID, TypeTerm> )> {
|
|
|
|
|
let mut src_lnf = ty.src_type.clone().get_lnf_vec();
|
|
|
|
|
let mut dst_lnf = ty.dst_type.clone().get_lnf_vec();
|
|
|
|
|
let mut halo = vec![];
|
|
|
|
|
|
|
|
|
|
while src_lnf.len() > 0 && dst_lnf.len() > 0 {
|
|
|
|
|
if let Some((m, σ)) = self.find_morphism(&MorphismType{
|
|
|
|
|
src_type: TypeTerm::Ladder(src_lnf.clone()),
|
|
|
|
|
dst_type: TypeTerm::Ladder(dst_lnf.clone())
|
|
|
|
|
}) {
|
2024-08-06 15:37:23 +02:00
|
|
|
|
halo.push(src_lnf.get(0).unwrap().clone());
|
|
|
|
|
return Some((m,
|
|
|
|
|
TypeTerm::Ladder(halo).apply_substitution(&|x| σ.get(x).cloned()).clone(),
|
|
|
|
|
σ));
|
2024-08-05 02:54:35 +02:00
|
|
|
|
} else {
|
|
|
|
|
if src_lnf[0] == dst_lnf[0] {
|
|
|
|
|
src_lnf.remove(0);
|
|
|
|
|
halo.push(dst_lnf.remove(0));
|
|
|
|
|
} else {
|
|
|
|
|
return None;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-08-04 23:23:20 +02:00
|
|
|
|
|
|
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//<<<<>>>><<>><><<>><<<*>>><<>><><<>><<<<>>>>\\
|
|
|
|
|
|