Skip to content

Commit

Permalink
chore: ignore pseudocode entirely
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench committed Aug 2, 2023
1 parent a164076 commit 8c07582
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ pub(crate) fn directive_invert() -> Vec<BrilligOpcode> {
}

/// Generates brillig bytecode which computes `a / b` and returns the quotient and remainder.
/// It returns `(0,0)` if the predicate is null
/// It returns `(0,0)` if the predicate is null.
///
///
/// This is equivalent to the Noir (psuedo)code
///
/// ```no_run
/// ```ignore
/// fn quotient<T>(a: T, b: T, predicate: bool) -> (T,T) {
/// if predicate != 0 {
/// (a/b, a-a/b*b)
Expand Down

0 comments on commit 8c07582

Please sign in to comment.