Skip to content

Commit

Permalink
Address review comments (#275)
Browse files Browse the repository at this point in the history
  • Loading branch information
blegat authored Apr 9, 2024
1 parent d2ffb8a commit 8c3b69f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions paper/header.tex
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@
pdfauthor = {Benoît Legat},
pdfkeywords = {Julia, Optimization, Performance, Interface},
}

4 changes: 2 additions & 2 deletions paper/paper.tex
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ \subsection{Should mutate}
(ignoring the simplification with \lstinline|gcd| for simplicity).

Using \lstinline|a.num = mul!!(a.num, b.num); a.den = mul!!(a.den, b.den)|
(where \lstinline|mul!!| follows BangBang's conventioni)
(where \lstinline|mul!!| follows BangBang's convention)
is not an option since
the \lstinline|Rational| struct is not mutable.

Expand Down Expand Up @@ -406,7 +406,7 @@ \subsection{Matrix-vector product}
typeof(A),
typeof(b),
)
@allocated buffered_operate!(buf, add_mul, c, A, b)
@ballocated buffered_operate!($buf, add_mul, $c, $A, $b)

# output

Expand Down

0 comments on commit 8c3b69f

Please sign in to comment.