@@ -372,10 +372,10 @@ function build_model(model; backend)
372
372
x = MOI.add_variable(model)
373
373
y = MOI.add_variable(model)
374
374
MOI.set(model, MOI.ObjectiveSense(), MOI.MIN_SENSE)
375
- data = MOI.Nonlinear.NonlinearData ()
376
- MOI.Nonlinear.set_objective(data , :($x^2 + $y^2))
377
- MOI.Nonlinear.set_differentiation_backend(data , backend, [x, y])
378
- MOI.set(model, MOI.NLPBlock(), MOI.NLPBlockData(data ))
375
+ nl_model = MOI.Nonlinear.Model ()
376
+ MOI.Nonlinear.set_objective(nl_model , :($x^2 + $y^2))
377
+ evaluator = MOI.Nonlinear.Evaluator(nl_model , backend, [x, y])
378
+ MOI.set(model, MOI.NLPBlock(), MOI.NLPBlockData(evaluator ))
379
379
return
380
380
end
381
381
@@ -388,7 +388,7 @@ build_model(model; backend = MOI.Nonlinear.SparseReverseMode())
388
388
389
389
[ ` Nonlinear.Model ` ] ( @ref ) stores nonlinear expressions in
390
390
[ ` Nonlinear.Expression ` ] ( @ref ) s. This section explains the design of
391
- the expression graph datastructure in [ ` Nonlinear.Expression ` ] ( @ref ) .
391
+ the expression graph data structure in [ ` Nonlinear.Expression ` ] ( @ref ) .
392
392
393
393
Given a nonlinear function like ` f(x) = sin(x)^2 + x ` , a conceptual aid for
394
394
thinking about the graph representation of the expression is to convert it into
@@ -411,7 +411,7 @@ julia> struct ExprNode
411
411
julia> expr = ExprNode(:+, [ExprNode(:^, [ExprNode(:sin, [x]), 2.0]), x]);
412
412
```
413
413
414
- This datastructure follows our Polish prefix notation very closely, and we can
414
+ This data structure follows our Polish prefix notation very closely, and we can
415
415
easily identify the arguments to an operator. However, it has a significant
416
416
draw-back: each node in the graph requires a ` Vector ` , which is heap-allocated
417
417
and tracked by Julia's garbage collector (GC). For large models, we can expect
@@ -447,7 +447,7 @@ challenges:
447
447
448
448
### Sketch of the design in Nonlinear
449
449
450
- ` Nonlinear ` overcomes these problems by decomposing the datastructure into a
450
+ ` Nonlinear ` overcomes these problems by decomposing the data structure into a
451
451
number of different concrete-typed vectors.
452
452
453
453
First, we create vectors of the supported uni- and multivariate operators.
@@ -510,7 +510,7 @@ julia> expr = Expression(
510
510
);
511
511
```
512
512
513
- This is less readable than the other options, but does this datastructure meet
513
+ This is less readable than the other options, but does this data structure meet
514
514
our design goals?
515
515
516
516
Instead of a heap-allocated object for each node, we only have two ` Vector ` s for
@@ -547,18 +547,16 @@ subexpressions in the model.
547
547
548
548
## ReverseAD
549
549
550
- ` Nonlinear.ReverseAD ` is a submodule for computing derivatives of the problem
551
- inside [ ` Nonlinear.NonlinearData ` ] ( @ref ) using sparse reverse-mode automatic
552
- differentiation (AD).
550
+ ` Nonlinear.ReverseAD ` is a submodule for computing derivatives of a nonlinear
551
+ optimization problem using sparse reverse-mode automatic differentiation (AD).
553
552
554
553
This section does not attempt to explain how sparse reverse-mode AD works, but
555
554
instead explains why MOI contains it's own implementation, and highlights
556
555
notable differences from similar packages.
557
556
558
557
!!! warning
559
558
You should not interact with ` ReverseAD ` directly. Instead, you should
560
- create a [ ` Nonlinear.NonlinearData ` ] ( @ref ) object, call
561
- [ ` Nonlinear.set_differentiation_backend ` ] ( @ref ) with
559
+ create a [ ` Nonlinear.Evaluator ` ] ( @ref ) object with
562
560
[ ` Nonlinear.SparseReverseMode ` ] ( @ref ) , and then query the MOI API methods.
563
561
564
562
### Why another AD package?
@@ -582,10 +580,10 @@ Here are four reasons:
582
580
input and then trace an expression graph using operator overloading. This
583
581
means they must deal (or detect and ignore) with control flow, I/O, and other
584
582
vagaries of Julia. In contrast, ` ReverseAD ` only accepts functions in the
585
- form of [ ` Nonlinear.NonlinearExpression ` ] ( @ref ) , which greatly limits the
586
- range of syntax that it must deal with. By reducing the scope of what we
587
- accept as input to functions relevant for mathematical optimization, we can
588
- provide a simpler implementation with various performance optimizations.
583
+ form of [ ` Nonlinear.Expression ` ] ( @ref ) , which greatly limits the range of
584
+ syntax that it must deal with. By reducing the scope of what we accept as
585
+ input to functions relevant for mathematical optimization, we can provide a
586
+ simpler implementation with various performance optimizations.
589
587
* ** Historical:** ` ReverseAD ` started life as [ ReverseDiffSparse.jl] ( https://github.com/mlubin/ReverseDiffSparse.jl ) ,
590
588
development of which begain in early 2014(!). This was well before the other
591
589
packages started development. Because we had a well-tested, working AD in
0 commit comments