hugr_core/hugr.rs
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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640
//! The Hugr data structure, and its basic component handles.
pub mod hugrmut;
pub(crate) mod ident;
pub mod internal;
pub mod rewrite;
pub mod serialize;
pub mod validate;
pub mod views;
use std::collections::VecDeque;
use std::io::Read;
use std::iter;
pub(crate) use self::hugrmut::HugrMut;
pub use self::validate::ValidationError;
pub use ident::{IdentList, InvalidIdentifier};
pub use rewrite::{Rewrite, SimpleReplacement, SimpleReplacementError};
use portgraph::multiportgraph::MultiPortGraph;
use portgraph::{Hierarchy, PortMut, PortView, UnmanagedDenseMap};
use thiserror::Error;
pub use self::views::{HugrView, RootTagged};
use crate::core::NodeIndex;
use crate::extension::resolution::{
resolve_op_extensions, resolve_op_types_extensions, ExtensionResolutionError,
WeakExtensionRegistry,
};
use crate::extension::{ExtensionRegistry, ExtensionSet, TO_BE_INFERRED};
use crate::ops::{OpTag, OpTrait};
pub use crate::ops::{OpType, DEFAULT_OPTYPE};
use crate::{Direction, Node};
/// The Hugr data structure.
#[derive(Clone, Debug, PartialEq)]
pub struct Hugr {
/// The graph encoding the adjacency structure of the HUGR.
graph: MultiPortGraph,
/// The node hierarchy.
hierarchy: Hierarchy,
/// The single root node in the hierarchy.
root: portgraph::NodeIndex,
/// Operation types for each node.
op_types: UnmanagedDenseMap<portgraph::NodeIndex, OpType>,
/// Node metadata
metadata: UnmanagedDenseMap<portgraph::NodeIndex, Option<NodeMetadataMap>>,
/// Extensions used by the operations in the Hugr.
extensions: ExtensionRegistry,
}
impl Default for Hugr {
fn default() -> Self {
Self::new(crate::ops::Module::new())
}
}
impl AsRef<Hugr> for Hugr {
fn as_ref(&self) -> &Hugr {
self
}
}
impl AsMut<Hugr> for Hugr {
fn as_mut(&mut self) -> &mut Hugr {
self
}
}
/// Arbitrary metadata entry for a node.
///
/// Each entry is associated to a string key.
pub type NodeMetadata = serde_json::Value;
/// The container of all the metadata entries for a node.
pub type NodeMetadataMap = serde_json::Map<String, NodeMetadata>;
/// Public API for HUGRs.
impl Hugr {
/// Create a new Hugr, with a single root node.
pub fn new(root_node: impl Into<OpType>) -> Self {
Self::with_capacity(root_node.into(), 0, 0)
}
/// Load a Hugr from a json reader.
///
/// Validates the Hugr against the provided extension registry, ensuring all
/// operations are resolved.
///
/// If the feature `extension_inference` is enabled, we will ensure every function
/// correctly specifies the extensions required by its contained ops.
pub fn load_json(
reader: impl Read,
extension_registry: &ExtensionRegistry,
) -> Result<Self, LoadHugrError> {
let mut hugr: Hugr = serde_json::from_reader(reader)?;
hugr.resolve_extension_defs(extension_registry)?;
hugr.validate_no_extensions()?;
if cfg!(feature = "extension_inference") {
hugr.infer_extensions(false)?;
hugr.validate_extensions()?;
}
Ok(hugr)
}
/// Infers an extension-delta for any non-function container node
/// whose current [extension_delta] contains [TO_BE_INFERRED]. The inferred delta
/// will be the smallest delta compatible with its children and that includes any
/// other [ExtensionId]s in the current delta.
///
/// If `remove` is true, for such container nodes *without* [TO_BE_INFERRED],
/// ExtensionIds are removed from the delta if they are *not* used by any child node.
///
/// The non-function container nodes are:
/// [Case], [CFG], [Conditional], [DataflowBlock], [DFG], [TailLoop]
///
/// [Case]: crate::ops::Case
/// [CFG]: crate::ops::CFG
/// [Conditional]: crate::ops::Conditional
/// [DataflowBlock]: crate::ops::DataflowBlock
/// [DFG]: crate::ops::DFG
/// [TailLoop]: crate::ops::TailLoop
/// [extension_delta]: crate::ops::OpType::extension_delta
/// [ExtensionId]: crate::extension::ExtensionId
pub fn infer_extensions(&mut self, remove: bool) -> Result<(), ExtensionError> {
fn delta_mut(optype: &mut OpType) -> Option<&mut ExtensionSet> {
match optype {
OpType::DFG(dfg) => Some(&mut dfg.signature.runtime_reqs),
OpType::DataflowBlock(dfb) => Some(&mut dfb.extension_delta),
OpType::TailLoop(tl) => Some(&mut tl.extension_delta),
OpType::CFG(cfg) => Some(&mut cfg.signature.runtime_reqs),
OpType::Conditional(c) => Some(&mut c.extension_delta),
OpType::Case(c) => Some(&mut c.signature.runtime_reqs),
//OpType::Lift(_) // Not ATM: only a single element, and we expect Lift to be removed
//OpType::FuncDefn(_) // Not at present due to the possibility of recursion
_ => None,
}
}
fn infer(h: &mut Hugr, node: Node, remove: bool) -> Result<ExtensionSet, ExtensionError> {
let mut child_sets = h
.children(node)
.collect::<Vec<_>>() // Avoid borrowing h over recursive call
.into_iter()
.map(|ch| Ok((ch, infer(h, ch, remove)?)))
.collect::<Result<Vec<_>, _>>()?;
let Some(es) = delta_mut(h.op_types.get_mut(node.pg_index())) else {
return Ok(h.get_optype(node).extension_delta());
};
if es.contains(&TO_BE_INFERRED) {
// Do not remove anything from current delta - any other elements are a lower bound
child_sets.push((node, es.clone())); // "child_sets" now misnamed but we discard fst
} else if remove {
child_sets.iter().try_for_each(|(ch, ch_exts)| {
if !es.is_superset(ch_exts) {
return Err(ExtensionError {
parent: node,
parent_extensions: es.clone(),
child: *ch,
child_extensions: ch_exts.clone(),
});
}
Ok(())
})?;
} else {
return Ok(es.clone()); // Can't neither add nor remove, so nothing to do
}
let merged = ExtensionSet::union_over(child_sets.into_iter().map(|(_, e)| e));
*es = ExtensionSet::singleton(TO_BE_INFERRED).missing_from(&merged);
Ok(es.clone())
}
infer(self, self.root(), remove)?;
Ok(())
}
/// Given a Hugr that has been deserialized, collect all extensions used to
/// define the HUGR while resolving all [`OpType::OpaqueOp`] operations into
/// [`OpType::ExtensionOp`]s and updating the extension pointer in all
/// internal [`crate::types::CustomType`]s to point to the extensions in the
/// register.
///
/// When listing "used extensions" we only care about _definitional_
/// extension requirements, i.e., the operations and types that are required
/// to define the HUGR nodes and wire types. This is computed from the union
/// of all extension required across the HUGR.
///
/// This is distinct from _runtime_ extension requirements computed in
/// [`Hugr::infer_extensions`], which are computed more granularly in each
/// function signature by the `runtime_reqs` field and define the set
/// of capabilities required by the runtime to execute each function.
///
/// Updates the internal extension registry with the extensions used in the
/// definition.
///
/// # Parameters
///
/// - `extensions`: The extension set considered when resolving opaque
/// operations and types. The original Hugr's internal extension
/// registry is ignored and replaced with the newly computed one.
///
/// # Errors
///
/// - If an opaque operation cannot be resolved to an extension operation.
/// - If an extension operation references an extension that is missing from
/// the registry.
/// - If a custom type references an extension that is missing from the
/// registry.
pub fn resolve_extension_defs(
&mut self,
extensions: &ExtensionRegistry,
) -> Result<(), ExtensionResolutionError> {
let mut used_extensions = ExtensionRegistry::default();
// Here we need to iterate the optypes in the hugr mutably, to avoid
// having to clone and accumulate all replacements before finally
// applying them.
//
// This is not something we want to expose it the API, so we manually
// iterate instead of writing it as a method.
//
// Since we don't have a non-borrowing iterator over all the possible
// NodeIds, we have to simulate it by iterating over all possible
// indices and checking if the node exists.
let weak_extensions: WeakExtensionRegistry = extensions.into();
for n in 0..self.graph.node_capacity() {
let pg_node = portgraph::NodeIndex::new(n);
let node: Node = pg_node.into();
if !self.contains_node(node) {
continue;
}
let op = &mut self.op_types[pg_node];
if let Some(extension) = resolve_op_extensions(node, op, extensions)? {
used_extensions.register_updated_ref(extension);
}
used_extensions.extend(
resolve_op_types_extensions(Some(node), op, &weak_extensions)?.map(|weak| {
weak.upgrade()
.expect("Extension comes from a valid registry")
}),
);
}
self.extensions = used_extensions;
Ok(())
}
}
/// Internal API for HUGRs, not intended for use by users.
impl Hugr {
/// Create a new Hugr, with a single root node and preallocated capacity.
pub(crate) fn with_capacity(root_node: OpType, nodes: usize, ports: usize) -> Self {
let mut graph = MultiPortGraph::with_capacity(nodes, ports);
let hierarchy = Hierarchy::new();
let mut op_types = UnmanagedDenseMap::with_capacity(nodes);
let root = graph.add_node(root_node.input_count(), root_node.output_count());
let extensions = root_node.used_extensions();
op_types[root] = root_node;
Self {
graph,
hierarchy,
root,
op_types,
metadata: UnmanagedDenseMap::with_capacity(nodes),
extensions: extensions.unwrap_or_default(),
}
}
/// Set the root node of the hugr.
pub(crate) fn set_root(&mut self, root: Node) {
self.hierarchy.detach(self.root);
self.root = root.pg_index();
}
/// Add a node to the graph.
pub(crate) fn add_node(&mut self, nodetype: OpType) -> Node {
let node = self
.graph
.add_node(nodetype.input_count(), nodetype.output_count());
self.op_types[node] = nodetype;
node.into()
}
/// Produce a canonical ordering of the descendant nodes of a root,
/// following the graph hierarchy.
///
/// This starts with the root, and then proceeds in BFS order through the
/// contained regions.
///
/// Used by [`HugrMut::canonicalize_nodes`] and the serialization code.
fn canonical_order(&self, root: Node) -> impl Iterator<Item = Node> + '_ {
// Generate a BFS-ordered list of nodes based on the hierarchy
let mut queue = VecDeque::from([root]);
iter::from_fn(move || {
let node = queue.pop_front()?;
for child in self.children(node) {
queue.push_back(child);
}
Some(node)
})
}
/// Compact the nodes indices of the hugr to be contiguous, and order them as a breadth-first
/// traversal of the hierarchy.
///
/// The rekey function is called for each moved node with the old and new indices.
///
/// After this operation, a serialization and deserialization of the Hugr is guaranteed to
/// preserve the indices.
pub fn canonicalize_nodes(&mut self, mut rekey: impl FnMut(Node, Node)) {
// Generate the ordered list of nodes
let mut ordered = Vec::with_capacity(self.node_count());
let root = self.root();
ordered.extend(self.as_mut().canonical_order(root));
// Permute the nodes in the graph to match the order.
//
// Invariant: All the elements before `position` are in the correct place.
for position in 0..ordered.len() {
// Find the element's location. If it originally came from a previous position
// then it has been swapped somewhere else, so we follow the permutation chain.
let mut source: Node = ordered[position];
while position > source.index() {
source = ordered[source.index()];
}
let target: Node = portgraph::NodeIndex::new(position).into();
if target != source {
let pg_target = target.pg_index();
let pg_source = source.pg_index();
self.graph.swap_nodes(pg_target, pg_source);
self.op_types.swap(pg_target, pg_source);
self.hierarchy.swap_nodes(pg_target, pg_source);
rekey(source, target);
}
}
self.root = portgraph::NodeIndex::new(0);
// Finish by compacting the copy nodes.
// The operation nodes will be left in place.
// This step is not strictly necessary.
self.graph.compact_nodes(|_, _| {});
}
}
#[derive(Debug, Clone, PartialEq, Error)]
#[error("Parent node {parent} has extensions {parent_extensions} that are too restrictive for child node {child}, they must include child extensions {child_extensions}")]
/// An error in the extension deltas.
pub struct ExtensionError {
parent: Node,
parent_extensions: ExtensionSet,
child: Node,
child_extensions: ExtensionSet,
}
/// Errors that can occur while manipulating a Hugr.
///
/// TODO: Better descriptions, not just re-exporting portgraph errors.
#[derive(Debug, Clone, PartialEq, Eq, Error)]
#[non_exhaustive]
pub enum HugrError {
/// The node was not of the required [OpTag]
/// (e.g. to conform to the [RootTagged::RootHandle] of a [HugrView])
#[error("Invalid tag: required a tag in {required} but found {actual}")]
#[allow(missing_docs)]
InvalidTag { required: OpTag, actual: OpTag },
/// An invalid port was specified.
#[error("Invalid port direction {0:?}.")]
InvalidPortDirection(Direction),
}
/// Errors that can occur while loading and validating a Hugr json.
#[derive(Debug, Error)]
#[non_exhaustive]
pub enum LoadHugrError {
/// Error while loading the Hugr from JSON.
#[error("Error while loading the Hugr from JSON: {0}")]
Load(#[from] serde_json::Error),
/// Validation of the loaded Hugr failed.
#[error(transparent)]
Validation(#[from] ValidationError),
/// Error when resolving extension operations and types.
#[error(transparent)]
Extension(#[from] ExtensionResolutionError),
/// Error when inferring runtime extensions.
#[error(transparent)]
RuntimeInference(#[from] ExtensionError),
}
#[cfg(test)]
mod test {
use std::{fs::File, io::BufReader};
use super::internal::HugrMutInternals;
#[cfg(feature = "extension_inference")]
use super::ValidationError;
use super::{ExtensionError, Hugr, HugrMut, HugrView, Node};
use crate::extension::prelude::Lift;
use crate::extension::prelude::PRELUDE_ID;
use crate::extension::{ExtensionId, ExtensionSet, PRELUDE_REGISTRY, TO_BE_INFERRED};
use crate::types::{Signature, Type};
use crate::{const_extension_ids, ops, test_file, type_row};
use cool_asserts::assert_matches;
use rstest::rstest;
#[test]
fn impls_send_and_sync() {
// Send and Sync are automatically impl'd by the compiler, if possible.
// This test will fail to compile if that wasn't possible.
#[allow(dead_code)]
trait Test: Send + Sync {}
impl Test for Hugr {}
}
#[test]
fn io_node() {
use crate::builder::test::simple_dfg_hugr;
use cool_asserts::assert_matches;
let hugr = simple_dfg_hugr();
assert_matches!(hugr.get_io(hugr.root()), Some(_));
}
#[test]
#[cfg_attr(miri, ignore)] // Opening files is not supported in (isolated) miri
fn hugr_validation_0() {
// https://github.com/CQCL/hugr/issues/1091 bad case
let hugr = Hugr::load_json(
BufReader::new(File::open(test_file!("hugr-0.json")).unwrap()),
&PRELUDE_REGISTRY,
);
assert_matches!(hugr, Err(_));
}
#[test]
#[cfg_attr(miri, ignore)] // Opening files is not supported in (isolated) miri
fn hugr_validation_1() {
// https://github.com/CQCL/hugr/issues/1091 good case
let hugr = Hugr::load_json(
BufReader::new(File::open(test_file!("hugr-1.json")).unwrap()),
&PRELUDE_REGISTRY,
);
assert_matches!(&hugr, Ok(_));
}
#[test]
#[cfg_attr(miri, ignore)] // Opening files is not supported in (isolated) miri
fn hugr_validation_2() {
// https://github.com/CQCL/hugr/issues/1185 bad case
let hugr = Hugr::load_json(
BufReader::new(File::open(test_file!("hugr-2.json")).unwrap()),
&PRELUDE_REGISTRY,
);
assert_matches!(hugr, Err(_));
}
#[test]
#[cfg_attr(miri, ignore)] // Opening files is not supported in (isolated) miri
fn hugr_validation_3() {
// https://github.com/CQCL/hugr/issues/1185 good case
let hugr = Hugr::load_json(
BufReader::new(File::open(test_file!("hugr-3.json")).unwrap()),
&PRELUDE_REGISTRY,
);
assert_matches!(&hugr, Ok(_));
}
const_extension_ids! {
const XA: ExtensionId = "EXT_A";
const XB: ExtensionId = "EXT_B";
}
#[rstest]
#[case([], XA.into())]
#[case([XA], XA.into())]
#[case([XB], ExtensionSet::from_iter([XA, XB]))]
fn infer_single_delta(
#[case] parent: impl IntoIterator<Item = ExtensionId>,
#[values(true, false)] remove: bool, // makes no difference when inferring
#[case] result: ExtensionSet,
) {
let parent = ExtensionSet::from_iter(parent).union(TO_BE_INFERRED.into());
let (mut h, _) = build_ext_dfg(parent);
h.infer_extensions(remove).unwrap();
assert_eq!(h, build_ext_dfg(result.union(PRELUDE_ID.into())).0);
}
#[test]
fn infer_removes_from_delta() {
let parent = ExtensionSet::from_iter([XA, XB, PRELUDE_ID]);
let mut h = build_ext_dfg(parent.clone()).0;
let backup = h.clone();
h.infer_extensions(false).unwrap();
assert_eq!(h, backup); // did nothing
h.infer_extensions(true).unwrap();
assert_eq!(
h,
build_ext_dfg(ExtensionSet::from_iter([XA, PRELUDE_ID])).0
);
}
#[test]
fn infer_bad_remove() {
let (mut h, mid) = build_ext_dfg(XB.into());
let backup = h.clone();
h.infer_extensions(false).unwrap();
assert_eq!(h, backup); // did nothing
let val_res = h.validate();
let expected_err = ExtensionError {
parent: h.root(),
parent_extensions: XB.into(),
child: mid,
child_extensions: ExtensionSet::from_iter([XA, PRELUDE_ID]),
};
#[cfg(feature = "extension_inference")]
assert_eq!(
val_res,
Err(ValidationError::ExtensionError(expected_err.clone()))
);
#[cfg(not(feature = "extension_inference"))]
assert!(val_res.is_ok());
let inf_res = h.infer_extensions(true);
assert_eq!(inf_res, Err(expected_err));
}
fn build_ext_dfg(parent: ExtensionSet) -> (Hugr, Node) {
let ty = Type::new_function(Signature::new_endo(type_row![]));
let mut h = Hugr::new(ops::DFG {
signature: Signature::new_endo(ty.clone()).with_extension_delta(parent.clone()),
});
let root = h.root();
let mid = add_inliftout(&mut h, root, ty);
(h, mid)
}
fn add_inliftout(h: &mut Hugr, p: Node, ty: Type) -> Node {
let inp = h.add_node_with_parent(
p,
ops::Input {
types: ty.clone().into(),
},
);
let out = h.add_node_with_parent(
p,
ops::Output {
types: ty.clone().into(),
},
);
let mid = h.add_node_with_parent(p, Lift::new(ty.into(), XA));
h.connect(inp, 0, mid, 0);
h.connect(mid, 0, out, 0);
mid
}
#[rstest]
// Base case success: delta inferred for parent equals grandparent.
#[case([XA], [TO_BE_INFERRED], true, [XA])]
// Success: delta inferred for parent is subset of grandparent
#[case([XA, XB], [TO_BE_INFERRED], true, [XA])]
// Base case failure: infers [XA] for parent but grandparent has disjoint set
#[case([XB], [TO_BE_INFERRED], false, [XA])]
// Failure: as previous, but extra "lower bound" on parent that has no effect
#[case([XB], [XA, TO_BE_INFERRED], false, [XA])]
// Failure: grandparent ok wrt. child but parent specifies extra lower-bound XB
#[case([XA], [XB, TO_BE_INFERRED], false, [XA, XB])]
// Success: grandparent includes extra XB required for parent's "lower bound"
#[case([XA, XB], [XB, TO_BE_INFERRED], true, [XA, XB])]
// Success: grandparent is also inferred so can include 'extra' XB from parent
#[case([TO_BE_INFERRED], [TO_BE_INFERRED, XB], true, [XA, XB])]
// No inference: extraneous XB in parent is removed so all become [XA].
#[case([XA], [XA, XB], true, [XA])]
fn infer_three_generations(
#[case] grandparent: impl IntoIterator<Item = ExtensionId>,
#[case] parent: impl IntoIterator<Item = ExtensionId>,
#[case] success: bool,
#[case] result: impl IntoIterator<Item = ExtensionId>,
) {
let ty = Type::new_function(Signature::new_endo(type_row![]));
let grandparent = ExtensionSet::from_iter(grandparent).union(PRELUDE_ID.into());
let parent = ExtensionSet::from_iter(parent).union(PRELUDE_ID.into());
let result = ExtensionSet::from_iter(result).union(PRELUDE_ID.into());
let root_ty = ops::Conditional {
sum_rows: vec![type_row![]],
other_inputs: ty.clone().into(),
outputs: ty.clone().into(),
extension_delta: grandparent.clone(),
};
let mut h = Hugr::new(root_ty.clone());
let p = h.add_node_with_parent(
h.root(),
ops::Case {
signature: Signature::new_endo(ty.clone()).with_extension_delta(parent),
},
);
add_inliftout(&mut h, p, ty.clone());
assert!(h.validate_extensions().is_err());
let backup = h.clone();
let inf_res = h.infer_extensions(true);
if success {
assert!(inf_res.is_ok());
let expected_p = ops::Case {
signature: Signature::new_endo(ty).with_extension_delta(result.clone()),
};
let mut expected = backup;
expected.replace_op(p, expected_p).unwrap();
let expected_gp = ops::Conditional {
extension_delta: result,
..root_ty
};
expected.replace_op(h.root(), expected_gp).unwrap();
assert_eq!(h, expected);
} else {
assert_eq!(
inf_res,
Err(ExtensionError {
parent: h.root(),
parent_extensions: grandparent,
child: p,
child_extensions: result
})
);
}
}
}