Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

ModelOrderReduction.jl is a package for automatically reducing the computational complexity
of mathematical models, while keeping expected fidelity within a controlled error bound.
These methods function a submodel with a projection
where solving the smaller model gives approximation information about the full model.
These methods construct a submodel via a projection
where solving the smaller model gives approximate information about the full model.
MOR.jl uses [ModelingToolkit.jl](https://docs.sciml.ai/ModelingToolkit/stable/)
as a system description and automatically transforms equations
to the subform, defining the observables to automatically lazily reconstruct the full
Expand Down
2 changes: 1 addition & 1 deletion src/utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ end
"""
$(SIGNATURES)

Returns `true` is `expr` contains variables in `dvs` only and does not contain `iv`.
Returns `true` if `expr` contains variables in `dvs` only and does not contain `iv`.

"""
function only_dvs(expr, dvs, iv)
Expand Down
Loading