Skip to content

Commit

Permalink
Fix: make program::graph public (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
kalzoo committed Jul 10, 2021
1 parent b6b056d commit d0b24ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/program/graph.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//! Utilities for analysis of the dependency graph of a Quil Program

/**
* Copyright 2021 Rigetti Computing
*
Expand Down
3 changes: 1 addition & 2 deletions src/program/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,11 @@ use crate::{

mod calibration;
mod frame;
mod graph;
pub mod graph;
mod memory;

pub use self::calibration::CalibrationSet;
pub use self::frame::FrameSet;
pub use self::graph::{InstructionBlock, ScheduleError, ScheduleResult, ScheduledProgram};
pub use self::memory::MemoryRegion;

/// A Quil Program instance describes a quantum program with metadata used in execution.
Expand Down

0 comments on commit d0b24ed

Please sign in to comment.