<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://optimization.cbe.cornell.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Asa273</id>
	<title>Cornell University Computational Optimization Open Textbook - Optimization Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://optimization.cbe.cornell.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Asa273"/>
	<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Special:Contributions/Asa273"/>
	<updated>2026-05-01T02:07:00Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Quadratic_programming&amp;diff=6703</id>
		<title>Quadratic programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Quadratic_programming&amp;diff=6703"/>
		<updated>2022-06-12T21:32:33Z</updated>

		<summary type="html">&lt;p&gt;Asa273: /* Numerical example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This web page is a duplicate of https://optimization.mccormick.northwestern.edu/index.php/Quadratic_programming&lt;br /&gt;
&lt;br /&gt;
Author: Jack Heider (ChE 345 Spring 2015) &amp;lt;br/&amp;gt;&lt;br /&gt;
Steward: Dajun Yue, Fengqi You&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
[[File:QPPic.jpg|frame|Optimizating of a quadratic function.&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;12&amp;lt;/span&amp;gt;]]&lt;br /&gt;
&lt;br /&gt;
Quadratic programming (QP) is the problem of optimizing a quadratic objective function and is one of the simplests form of non-linear programming.&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;1&amp;lt;/span&amp;gt;  The objective function can contain bilinear or up to second order polynomial terms,&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;2&amp;lt;/span&amp;gt; and the constraints are linear and can be both equalities and inequalities.  QP is widely used in image and signal processing, to optimize financial portfolios, to perform the least-squares method of regression, to control scheduling in chemical plants, and in [https://optimization.mccormick.northwestern.edu/index.php?title=Sequential_quadratic_programming&amp;amp;action=edit&amp;amp;redlink=1 sequential quadratic programming], a technique for solving more complex non-linear programming problems.&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;3,4&amp;lt;/span&amp;gt;   The problem was first explored in the early 1950s, most notably by Princeton University&#039;s [http://en.wikipedia.org/wiki/Philip_Wolfe_(mathematician) Wolfe] and [http://en.wikipedia.org/wiki/Marguerite_Frank Frank], who developed its theoretical background,&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;1&amp;lt;/span&amp;gt; and by [http://en.wikipedia.org/wiki/Harry_Markowitz Harry Markowitz], who applied it to portfolio optimization, a subfield of finance.&lt;br /&gt;
&lt;br /&gt;
=Problem formulation= &lt;br /&gt;
A general quadratic programming formulation contains a quadratic objective function and linear equality and inequality constraints:&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;2,5,6&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\text{min} f(x)=q^{T}x+\frac{1}{2}x^{T}Qx&amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;s.t. Ax=a&amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;Bx\le b&amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;x\ge0&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
The objective function is arranged such that the vector &amp;lt;math&amp;gt;q&amp;lt;/math&amp;gt; contains all of the (singly-differentiated) linear terms and &amp;lt;math&amp;gt;Q&amp;lt;/math&amp;gt; contains all of the (twice-differentiated) quadratic terms.  Put more simply, &amp;lt;math&amp;gt;Q&amp;lt;/math&amp;gt; is the Hessian matrix of the objective function and &amp;lt;math&amp;gt;q&amp;lt;/math&amp;gt; is its gradient.  By convention, any constants contained in the objective function are left out of the general formulation.&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;6&amp;lt;/span&amp;gt; The one-half in front of the quadratic term is included to remove the coefficient (2) that results from taking the derivative of a second-order polynomial.&lt;br /&gt;
&lt;br /&gt;
As for the constraints, the matrix equation &amp;lt;math&amp;gt;Ax=a&amp;lt;/math&amp;gt; contains all of the linear equality constraints, and &amp;lt;math&amp;gt;Bx \le b&amp;lt;/math&amp;gt; are the linear inequality constraints.&lt;br /&gt;
&lt;br /&gt;
When there are only inequality constraints (&amp;lt;math&amp;gt;Bx\le b&amp;lt;/math&amp;gt;), the Lagrangean is:&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;6&amp;lt;/span&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;L(x,\lambda,\mu)=q^{T}x+\frac{1}{2}x^{T}Qx+{\lambda}^T(Ax-a)+{\mu}^T(Bx-b)=0&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Global solutions==&lt;br /&gt;
If the objective function is convex, then any local minimum found is also the sole global minimum.  To analyze the function’s convexity, one can compute its Hessian matrix and verify that all eigenvalues are positive, or, equivalently, one can verify that the matrix Q is positive definite.&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;6&amp;lt;/span&amp;gt;  This is a sufficient condition, meaning that it is not required to be true in order for a local minimum to be the unique global minimum, but will guarantee this property holds if true.&lt;br /&gt;
&lt;br /&gt;
==KKT conditions==&lt;br /&gt;
Solutions can be tested for optimality using Karush-Kuhn-Tucker conditions just as is done for other nonlinear problems:&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;5&amp;lt;/span&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Condition 1: sum of gradients is zero: &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\triangledown L({x}^*,{\lambda}^*,{\mu}^*)=q^{T}+\frac{1}{2}x^{T}Q+{\lambda}^{*T}A+{\mu}^{*T}B&amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Condition 2: all constraints satisfied: &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;Ax^*-a=0&amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;Bx^*-b\le0&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Condition 3: complementary conditions: &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{\mu}^TBx-b=0&amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{x}^{T},{\lambda}^{T},{\mu}^T\ge0&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Solution strategies==&lt;br /&gt;
Because quadratic programming problems are a simple form of nonlinear problem, they can be solved in the same manner as other non-linear programming problems.&lt;br /&gt;
An unconstrained quadratic programming problem is most straightforward to solve: simply set the derivative (gradient) of the objective function equal to zero and solve.&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;7&amp;lt;/span&amp;gt;  More practical (constrained) formulations are more difficult to solve.  The typical solution technique when the objective function is strictly convex and there are only equality constraints is the [https://optimization.mccormick.northwestern.edu/index.php?title=Conjugate_gradient_methods&amp;amp;action=edit&amp;amp;redlink=1 conjugate gradient method].  If there are inequality constraints (&amp;lt;math&amp;gt;Bx\le b&amp;lt;/math&amp;gt;), then the [https://optimization.mccormick.northwestern.edu/index.php/Interior-point_method_for_NLP interior point] and active set methods are the preferred solution methods.  When there is a range on the allowable values of &amp;lt;math&amp;gt;x&amp;lt;/math&amp;gt; (in the form &amp;lt;math&amp;gt;x^L\le x\le x^U&amp;lt;/math&amp;gt;, which is the case for image and signal processing applications,  [https://optimization.mccormick.northwestern.edu/index.php/Trust-region_methods trust-region methods] are most frequently used.&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;4&amp;lt;/span&amp;gt; For all convex cases, an NLP solver in the optimization utility GAMS, such as KNITRO, MINOS, or CONOPT, can find solutions for quadratic programming problems.&lt;br /&gt;
&lt;br /&gt;
=Numerical example=&lt;br /&gt;
[[File:ChE345 Wiki Mathematica.png|frame|Plot of the unconstrained objective function. Figure generated using Wolfram Mathematica.]]&lt;br /&gt;
&lt;br /&gt;
This example demonstrates how to determine the KKT point of a specific QP problem:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\text{min}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;f(x)=3{x_1}^2+{x_2}^2+2{x_1}{x_2}+x_1+6{x_2}+2&amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\text{s.t.}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;2{x_1}+3{x_2} \ge 4&amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{x_1},{x_2} \ge 0&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Rewrite the constraints. &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;g_1=-2{x_1}-3{x_2}+4\le 0&amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;g_2=-{x_1} \le 0&amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;g_3=-{x_2} \le 0&amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
Construct the gradients. &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\triangledown f= \begin{bmatrix} 6{x_1}+2{x_2}+1 \\ 2{x_1}+2{x_2}+6 \end{bmatrix}, \triangledown {g_1}= \begin{bmatrix} -2 \\ -3 \end{bmatrix}, \triangledown {g_2}= \begin{bmatrix} -1 \\ 0 \end{bmatrix}, \triangledown {g_3}= \begin{bmatrix} 0 \\ -1 \end{bmatrix} &amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Assuming all constraints are satisfied, set the gradient equal to zero to attempt to find an optima. &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;6{x_1}+2{x_2}+1=0&amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;2{x_1}+2{x_2}+6=0&amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{x_1}=\frac{5}{4}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;{x_2}=-\frac{17}{4}&amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Make constraints &amp;lt;math&amp;gt;g_1&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;g_3&amp;lt;/math&amp;gt;, which are violated, active.  Set both equal to zero. &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{g_1} = -2{x_1}-3{x_2}+4=0&amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{g_3} = -{x_2}=0&amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Solve the resulting system of equations. &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\triangledown f+ {\mu_1} \triangledown {g_1}+ {\mu_3} \triangledown {g_3} =0&amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{g_1}=0&amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{g_3}=0&amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; \begin{bmatrix} 6{x_1}+2{x_2}+1 \\ 2{x_1}+2{x_2}+6 \end{bmatrix} +{\mu_1} \begin{bmatrix} -2 \\ -3 \end{bmatrix} +{\mu_3} \begin{bmatrix} 0 \\ -1 \end{bmatrix} &amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;-2{x_1}-3{x_2}+4=0&amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;-{x_2}=0&amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Formulating the system as one matrix and row reducing is one of the simplest ways to solve.  Doing so yields: &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{x_1}=2, {x_2}=0, {\mu_1}=6.5, {\mu_3}=-9.5&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Drop constraint &amp;lt;math&amp;gt;g_3&amp;lt;/math&amp;gt; because &amp;lt;math&amp;gt;{\mu_3}&amp;lt;/math&amp;gt; is negative and resolve the system.  Doing so yields: &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{x_1}=0.5, {x_2}=1, {\mu_1}=3&amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Which yields an objective function value of &amp;lt;math&amp;gt;f=11.25&amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Verify linear dependence of the gradient: &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\triangledown f+ {\mu_1} \triangledown {g_1}&amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; \begin{bmatrix} 6 \\ 9 \end{bmatrix} +3 \begin{bmatrix} -2 \\ -3 \end{bmatrix} = \begin{bmatrix} 0 \\ 0 \end{bmatrix} \therefore &amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Verify the uniqueness of the solution: &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{\triangledown}^2 f(x)= \begin{bmatrix} 6 &amp;amp; 2 \\ 2 &amp;amp; 1 \end{bmatrix} \rightarrow \begin{bmatrix} 6-\lambda &amp;amp; 2 \\ 2 &amp;amp; 1-\lambda \end{bmatrix} =0 \rightarrow \lambda = 0.298, 6.702&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Because both eigenvalues are positive, the Hessian matrix is positive determinant, and this local minimum is the global minimum of the objective function given these constraints. &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Applications=&lt;br /&gt;
&lt;br /&gt;
A few of the many quadratic programming applications are discussed in more detail and accompanied with general models below, and a list of other areas in which QP is important is presented as well.&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;b&amp;gt;Quadratic knapsack problem (QKP)&amp;lt;/b&amp;gt;&lt;br /&gt;
In the standard knapsack problem, there are a number of items with different weights and values, and the items are selected based on which combination yields the highest overall value without exceeding the overall weight limit of the knapsack.&lt;br /&gt;
&lt;br /&gt;
In the quadratic knapsack problem, the objective function is quadratic or, more specifically, bilinear, and the constraints are the same as in the typical knapsack problem.&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;8&amp;lt;/span&amp;gt;  QKP&#039;s are used in designing email servers and to optimize the locations of &amp;quot;nodes&amp;quot; in applications such as positioning transportation hubs like airports and train stations.&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;8&amp;lt;/span&amp;gt;  Additionally, the problem can model situations in which a limited number of people are assigned to complete specific objectives that require them to interact.&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;9&amp;lt;/span&amp;gt;  One formulation is presented below:&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;8&amp;lt;/span&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\text{max or min}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;x^{T}Qx&amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;Ax \le a&amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;x \in {B}^{n} &amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The quadratic knapsack problem, although it looks very simple, is NP-hard and is thus difficult to solve.  To make obtaining solutions easier, these problems are often linearized.&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;8&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;b&amp;gt;Model predictive control&amp;lt;/b&amp;gt;&lt;br /&gt;
Quadratic programming also has important applications in chemical engineering.  Model predictive control (MPC) is a group of algorithms that help manage production in chemical plants by dictating production in each batch.  While often formulated as linear programs because the resulting models are more stable, robust and easier to solve, MPC models are sometimes made with quadratic programming.&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;11&amp;lt;/span&amp;gt;  As an example of its utility, quadratic programming was used by Di Ruscio in an MPC algorithm for a thermomechanical pulping process, which a method for making paper.&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;11&amp;lt;/span&amp;gt; &lt;br /&gt;
&lt;br /&gt;
*&amp;lt;b&amp;gt;Least squares&amp;lt;/b&amp;gt;&lt;br /&gt;
Least squares regression is one of the most common types of regression, and works by minimizing the sum of the squares of the difference between data points and a proposed fit.  Quadratic optimization is one method that can be used to perform a least squares regression and is more flexible than most linear methods.  One formulation for a quadratic programming regression model is as follows:&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;3&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\text{min}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;e&#039;Ie&amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;e = Y-X \beta&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In this model, &amp;lt;math&amp;gt;\beta&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;e&amp;lt;/math&amp;gt; are the unknown regression parameters, &amp;lt;math&amp;gt;I&amp;lt;/math&amp;gt; is an identity matrix, and &amp;lt;math&amp;gt;X&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;Y&amp;lt;/math&amp;gt; contain data about the independent and dependent variables respectively.&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;3&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;b&amp;gt;Other applications&amp;lt;/b&amp;gt;&lt;br /&gt;
Quadratic programming is used in a wide range of applications not touched upon in the sample presented above.  Other major areas in which QP&#039;s are relied upon include signal and image processing&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;12&amp;lt;/span&amp;gt; and a subfield of optimization called partial differential constrained optimization.&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;3&amp;lt;/span&amp;gt;  QP&#039;s are also extensively used in finance, as variance, which is used to measure risk, is a function containing squares.&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;13,14,15&amp;lt;/span&amp;gt;  More specifically, Markowitz won the 1990 Nobel Prize in Economics for his widely-used model that employs quadratic programming to optimizes the amount of risk taken on based on variances.&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;14&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Additionally, [https://optimization.mccormick.northwestern.edu/index.php?title=Sequential_quadratic_programming&amp;amp;action=edit&amp;amp;redlink=1 Sequential quadratic programming], an algorithm for solving more complicated NLP&#039;s that uses QP subproblems, is one of the most important applications.&lt;br /&gt;
&lt;br /&gt;
=Conclusion=&lt;br /&gt;
Quadratic programming, the problem of optimizing a quadratic function, have been widely used since its development in the 1950s because it is a simple type of non-linear programming that can accurately model many real world systems, notably ones dependent on two variables.  Problems formulated this way are straightforward to optimize when the objective function is convex. QP has applications in finance, various types of computer systems, statistics, chemical production, and in algorithms to solve more complex NLP&#039;s.&lt;br /&gt;
&lt;br /&gt;
=References=&lt;br /&gt;
1. Frank, Marguerite, and Philip Wolfe. &amp;quot;An Algorithm for Quadratic Programming.&amp;quot; Naval Research Logistics Quarterly 3 (1956): 95-110. Web. 4 June 2015. &amp;lt;br/&amp;gt;&lt;br /&gt;
2. Floudas, Christodoulos A., and V. Visweswaran. &amp;quot;Quadratic Optimization.&amp;quot; Nonconvex Optimization and Its Applications, 2 (1995): 217-69. Web. 23 May 2015. &amp;lt;br/&amp;gt;&lt;br /&gt;
3. McCarl, Bruce A., Moskowitz, Herbert, and Harley Furtan. &amp;quot;Quadratic Programming Applications.&amp;quot; The International Journal of Management Science, 5 (1977): 43-55. &amp;lt;br/&amp;gt;&lt;br /&gt;
4. Geletu, Abele. &amp;quot;Quadratic programming problems.&amp;quot; Ilmenau University of Technology. Web. 23 May 2015. &amp;lt;br/&amp;gt;&lt;br /&gt;
5. Bradley, Hax, and Magnanti. Applied Mathematical Programming. Boston: Addison-Wesley, 1997. 421-40. Web. 23 May 2015. &amp;lt;br/&amp;gt;&lt;br /&gt;
6. Jensen, Paul A., and Jonathan F. Bard. &amp;quot;Quadratic Programming.&amp;quot; Operations Research Models and  Methods. The University of Texas at Austin. Web. 23 May 2015. &amp;lt;br/&amp;gt;&lt;br /&gt;
7. Binner, David. &amp;quot;Quadratic programming example - no constraints.&amp;quot; Miscellaneous mathematical utilities. AKiTi. Web. 23 May 2015. &amp;lt;br/&amp;gt;&lt;br /&gt;
8. Pisinger, David. &amp;quot;The Quadratic Knapsack Problem – A Survey.&amp;quot; Discrete Applied Mathematics, 155 (2007): 623 – 648. Web. 23 May 2015. &amp;lt;br/&amp;gt;&lt;br /&gt;
9. &amp;quot;Quadratic Multiple Knapsack Problem.&amp;quot; Optimization of Complex System. Optiscom Project. 2012. Web. 6 June 2015. &amp;lt;br/&amp;gt;&lt;br /&gt;
10. Gallo, G., P. L. Hammer, and B. Simeone. &amp;quot;Quadratic Knapsack Problems.&amp;quot; Mathematical Programming 12 (1980): 132-149. Web. 24 May 2015. &amp;lt;br/&amp;gt;&lt;br /&gt;
11. Di Ruscio, David. &amp;quot;Model Predictive Control and Optimization.&amp;quot; Telemark University College. Mar. 2001. Web. 24 May 2015. &amp;lt;br/&amp;gt;&lt;br /&gt;
12. Ma, W. K. &amp;quot;Signal Processing Optimization Techniques.&amp;quot; The Chinese University of Hong Kong. Web. 24 May 2015. &amp;lt;br/&amp;gt;&lt;br /&gt;
13. Tütüncü, Reha H. &amp;quot;Optimization in Finance.&amp;quot; Tokyo Institute of Technology. Spring 2003. Web. 23 May 2015. &amp;lt;br/&amp;gt;&lt;br /&gt;
14. Van Slyke, R. &amp;quot;Portfolio Optimization.&amp;quot; NYU Polytechnic School of Engineering. 16 Nov. 2007. Web. 24 May 2015. &amp;lt;br/&amp;gt;&lt;br /&gt;
15. &amp;quot;Portfolio Optimization.&amp;quot; SAS/OR(R) 9.2 User&#039;s Guide: Mathematical Programming. SAS Institute. Web. 23 May 2015. &amp;lt;br/&amp;gt;&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=File:Fig05_KL.png&amp;diff=6676</id>
		<title>File:Fig05 KL.png</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=File:Fig05_KL.png&amp;diff=6676"/>
		<updated>2022-04-01T16:01:33Z</updated>

		<summary type="html">&lt;p&gt;Asa273: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=File:Fig04_KL.png&amp;diff=6675</id>
		<title>File:Fig04 KL.png</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=File:Fig04_KL.png&amp;diff=6675"/>
		<updated>2022-04-01T15:55:45Z</updated>

		<summary type="html">&lt;p&gt;Asa273: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=File:Fig03_KL.png&amp;diff=6674</id>
		<title>File:Fig03 KL.png</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=File:Fig03_KL.png&amp;diff=6674"/>
		<updated>2022-04-01T15:55:01Z</updated>

		<summary type="html">&lt;p&gt;Asa273: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=File:Fig02_KL.png&amp;diff=6673</id>
		<title>File:Fig02 KL.png</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=File:Fig02_KL.png&amp;diff=6673"/>
		<updated>2022-04-01T15:54:09Z</updated>

		<summary type="html">&lt;p&gt;Asa273: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=File:Flowchart01_KL.png&amp;diff=6672</id>
		<title>File:Flowchart01 KL.png</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=File:Flowchart01_KL.png&amp;diff=6672"/>
		<updated>2022-04-01T15:52:30Z</updated>

		<summary type="html">&lt;p&gt;Asa273: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=File:Algorithm.png&amp;diff=6671</id>
		<title>File:Algorithm.png</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=File:Algorithm.png&amp;diff=6671"/>
		<updated>2022-04-01T15:51:02Z</updated>

		<summary type="html">&lt;p&gt;Asa273: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=File:ECP.PNG&amp;diff=6670</id>
		<title>File:ECP.PNG</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=File:ECP.PNG&amp;diff=6670"/>
		<updated>2022-04-01T15:50:05Z</updated>

		<summary type="html">&lt;p&gt;Asa273: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=File:Robustopt.jpg&amp;diff=6669</id>
		<title>File:Robustopt.jpg</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=File:Robustopt.jpg&amp;diff=6669"/>
		<updated>2022-04-01T15:45:17Z</updated>

		<summary type="html">&lt;p&gt;Asa273: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=File:Conint.JPG&amp;diff=6668</id>
		<title>File:Conint.JPG</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=File:Conint.JPG&amp;diff=6668"/>
		<updated>2022-04-01T15:44:26Z</updated>

		<summary type="html">&lt;p&gt;Asa273: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=File:Rolls_Royce_robust_design.png&amp;diff=6664</id>
		<title>File:Rolls Royce robust design.png</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=File:Rolls_Royce_robust_design.png&amp;diff=6664"/>
		<updated>2022-04-01T15:40:54Z</updated>

		<summary type="html">&lt;p&gt;Asa273: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Branch_and_cut_for_MINLP&amp;diff=6663</id>
		<title>Branch and cut for MINLP</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Branch_and_cut_for_MINLP&amp;diff=6663"/>
		<updated>2022-04-01T15:39:35Z</updated>

		<summary type="html">&lt;p&gt;Asa273: /* History */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Author: Pear Dhiantravan (ChE 345 Spring 2015) &lt;br /&gt;
&lt;br /&gt;
Stewards: Dajun Yue, Fengqi You &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Branch and Cut is a method for solving Mixed Integer Non Linear Programming (MINLP) models. There are variations on the exact steps of the algorithm, but the original method developed by Ioannis Akrotirianakis, Istvan Maros, and Berc Rustem in 2000 utilizes the general organization of the Branch and Bound method with the iterative nature of the Outer Approximation.&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; The addition of Gomory mixed integer cuts as an alternative to branching improves the efficiency of the overall branch and bound algorithm by reducing the number of nodes and Non-Linear Programming (NLP) problems required to solve the MINLP.&lt;br /&gt;
&lt;br /&gt;
=Introduction= &lt;br /&gt;
The organization of general design problems into programming models allows for the defining and finding of their (global) optimal solution. MINLP models represent problems as a sets of continuous variables with binary integer variables. The continuous variables are restricted to defined constraints, and the binary variables represent whether or not a design choice is made. &lt;br /&gt;
&lt;br /&gt;
===History=== &lt;br /&gt;
[[File:B&amp;amp;C_minlp.JPG|500px|thumb|Branch and Bound with Gomory Cuts and the iterative nature of Outer Approximations &amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;]]&lt;br /&gt;
&lt;br /&gt;
Mixed integer programming problems were explored most generally in the later half of the 1900s. Ignacio Grossmann published many papers on mixed integer linear programing problems and their solutions and applications in the late 1980s through the 1990s. In those decades, research was focused largely on improving the [https://optimization.mccormick.northwestern.edu/index.php/Branch_and_bound_%28BB%29 Branch and Bound] method to achieve greater time efficiency. The branch and bound method was developed by A.H. Land and A.G. Doig in 1960 to solve linear integer problems,&amp;lt;sup&amp;gt;3,1&amp;lt;/sup&amp;gt; and expanded in 1965 by R.J. Dakin to incorporate nonlinear integer problem solutions. &amp;lt;sup&amp;gt;4,1&amp;lt;/sup&amp;gt; Branch and bound seemed to be a robust method, however the time required to solve increases exponentially as the number of variables increases.&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt; In the 1950s and 60s, Ralph Gomory developed a different method using cutting planes to solve integer problems. Gomory Cuts were quicker to solve but gave less reliable solutions. The exploration of incorporating Gomory cuts into the branch and bound method gained popularity when solutions showed greater efficacy upon combination of these methods. The joint algorithm is called Branch and Cut. &lt;br /&gt;
&lt;br /&gt;
In the early 2000s, Akrotirianakis, Maros, and Rustem built on the findings of their predecessors to expand the application of the branch and cut method to non linear programs. More research surfaced on broader applications of this method, and with this grew the development of computational programs such as CPLEX and XPRESS-MP to run and solve these problems using given iterative solution methods.&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Applications=== &lt;br /&gt;
Mixed integer non linear programming models can cover a wide variety of engineering and design problems with discrete variable values. &lt;br /&gt;
&lt;br /&gt;
The Branch and Cut method is well-known for its long-time use in solving the [https://optimization.mccormick.northwestern.edu/index.php/Traveling_salesman_problems Traveling Salesman Problem].&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt; In 1991, Padberg and Rinaldi developed a solution to large-scale symmetric traveling salesman problems using the branch and cut method.&amp;lt;sup&amp;gt;7&amp;lt;/sup&amp;gt; MINLP problems involving scheduling, network design (including facility locating), and a variety of simplified biological models can be solved using the branch and cut algorithm given integer-valued variables.&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=Formulation= &lt;br /&gt;
Given that &amp;lt;math&amp;gt;f(x)&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;g(x)&amp;lt;/math&amp;gt;, and &amp;lt;math&amp;gt;h(x)&amp;lt;/math&amp;gt; are convex and continuously differentiable, a general MINLP problem solvable by the Branch and Cut method can be formulated as follows: &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;min Z(x,y)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;=&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;C^T y&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;+ f(x)&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;s.t.&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;g(x) + By \leqslant 0&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;     h(x) = 0&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;     x \in X, y \in {0,1}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Algorithm=&lt;br /&gt;
The Branch and Cut algorithm closely follows that of the Outer Approximation for MINLP, but incorporates Gomory cuts in order to decrease the search space of the problem. &lt;br /&gt;
&lt;br /&gt;
The algorithm presented here is the method developed by Akrotirianakis, Maros, and Rustem [1a]. Variations on this method are described below. &lt;br /&gt;
&lt;br /&gt;
===Initialization: Value of the Search Tree Root=== &lt;br /&gt;
 0. Upper bound = inf, Lower bound = -inf&lt;br /&gt;
&lt;br /&gt;
 1. Initialize &amp;lt;math&amp;gt;y^0&amp;lt;/math&amp;gt;&lt;br /&gt;
The Branch and Cut method begins with an initialization of the binary variables &amp;lt;math&amp;gt;(y)&amp;lt;/math&amp;gt; by defining each with a finite starting value 0 or 1. &lt;br /&gt;
Otherwise, the initialization may be achieved by solving a relaxed NLP setting &amp;lt;math&amp;gt;0\leqslant y \leqslant 1&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
 2. Solve NLP using &amp;lt;math&amp;gt;y^0&amp;lt;/math&amp;gt; &lt;br /&gt;
    &#039;&#039;&#039;if&#039;&#039;&#039; NLP is feasible &lt;br /&gt;
       &amp;amp;rarr; solve &amp;lt;math&amp;gt;Z(x^0, y^0)&amp;lt;/math&amp;gt;. This yields a new &#039;&#039;&#039;upper bound&#039;&#039;&#039; to the original problem. Move to step 3 &lt;br /&gt;
    &#039;&#039;&#039;else&#039;&#039;&#039; NLP is not feasible &lt;br /&gt;
       &amp;amp;rarr; if an initial set of values for &amp;lt;math&amp;gt;y^0&amp;lt;/math&amp;gt; was chosen, choose a new &amp;lt;math&amp;gt;(y^0)&amp;lt;/math&amp;gt;. &lt;br /&gt;
         Repeat 1 and 2 until a feasible solution is obtained. Move to step 3. &lt;br /&gt;
&lt;br /&gt;
The NLP should result in an initial feasible solution &amp;lt;math&amp;gt;x^0&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;y^0&amp;lt;/math&amp;gt; in which &amp;lt;math&amp;gt;Z(x^0, y^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\leq \infty&amp;lt;/math&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
Otherwise, if the relaxed NLP is infeasible, then the MINLP problem is infeasible.&lt;br /&gt;
&lt;br /&gt;
 3. Solve MILP&lt;br /&gt;
&lt;br /&gt;
Using &amp;lt;math&amp;gt;x^0&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;y^0&amp;lt;/math&amp;gt; obtained from the NLP, solve the linearized objective and constraints according to the following equations: &lt;br /&gt;
    &lt;br /&gt;
&amp;lt;math&amp;gt;min&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;a&amp;lt;/math&amp;gt; &lt;br /&gt;
    &lt;br /&gt;
&amp;lt;math&amp;gt;s.t.&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;a \leqslant UB^0 &amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;f(x^0,y^0) +&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\nabla\ f(x^0,y^0)^T&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\binom{x-x^0}{y-y^0} &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\leqslant&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;a&amp;lt;/math&amp;gt; &lt;br /&gt;
    &lt;br /&gt;
&amp;lt;math&amp;gt;g(x^0,y^0) +&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\nabla\ g(x^0,y^0)^T&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\binom{x-x^0}{y-y^0} &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\leqslant&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;0&amp;lt;/math&amp;gt;  &lt;br /&gt;
    &lt;br /&gt;
&amp;lt;math&amp;gt;y \in&amp;lt;/math&amp;gt; {0,1}&lt;br /&gt;
&lt;br /&gt;
The solution to the MILP will yield a new set of &amp;lt;math&amp;gt;(x)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;(y)&amp;lt;/math&amp;gt;. Call these the new &amp;lt;math&amp;gt;(x^0)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;(y^0)&amp;lt;/math&amp;gt;; this is the &#039;&#039;&#039;root&#039;&#039;&#039; of the branch and bound search tree.&lt;br /&gt;
&lt;br /&gt;
===Solve Nodes===&lt;br /&gt;
 4. Select an unsolved node &lt;br /&gt;
    &#039;&#039;&#039;If&#039;&#039;&#039; no nodes are left, &lt;br /&gt;
       &#039;&#039;&#039;then&#039;&#039;&#039; the problem is solved and &amp;lt;math&amp;gt;Z(x^j, y^j)&amp;lt;/math&amp;gt; is the optimal solution. &lt;br /&gt;
&lt;br /&gt;
 5. Solve MILP (formulation below) &lt;br /&gt;
    &#039;&#039;&#039;If&#039;&#039;&#039; all &amp;lt;math&amp;gt;y^k&amp;lt;/math&amp;gt; = {0,1} &lt;br /&gt;
       This node is the new incumbent &lt;br /&gt;
       &#039;&#039;&#039;and&#039;&#039;&#039; Z obtained from this set of &amp;lt;math&amp;gt;x^k&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;y^k&amp;lt;/math&amp;gt; is the current optimal solution. &lt;br /&gt;
       &#039;&#039;&#039;and&#039;&#039;&#039; add linearizations of the objective and constraints &lt;br /&gt;
          using &amp;lt;math&amp;gt;x^k&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;y^k&amp;lt;/math&amp;gt; to each unsolved node according to the equation below. &lt;br /&gt;
          Go to step 6. &lt;br /&gt;
    &#039;&#039;&#039;Else&#039;&#039;&#039; a &amp;lt;math&amp;gt;y^k&amp;lt;/math&amp;gt; &amp;amp;notin; {0,1} &lt;br /&gt;
        Go to step 7. &lt;br /&gt;
&lt;br /&gt;
Solve the corresponding MILP of the problem using the previous feasible solution &amp;lt;math&amp;gt;(x^j, y^j)&amp;lt;/math&amp;gt; in the following form:   &lt;br /&gt;
&lt;br /&gt;
For the first node (excluding the root), &amp;lt;math&amp;gt;(x^j, y^j)&amp;lt;/math&amp;gt; will be &amp;lt;math&amp;gt;(x^0, y^0)&amp;lt;/math&amp;gt;, etc. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;min&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;a&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;s.t.&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;a \leqslant UB^j &amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;f(x^j,y^j) +&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\nabla\ f(x^j,y^j)^T&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\binom{x-x^j}{y-y^j} &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\leqslant&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;a&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;g(x^j,y^j) +&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\nabla\ g(x^j,y^j)^T&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\binom{x-x^j}{y-y^j} &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\leqslant&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;0&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\forall j \in T&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;T&amp;lt;/math&amp;gt; is the set containing all indices of the solution tree in which the NLP for &amp;lt;math&amp;gt;y^j&amp;lt;/math&amp;gt; is feasible. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;g(x^i,y^i) +&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\nabla\ g(x^i,y^i)^T&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\binom{x-x^i}{y-y^i} &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\leqslant&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;0&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\forall i \in S&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;S&amp;lt;/math&amp;gt; is the set containing all indices of the solution tree in which the NLP for &amp;lt;math&amp;gt;y^i&amp;lt;/math&amp;gt; is infeasible. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Gamma x + \Gamma y \leqslant \epsilon&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
This constraint represents the Gomory cuts generated as the algorithm runs. This line decreases the feasible region of the original problem. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;y \in&amp;lt;/math&amp;gt; {0,1}&lt;br /&gt;
&lt;br /&gt;
The solution to this MILP will yield a new set &amp;lt;math&amp;gt;(x^k)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;(y^k)&amp;lt;/math&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 6. Solve relaxed NLP &lt;br /&gt;
    Using the MILP solution &amp;lt;math&amp;gt;y^k&amp;lt;/math&amp;gt; &lt;br /&gt;
    This should result in a new solution &amp;lt;math&amp;gt;x^j&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;y^j = y^k&amp;lt;/math&amp;gt;. &lt;br /&gt;
    &#039;&#039;&#039;If&#039;&#039;&#039; NLP&amp;lt;math&amp;gt;(y^j)&amp;lt;/math&amp;gt; is feasible &lt;br /&gt;
       &amp;amp;rarr; solve &amp;lt;math&amp;gt;Z(x^j, y^j)&amp;lt;/math&amp;gt;. &lt;br /&gt;
       &#039;&#039;&#039;If&#039;&#039;&#039; &amp;lt;math&amp;gt;Z(x^j, y^j)&amp;lt;/math&amp;gt; is less than the previous upper bound &lt;br /&gt;
          &#039;&#039;&#039;then&#039;&#039;&#039; this yields a new &#039;&#039;&#039;upper bound&#039;&#039;&#039; &amp;lt;math&amp;gt;UB^j&amp;lt;/math&amp;gt; to the original problem. &lt;br /&gt;
          Fathom all unsolved nodes that do not satisfy this bound. &lt;br /&gt;
          Return to step 4 &lt;br /&gt;
       &#039;&#039;&#039;Else&#039;&#039;&#039; retain the old upper bound. &lt;br /&gt;
          Return to step 4 &lt;br /&gt;
    &#039;&#039;&#039;Else&#039;&#039;&#039; NLP&amp;lt;math&amp;gt;(y^j)&amp;lt;/math&amp;gt; is not feasible &lt;br /&gt;
       &amp;amp;rarr; Fathom node. &lt;br /&gt;
       Return to step 4&lt;br /&gt;
&lt;br /&gt;
===Cutting vs Branching=== &lt;br /&gt;
When the solution to the linear relaxation in Step 5 contains fractional values on binary variables &amp;lt;math&amp;gt;y&amp;lt;/math&amp;gt;, either a cutting plane should be generated to exclude that solution or branching can be done at that node to constrain the fractional variable to its binary values 0 or 1. &lt;br /&gt;
&lt;br /&gt;
 7. Calculate &amp;quot;skip factor&amp;quot; &lt;br /&gt;
    &#039;&#039;&#039;If&#039;&#039;&#039; a cut is to be performed, go to step 8. &lt;br /&gt;
    &#039;&#039;&#039;Else&#039;&#039;&#039; the cut is to be skipped, go to step 9. &lt;br /&gt;
&lt;br /&gt;
The decision whether or not to perform a Gomory cut is based on a &amp;quot;skip factor&amp;quot; &amp;lt;math&amp;gt;S&amp;lt;/math&amp;gt; which is calculated throughout the enumeration of the tree. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;S =&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;min[S_{max}&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;\dfrac{t + wcd \log_{10} p}{t f}]&amp;lt;/math&amp;gt; &lt;br /&gt;
 &lt;br /&gt;
where t = number of integer nodes solved &lt;br /&gt;
&lt;br /&gt;
S_{max}, c, w = positive constant parameter  &lt;br /&gt;
&lt;br /&gt;
p = number of binary variables y &lt;br /&gt;
&lt;br /&gt;
f = number of violated binary variables in &amp;lt;math&amp;gt;y^k&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Gomory Cuts=== &lt;br /&gt;
 8. Generate an inequality to exclude the fractional variable solution &lt;br /&gt;
&lt;br /&gt;
&amp;lt;&amp;lt;Equation 3. for gomory mixed integer cuts&amp;gt;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Add these cuts to the constraints of the original problem. &lt;br /&gt;
&lt;br /&gt;
Return to step 5&lt;br /&gt;
&lt;br /&gt;
===Branching=== &lt;br /&gt;
 9. Constrain the/a variable in &amp;lt;math&amp;gt;y^k&amp;lt;/math&amp;gt; to branch off of. &lt;br /&gt;
&lt;br /&gt;
One branch will set &amp;lt;math&amp;gt;y^k = 0&amp;lt;/math&amp;gt; and the other &amp;lt;math&amp;gt;y^k = 1&amp;lt;/math&amp;gt;, creating two new nodes. Return to step 5, following one of these nodes.&lt;br /&gt;
&lt;br /&gt;
=Variations= &lt;br /&gt;
A variation on the Branch and Cut method presented by Sven Leyffer in 2013 utilizes cuts for every fractional solution and branches only when solutions are still fractional after multiple cuts. &amp;lt;sup&amp;gt;8&amp;lt;/sup&amp;gt; Thus, the algorithm is the same until step 7, where cuts are always chosen to eliminate solutions where &amp;lt;math&amp;gt;y^k&amp;lt;/math&amp;gt; &amp;amp;notin; {0,1}. The inequality generated to produce this cut is added to the constraints of the original problem. &lt;br /&gt;
&lt;br /&gt;
=Conclusion= &lt;br /&gt;
The general Branch and Cut algorithm follows a scheme which grows exponentially as variables are added to the original design problem. The addition of Gomory Cuts allows bounds to be tightened, reducing the number of feasible nodes to be tested and allowing the solver to converge on the optimal solution with less iterations. However, the formation of inequalities to generate these cuts take time and may slow down the actual resolution of the MINLP problem. The larger the problem, the more useful the cuts can be.&lt;br /&gt;
&lt;br /&gt;
=References=&lt;br /&gt;
&lt;br /&gt;
# I. Akrotirianakis, I. Maros, and B. Rustem. An Outer Approximation Based Branch and Cut Algorithm for convex 0-1 MINLP Problems. &#039;&#039;Optimization Methods and Software.&#039;&#039; 21:47, 2001 https://www.doc.ic.ac.uk/research/technicalreports/2000/DTR00-6.pdf&lt;br /&gt;
# S. Leyffer and J. Linderoth. Introduction to Integer Nonlinear Optimization, Nonlinear Branch-and-Cut, Theoretical and Computational Challenges. &#039;&#039;Argonne National Laboratory.&#039;&#039; 2007. http://science.energy.gov/~/media/ascr/pdf/workshops-conferences/mathtalks/Leyffer.pdf&lt;br /&gt;
# A. H. Land and A. G. Doig. An Automatic method of solving discrete programming problems. &#039;&#039;Econometrica,&#039;&#039; 28:497 520, 1960. &lt;br /&gt;
# R. J. Dakin. A tree search algorithm for mixed integer probramming problems. &#039;&#039;Computer Journal,&#039;&#039; 8:250 255, 1965. &lt;br /&gt;
# S. Albert. Solving Mixed Integer Linear Programs Using Branch and Cut Algorithm. &#039;&#039;Masters of Mathematics, North Carolina State University.&#039;&#039; 2006. http://www4.ncsu.edu/~kksivara/masters-thesis/shon-thesis.pdf (good for milp) &lt;br /&gt;
# J. E. Mitchell. Branch-and-Cut Algorithms for Combinatorial Optimization Problems. &#039;&#039;Mathematical Sciences,&#039;&#039; 1999. http://homepages.rpi.edu/~mitchj/papers/bc_hao.pdf &lt;br /&gt;
# M. Padberg and G. Rinaldi. A Branch-and-Cut Algorithm for the Resolution of Large-Scale Symmetric Traveling Salesman Problems. &#039;&#039;SIAM Rev,&#039;&#039; 33(1), 60-100, 1991. http://epubs.siam.org/doi/abs/10.1137/1033004?journalCode=siread&lt;br /&gt;
# S. Leyffer. Mixed-Integer Nonlinear Optimization: Applications, Algorithms, and Computation III. &#039;&#039;Graduate School, Universite catholique de Louvain.&#039;&#039; 2013. https://wiki.mcs.anl.gov/leyffer/images/4/42/Socn-3.pdf&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=File:B%26C_minlp.JPG&amp;diff=6657</id>
		<title>File:B&amp;C minlp.JPG</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=File:B%26C_minlp.JPG&amp;diff=6657"/>
		<updated>2022-04-01T15:35:06Z</updated>

		<summary type="html">&lt;p&gt;Asa273: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Extended_cutting_plane_(ECP)&amp;diff=6642</id>
		<title>Extended cutting plane (ECP)</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Extended_cutting_plane_(ECP)&amp;diff=6642"/>
		<updated>2022-04-01T15:28:23Z</updated>

		<summary type="html">&lt;p&gt;Asa273: Created page with &amp;quot;Authors: Kyung Je Lee (ChE 345 Spring 2015) Stewards: Dajun Yue, Fengqi You  ==Introduction== ===Background=== &amp;#039;&amp;#039;&amp;#039;Extended Cutting Plane&amp;#039;&amp;#039;&amp;#039; is an optimization method suggested...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyung Je Lee (ChE 345 Spring 2015)&lt;br /&gt;
Stewards: Dajun Yue, Fengqi You&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
===Background===&lt;br /&gt;
&#039;&#039;&#039;Extended Cutting Plane&#039;&#039;&#039; is an optimization method suggested by Westerlund and Petersson in 1996 to solve Mixed-Integer NonLinear Programming (MINLP) problems&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;[1]&amp;lt;/span&amp;gt;. ECP can be thought as an extension of Kelley&#039;s cutting plane method, which uses iterative Newton&#039;s method to refine feasible area and ultimately solve a problem within tolerable error. Therefore, ECP method does not require solving Non-Linear Programming(NLP) while Branch and Bound(BB) and Outer Approximation(OA) do require NLP solution for an upper bound. However, ECP generally requires more iterations. Although cutting plane method is criticized for its slow convergence, ECP is more efficient in cases where evaluation of non linear functions are time costly. For example, in optimization of a dynamic separation process done by Stefan Emet and Tapio Westerlund, ECP was 100 times faster than BB and 10 times faster than OA in solving the MINLP&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;[2]&amp;lt;/span&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
===Comparison with outer approximation===&lt;br /&gt;
ECP is closely related to OA in that it uses first differential approximation to cut the plane. The difference is that OA solves a NLP problem for its upper bound while ECP only uses solution of MILP in each iteration. This means that OA is more efficient in main iteration loops. This advantage of OA is more prominent in strongly non-linear MINLP problems that are mainly consisted of continuous variables. However, in pure integer non-linear programming problems, OA method does not have any advantage over ECP. Although it takes less iterations for OA to converge, solving NLP problem in each iteration incur more computation work than solving MILP because MILP has only one additional linear constraints in each iteration.&lt;br /&gt;
&lt;br /&gt;
===Formulation of MINLP problem===&lt;br /&gt;
&lt;br /&gt;
A general MINLP can be formulated as the following:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; \min_{x,y}  Z=C_x^T x + C_y^T y &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;s.t. \quad g(x,y) \leq 0&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where, cx and cy are vectors with constants, x is a vector of continuous variables, y is a vector with discrete variables&lt;br /&gt;
and g(x, y) is a vector with continuous convex functions, all defined on a set.&lt;br /&gt;
&lt;br /&gt;
==ECP algorithm==&lt;br /&gt;
Since g(x,y) is a convex function set and continuously differentiable it follows that&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; g_i(x^k,y^k) + \left( \frac{\partial g_i}{\partial x}\right)_{x^k,y^k} (x-x^k) + \left( \frac{\partial g_i}{\partial y}\right)_{x^k,y^k} (y-y^k) \leq g_i(x,y)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Also, if,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; max(g_i(x^k,y^k)) \leq 0 &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
then for all i&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; g_i(x^k,y^k) \leq 0&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using these properties, ECP algorithm is as follows:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Step 0.&#039;&#039;&#039; Set k=1. Leave out all nonlinear constraints and set up an MILP problem.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Step 1.&#039;&#039;&#039; Solve the MILP problem.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Step 2.&#039;&#039;&#039; Check if the solution satisfies nonlinear constraints. If all constraints are satisfied, in other words, if &amp;lt;math&amp;gt; g_i(x^k,y^k) \leq 0&amp;lt;/math&amp;gt; is true for all i, &amp;lt;math&amp;gt;(x^k, y^k)&amp;lt;/math&amp;gt; is a global optimum.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Step 3&#039;&#039;&#039; If any of the constraints are not satisfied, add a constraint for most violated constraint, g&lt;br /&gt;
::&amp;lt;math&amp;gt; g_i(x^k,y^k) + \left( \frac{\partial g_i}{\partial x}\right)_{x^k,y^k} (x-x^k) + \left( \frac{\partial g_i}{\partial y}\right)_{x^k,y^k} (y-y^k)\leq 0 &amp;lt;/math&amp;gt; &lt;br /&gt;
::set k= k+1 and go to Step 1.&lt;br /&gt;
&lt;br /&gt;
== Example == &lt;br /&gt;
&amp;lt;math&amp;gt; \min z = -x_1-x_2 &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; s.t. \quad g1(x_1,x_2) = 0.15(x_1-8)^2 + 0.1 (x_2-6)^2+0.025e^{x_1}x_2^{-2}-5 \leq 0 &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; g2(x_1,x_2) = 1/x_1 + 1/x_2- x_1^{0.5}x_2^{0.5}+4 \leq 0 &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; 2x_1-3x_2-2 \leq 0 &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; 1\leq x_1 \leq 20,\quad 1\leq x_2\leq 20, \quad x_1\in \R \quad x_2 \in \N&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
First MILP can be set-up by leaving out non-linear constraint &amp;lt;math&amp;gt; g_1&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt; g_2&amp;lt;/math&amp;gt;&lt;br /&gt;
[[File:ECP.PNG|350px|thumb|right|Visualization of how ECP is used to solve MINLP&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt;]]&lt;br /&gt;
&amp;lt;math&amp;gt; \min z = -x_1-x_2 &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; s.t. \quad2x_1-3x_2-2 \leq 0 &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; 1\leq x_1 \leq 20,\quad 1\leq x_2\leq 20 &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; x_1\in \R \quad x_2 \in \N &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The first iteration gives &amp;lt;math&amp;gt;x_1^1 = 20, x_2^1=20 &amp;lt;/math&amp;gt;.&lt;br /&gt;
This leads to &amp;lt;math&amp;gt;g_1(x_1^1,x_2^1)=30359, \quad g_2(x_1^1,x_2^1)= -15.9 &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A new constraint is introduced for the second iteration with the most violated nonlinear constraint &amp;lt;math&amp;gt;g_1&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; \min z = -x_1-x_2 &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; s.t. \quad g_1(x_1^1,x_2^1)+\triangledown g_1(x_1^1,x_2^1)^T(x-x_1^1,x-x_2^1) \leq 0 &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; 2x_1-3x_2-2 \leq 0 &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; 1\leq x_1 \leq 20,\quad 1\leq x_2\leq 20 &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; x_1\in \R \quad x_2 \in \N &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Same procedure can be taken for consequent iterations, and with 17 iterations, ECP gives answer of &amp;lt;math&amp;gt;x_1^1 = 8.9, x_2^1=12 &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Non-smooth Functions==&lt;br /&gt;
In non-smooth functions, ECP algorithm can be generalized by relaxing continuous differentiability. Therefore, the only change in the algorithm is that subgradients are used instead of gradients. Subgradient of convex function &amp;lt;math&amp;gt;h&amp;lt;/math&amp;gt; at point&amp;lt;math&amp;gt;z_0&amp;lt;/math&amp;gt; is any vector &amp;lt;math&amp;gt;\xi&amp;lt;/math&amp;gt; that satifies&lt;br /&gt;
&amp;lt;math&amp;gt;h(z_0) + \xi(z-z_0) \leq h(z)&amp;lt;/math&amp;gt; &amp;lt;sup&amp;gt; 3 &amp;lt;/sup&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Conclusion==&lt;br /&gt;
ECP is an extension of cutting plane(CP) method that is used to solve NLP problems. The application of cutting plane to MINLP is rather straight forward and the strength of ECP lies in that it is simple and robust. Therefore, it is suitable for solving large MINLP problems with moderate degree of non-linearity and complex system that require extensive computational work. ECP only requires one additional constraint to improve one solution for MILP problem at each iteration whereas both NLP and MILP problems are solved in other MINLP methods. However, since there is only one adjustment made at a time, it has slow convergence to solution.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Reference==&lt;br /&gt;
1. Tapio Westerlund, Frank Pettersson, An extended cutting plane method for solving convex MINLP problems, Computers &amp;amp; Chemical Engineering, Volume 19, Supplement 1, 11–14 June 1995, Pages 131-136, ISSN 0098-1354, http://dx.doi.org/10.1016/0098-1354(95)87027-X.&lt;br /&gt;
&lt;br /&gt;
2. Stefan Emet and Tapio Westerlund. 2008. Solving a dynamic separation problem using MINLP techniques. Appl. Numer. Math. 58, 4 (April 2008), 395-406. DOI=10.1016/j.apnum.2007.01.023 http://dx.doi.org/10.1016/j.apnum.2007.01.023&lt;br /&gt;
&lt;br /&gt;
3.Tapio Westerlund, Hans Skrifvars, Iiro Harjunkoski, Ray Pörn, An extended cutting plane method for a class of non-convex MINLP problems, Computers &amp;amp; Chemical Engineering, Volume 22, Issue 3, 28 February 1998, Pages 357-365, ISSN 0098-1354, http://dx.doi.org/10.1016/S0098-1354(97)00000-8.&lt;br /&gt;
(http://www.sciencedirect.com/science/article/pii/S0098135497000008)&lt;br /&gt;
&lt;br /&gt;
4. An extended supporting hyperplane algorithm for convex  MINLP problems http://blogs.abo.fi/ose/files/2014/10/ose2014_kronqvist.pdf&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Generalized_Benders_decomposition_(GBD)&amp;diff=6641</id>
		<title>Generalized Benders decomposition (GBD)</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Generalized_Benders_decomposition_(GBD)&amp;diff=6641"/>
		<updated>2022-04-01T15:27:41Z</updated>

		<summary type="html">&lt;p&gt;Asa273: Created page with &amp;quot;Authors: Yuanxi Zhao (ChE 345 Spring 2015) &amp;lt;br&amp;gt; Steward: Dajun Yue, Fengqi You&amp;lt;br&amp;gt; Date Presented: May 22, 2015 &amp;lt;br&amp;gt;  Generalized Benders Decomposition is a procedure to solve...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Yuanxi Zhao (ChE 345 Spring 2015) &amp;lt;br&amp;gt;&lt;br /&gt;
Steward: Dajun Yue, Fengqi You&amp;lt;br&amp;gt;&lt;br /&gt;
Date Presented: May 22, 2015 &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Generalized Benders Decomposition is a procedure to solve certain types of NLP and MINLP problems. The use of this procedure has been recently suggested as a tool for solving process design problems. While analyzing the solution of nonconvex problems through different implementations of the GBD, it is demonstrated that in certain cases only local minima may be found, whereas in other cases not even convergence to local optima can be achieved.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
J.F. Benders devised an approach for exploiting the structure of mathematical programming problems with complicating variables (variables which, when temporarily fixed, render the remaining optimization problem considerably more tractable).The algorithm he proposed for finding the optimal value of this vector employs a cutting-plane approach for building up adequate representations of (i) the extremal value of the linear program as a function of the parameterizing vector and (ii) the set of values of the parameterizing vector for which the linear program is feasible. Linear programming duality theory was employed to derive the natural families of cuts characterizing these representations, and the parameterized linear program itself is used to generate what are usually deepest cuts for building up the representations. &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Geoffrion (1972) generalized the approach proposed by Benders (1962) to a broader class of optimization problems in which the parametrized subproblem need no longer be a linear program. Nonlinear convex duality theory is employed to derive the natural families of cuts corresponding to those in Bender&#039;s case.&lt;br /&gt;
&lt;br /&gt;
=Model Formulation=&lt;br /&gt;
===Target problem===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;min_{x,y}&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;f(x,y)&amp;lt;/math&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;s.t.&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;g(x) \leq 0 &amp;lt;/math&amp;gt;             &amp;lt;math&amp;gt;(1)&amp;lt;/math&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;x\in X&amp;lt;/math&amp;gt;,&amp;lt;math&amp;gt;y\in Y&amp;lt;/math&amp;gt; &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
under the following assumptions:&amp;lt;br&amp;gt;&lt;br /&gt;
# &amp;lt;math&amp;gt; X \subset R&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;Y \subset R&amp;lt;/math&amp;gt; are compact. &amp;lt;br&amp;gt;&lt;br /&gt;
# For all &amp;lt;math&amp;gt; y\in Y&amp;lt;/math&amp;gt;,&amp;lt;math&amp;gt;f&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;g&amp;lt;/math&amp;gt; are convex on &amp;lt;math&amp;gt;X&amp;lt;/math&amp;gt;.&amp;lt;br&amp;gt;&lt;br /&gt;
# For &amp;lt;math&amp;gt;y&amp;lt;/math&amp;gt; fixed to any feasible &amp;lt;math&amp;gt; y\in Y&amp;lt;/math&amp;gt;, the problem satisfies Slater&#039;s condition.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following problem is equivalent to above and is called its projection on &amp;lt;math&amp;gt;Y&amp;lt;/math&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;min_y&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt; v(y)&amp;lt;/math&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;s.t. &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;v(y)=&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;min_{x \in X}f(x,y)&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;s.t.&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;  g(x,y) \leq 0&amp;lt;/math&amp;gt;           &amp;lt;math&amp;gt; (2)&amp;lt;/math&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;y\in Y\cap V&amp;lt;/math&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;V&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt; =&amp;lt;/math&amp;gt;{&amp;lt;math&amp;gt;y: g(x,y)\leq 0 &amp;lt;/math&amp;gt; for some &amp;lt;math&amp;gt;x&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;\in&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;X&amp;lt;/math&amp;gt;}.&amp;lt;br&amp;gt;&lt;br /&gt;
For problems where &amp;lt;math&amp;gt;X&amp;lt;/math&amp;gt; is a convex set, and the functions &amp;lt;math&amp;gt;f(x,y)&amp;lt;/math&amp;gt;,&amp;lt;math&amp;gt;g(x,y)&amp;lt;/math&amp;gt; are convex with respect to the variable &amp;lt;math&amp;gt;x&amp;lt;/math&amp;gt;, Geooffrion (1972) proposed a decomposition of (2) based on the following two problems:&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Primal problem===&lt;br /&gt;
&amp;lt;math&amp;gt;min_x&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;f(x,\bar{y})&amp;lt;/math&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;s.t. &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;g(x,\bar{y})\leq 0&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;(3)&amp;lt;/math&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;x\in X&amp;lt;/math&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;\bar{y}&amp;lt;/math&amp;gt; is an arbitrary but fixed point in &amp;lt;math&amp;gt;Y&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Master problem===&lt;br /&gt;
&amp;lt;math&amp;gt;min_{y\in Y}&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;[&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;max&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;_{u\geq 0}&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;[min_{x\in X}&amp;lt;/math&amp;gt;{&amp;lt;math&amp;gt;f(x,y)&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;+u^T&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;g(x,y)&amp;lt;/math&amp;gt;}&amp;lt;math&amp;gt;]]&amp;lt;/math&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;s.t.&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;min_{\lambda}&amp;lt;/math&amp;gt;{&amp;lt;math&amp;gt;{\lambda}^T&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;g(x,y)&amp;lt;/math&amp;gt;}&amp;lt;math&amp;gt;\leq 0&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;\forall&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;{\lambda}&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;\in&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;{\Lambda}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;    (4)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;{\Lambda}=&amp;lt;/math&amp;gt;{&amp;lt;math&amp;gt;{\lambda}\geq 0;&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;\sum_i&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;{\lambda}&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;_i=1&amp;lt;/math&amp;gt;} &amp;lt;math&amp;gt;and&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;y&amp;gt;\in Y&amp;lt;/math&amp;gt;,  &amp;lt;math&amp;gt;x\in X&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;u\geq 0&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Some Remark===&lt;br /&gt;
&lt;br /&gt;
Before any further analysis, it is appropriate to point out that the master problem is equivalent to the projection (2), only when &amp;lt;math&amp;gt;X&amp;lt;/math&amp;gt; is a convex set, and the functions &amp;lt;math&amp;gt;f(x,y),g(x,y)&amp;lt;/math&amp;gt;are convex with respect to &amp;lt;math&amp;gt;x&amp;lt;/math&amp;gt;. This is so because the dual of &amp;lt;math&amp;gt;v(y)&amp;lt;/math&amp;gt;, as defined in (2), was invoked in arriving at the Master problem. Therefore, when &amp;lt;math&amp;gt;X&amp;lt;/math&amp;gt; is not a convex set and/or convexity of the functions &amp;lt;math&amp;gt;f(x,y)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;g(x,y)&amp;lt;/math&amp;gt; in the variable &amp;lt;math&amp;gt;x&amp;lt;/math&amp;gt;does not hold, a dual gap may exist between &amp;lt;math&amp;gt;v(y)&amp;lt;/math&amp;gt; and its dual. In these cases, since by the weak duality theorem, the solution of &amp;lt;math&amp;gt;v(y)&amp;lt;/math&amp;gt; is always greater than or equal to the solution of its dual, the master problem can only provide a lower bound on the optimum, i.e.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;v(y)=&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;min_{x\in X}&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt; f(x,y)&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;   s.t.&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;g(x,y)\leq 0&amp;lt;/math&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;v(y)&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;\geq&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt; max&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;_{u\geq 0}&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;[min_{x\in X}&amp;lt;/math&amp;gt;{&amp;lt;math&amp;gt;f(x,y)&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;+ u^T g(x,y)&amp;lt;/math&amp;gt;}&amp;lt;math&amp;gt;]&amp;lt;/math&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\Rightarrow&amp;lt;/math&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;min_{y\in Y\cap V}&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;v(y)\geq&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;min_{y\in Y\cap V}&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;[max&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;_{u\geq 0}&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;[min_{x\in X}&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;f(x,y)&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;+u^T g(x,y)&amp;lt;/math&amp;gt;}&amp;lt;math&amp;gt;]]&amp;lt;/math&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;min_{y\in Y\cap V}&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;v(y)&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;=min_{y\in Y}&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;[max&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;_{u\geq 0}&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;[min_{x\in X}&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;f(x,y)&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;+u^T g(x,y)&amp;lt;/math&amp;gt;}&amp;lt;math&amp;gt;]]&amp;lt;/math&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;s.t.&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;min_{x\in X}&amp;lt;/math&amp;gt;{&amp;lt;math&amp;gt;{\lambda}^T g(x,y)&amp;lt;/math&amp;gt;}&amp;lt;math&amp;gt;\leq 0&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;\forall&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;{\lambda}&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;\in&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;{\Lambda}&amp;lt;/math&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Solution approaches=&lt;br /&gt;
===Algorithm flowchart===&lt;br /&gt;
[[File:Algorithm.png|800px|Algorithm flowchart]]&lt;br /&gt;
===Computational implementation===&lt;br /&gt;
The master problem can be rewritten as&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;min_{y_0=y} y_0&amp;lt;/math&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;s.t.&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;L^*(y,u)&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;=min_{x\in X}&amp;lt;/math&amp;gt;{&amp;lt;math&amp;gt;f(x,y)&amp;lt;/math&amp;gt;&amp;lt;br&amp;gt;&amp;lt;math&amp;gt;+u^Tg(x,y)&amp;lt;/math&amp;gt;}&amp;lt;math&amp;gt;\leq y_0&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;all&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;u\geq 0&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;L_*(y,{\lambda})&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;=min_{x\in X}&amp;lt;/math&amp;gt;{&amp;lt;math&amp;gt;{\lambda}^Tg(x,y)&amp;lt;/math&amp;gt;}&amp;lt;math&amp;gt;\leq 0&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;all&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;{\lambda}\in {\Lambda}&amp;lt;/math&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Geoffrion (1972) suggests to solve a relaxed version of this problem in which all but a few constraints are ignored. Since constraints are continuously added to the master, the optimal values of this problem form a monotone nonedecreasing sequence. When &amp;lt;math&amp;gt;f(x,y)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;g(x,y)&amp;lt;/math&amp;gt; are convex in &amp;lt;math&amp;gt;x&amp;lt;/math&amp;gt; and certain conditions hold, the lowest solution of the primal and the global solution of the master [as defined from above] will approach one another and will thus provide the global optimum of the overall problem within a prespecified tolerance. As analyzed earlier, when convexity in &amp;lt;math&amp;gt;x&amp;lt;/math&amp;gt; does not hold, dual gaps may prevent these two values from approaching each other. Nevertheless the global solution of the relaxed master will still provide a valid lower bound on the global optimum of the overall problem. The resulting computational procedure is the following: &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Step 1.&#039;&#039;&#039; Let a point &amp;lt;math&amp;gt;\bar y&amp;lt;/math&amp;gt; in &amp;lt;math&amp;gt;Y\cap V&amp;lt;/math&amp;gt; be known. Solve the primal problem and obtain the optimal solution &amp;lt;math&amp;gt;x^*&amp;lt;/math&amp;gt;, and the optimal multiplier vector &amp;lt;math&amp;gt;u^*&amp;lt;/math&amp;gt;. Put the counters &amp;lt;math&amp;gt;K^f=1&amp;lt;/math&amp;gt;,&amp;lt;math&amp;gt;K^i=0&amp;lt;/math&amp;gt;. Set &amp;lt;math&amp;gt;U=f(x^*,\bar y)&amp;lt;/math&amp;gt;, select a tolerance &amp;lt;math&amp;gt;\varepsilon &amp;gt; 0&amp;lt;/math&amp;gt; and put &amp;lt;math&amp;gt;u^{(1)}=u^*&amp;lt;/math&amp;gt;. Finally, determine the function &amp;lt;math&amp;gt;L^*(y,u^{(1)})&amp;lt;/math&amp;gt;. &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Step 2.&#039;&#039;&#039; Solve globally the current relaxed master problem:&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;min_{y_0=y}&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;y_0&amp;lt;/math&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;s.t.&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;L^*&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;(y,&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;u^{(k_1)})&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;\leq y_0&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;k_1=1,\dots&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;K^f&amp;lt;/math&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;L_*&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;(y,&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;{\lambda}^{(k_2)})&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;\leq 0&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;k_2=1,\dots&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;K^i&amp;lt;/math&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Step 3.&#039;&#039;&#039; Solve globally the primal problem using &amp;lt;math&amp;gt;\bar {y}=\hat {y}&amp;lt;/math&amp;gt;.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Step 3a.&#039;&#039;&#039; &#039;&#039;Primal is feasible&#039;&#039;. If &amp;lt;math&amp;gt;v(\bar{y})&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;\leq \hat{y_0}&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;+\epsilon&amp;lt;/math&amp;gt; terminate. Otherwise, determine the optimal multiplier vector&amp;lt;math&amp;gt; u^*&amp;lt;/math&amp;gt;,increase &amp;lt;math&amp;gt;K^f&amp;lt;/math&amp;gt; by one, set &amp;lt;math&amp;gt;u^{(k^f)}&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;=u^*&amp;lt;/math&amp;gt;.Additionally, if &amp;lt;math&amp;gt;u(\bar{y})&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;&amp;lt;U&amp;lt;/math&amp;gt;,put &amp;lt;math&amp;gt;U=v(\bar{y})&amp;lt;/math&amp;gt;. Finally, determine the function &amp;lt;math&amp;gt;L^*(y&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;,u^{(k^f)})&amp;lt;/math&amp;gt; and return to Step 2.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Step 3b.&#039;&#039;&#039; &#039;&#039;Primal is infeasible&#039;&#039;. Determine a set of values of &amp;lt;math&amp;gt;{\lambda}^*&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;\in {\Lambda}&amp;lt;/math&amp;gt; which satisfy&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;min_{x \in X}&amp;lt;/math&amp;gt;{&amp;lt;math&amp;gt;{\lambda}&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;^{*T}g(x,y)&amp;lt;/math&amp;gt;}&amp;lt;math&amp;gt;&amp;gt;0&amp;lt;/math&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Increase &amp;lt;math&amp;gt;K^i&amp;lt;/math&amp;gt;by one, put &amp;lt;math&amp;gt;{\lambda}&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;^{(K^i)}&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;={\lambda}^*&amp;lt;/math&amp;gt; and determine the function &amp;lt;math&amp;gt;L*(y,&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;{\lambda}&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;^{(K^i)}&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;)&amp;lt;/math&amp;gt;. Return to Step 2.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When referring to &amp;quot;solutions&amp;quot; of nonconvex optimization problems it is sometimes understood that these may be locally, rather than globally, optimal points. In the above computational procedure it is necessary that the master be solved globally. When problems are jointly convex in &amp;lt;math&amp;gt;x&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;y&amp;lt;/math&amp;gt;, the master is convex and globality is then achieved. Global solutions of the primal are also needed if convexity of X and/or convexity of &amp;lt;math&amp;gt;f(x,y)&amp;lt;/math&amp;gt; and/or &amp;lt;math&amp;gt;g(x,y)&amp;lt;/math&amp;gt; in &amp;lt;math&amp;gt;x&amp;lt;/math&amp;gt;does not hold. &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Determination of lambda*===&lt;br /&gt;
The determination of &amp;lt;math&amp;gt;{\lambda}^*&amp;lt;/math&amp;gt; in Step 3b can be done by any Phase I algorithm. In particular Floudas et al (1989) proposed to solve the following problem: &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;min_{\alpha,x}&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;{\alpha}&amp;lt;/math&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;s.t.&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;g(x,\bar{y})&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;-{\alpha}\underline{1}&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;\leq 0&amp;lt;/math&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;x\in X&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;,{\alpha}\in R&amp;lt;/math&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;\underline{1}&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;=(1,1,&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;\dots&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;,1)^T&amp;lt;/math&amp;gt;.&amp;lt;br&amp;gt;&lt;br /&gt;
Since the primal problem is infeasible, it is already known that the solution of this problem is positive. Once this problem is solved and a stationary point &amp;lt;math&amp;gt;x^*&amp;lt;/math&amp;gt; is obtained, the following necessary Kuhn-Tucker conditions are satisfied:&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;1-\sum_i&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;\lambda_i^*&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;=0&amp;lt;/math&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\lambda^{*T}\triangledown_x&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;g(x^*,\bar{y})=0&amp;lt;/math&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\lambda_i^*&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;[g_i(x^*,\bar y)&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;-\alpha]=0&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;,\forall_i&amp;lt;/math&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\lambda_i&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;\leq 0&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;,\forall_i&amp;lt;/math&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
From them it is concluded that by solving the problem the condition &amp;lt;math&amp;gt;\lambda^*&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;\in\Lambda&amp;lt;/math&amp;gt; is satisfied. Note that in this step it is not imperative to achieve globality.&lt;br /&gt;
&lt;br /&gt;
===Explicit determination of L===&lt;br /&gt;
In most cases, the function &amp;lt;math&amp;gt;L^*&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;L_*&amp;lt;/math&amp;gt; are implicitly defined. One case in which these functions can be obtained in explicit form is when the global minimum over &amp;lt;math&amp;gt;x&amp;lt;/math&amp;gt; can be obtained independently of &amp;lt;math&amp;gt;y&amp;lt;/math&amp;gt;. i.e. when Property (P) is satisfied. Two examples in which this property is satisfied arise when the functions &amp;lt;math&amp;gt;f(x,y)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;g(x,y)&amp;lt;/math&amp;gt; are separable in &amp;lt;math&amp;gt;x&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;y&amp;lt;/math&amp;gt;, and in the variable factor programming case.&amp;lt;br&amp;gt;&lt;br /&gt;
Once Property (P) holds, evalution of &amp;lt;math&amp;gt;L^*(y,u^*)&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;,L_*(y,u^*)&amp;lt;/math&amp;gt; simply requires that the minima in the master problem be global. This is the so called L-Dual-Adequacy property, which upon satisfaction of Property (P) can be achieved only if a global search of the solution of both &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;min_{x\in X}&amp;lt;/math&amp;gt;{&amp;lt;math&amp;gt;f(x,y)&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;+u^{*T}g(x,y)&amp;lt;/math&amp;gt;} &amp;lt;math&amp;gt;and&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;min_{x\in X}&amp;lt;/math&amp;gt;{&amp;lt;math&amp;gt;\lambda^{*T}&amp;lt;/math&amp;gt;&amp;lt;math&amp;gt;g(x,y)&amp;lt;/math&amp;gt;}&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
is conducted.&amp;lt;br&amp;gt;&lt;br /&gt;
Another case in which these functions can be obtained in explicit form is when Property (P&#039;) is satisfied, i.e. when the globally optimal solution of the primal, &amp;lt;math&amp;gt;x^*&amp;lt;/math&amp;gt;, is also the solution of the minimization of the problems defined in the master problem. This is guaranteed when &amp;lt;math&amp;gt;f(x,y)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;g(x,y)&amp;lt;/math&amp;gt; are convex and separable in x.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If Property (P&#039;) is simply assumed, then this implementation of Generalized Benders Decomposition may only be used, without guarantees, to identify candidates for local, but not global minima.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The above discussion does not mean that Properties (P) and/or (P&#039;) must always hold. Other procedures may exist in which the Master problem can be solved without using these requirements.&lt;br /&gt;
&lt;br /&gt;
===Advantages and Disadvantages of the algorithm===&lt;br /&gt;
The GBD method is similar in nature to the Outer-Approximation method. The difference arises in the definition of the MILP master problem (M-MIP). In the GBD method only active inequalities are considered and the set is &amp;lt;math&amp;gt;x\in X&amp;lt;/math&amp;gt; is disregarded. In particular, assume an outer approximation given at a given point &amp;lt;math&amp;gt;(x^k,y^k)&amp;lt;/math&amp;gt; , where for a fixed &amp;lt;math&amp;gt;y^k&amp;lt;/math&amp;gt; the point &amp;lt;math&amp;gt;x^k&amp;lt;/math&amp;gt; corresponds to the optimal solution to the problem. Making use of the Karush-Kuhn-Tucker conditions and eliminating the continuous variables x, the inequalities can be reduced to Lagrangrian cut projected in the y-space. This can be interpreted as a surrogate constraint because it is obtained as a linear combination of these. &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For the case where there is no feasible solution to the problem, if the point &amp;lt;math&amp;gt;x^k&amp;lt;/math&amp;gt; is obtained from the feasibility subproblem (NLPF), the feasibility cut projected in y can be obtained using a similar procedure. In this way, the problem (M-MIP) reduces to a problem projected in the y-space. Since the master problem can be derived from the master problem of the Outer-Approximation algorithm in the context of problem. GBD can be regarded as a particular case of the Outer Approximation algorithm. In fact the following property, holds between the two methods:&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Property 1.&#039;&#039;&#039; &#039;&#039;Given the same set of K subproblems, the lower bound predicated by the relaxed master problem (RM-OA) is greater or equal to the one predicted by the relaxed master problem (RM-GBD).&#039;&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The above proof follows from the fact that the Lagrangian and feasibility cuts, &amp;lt;math&amp;gt;(LC^k)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;(FC^k)&amp;lt;/math&amp;gt;, are surrogates of the outer approximations &amp;lt;math&amp;gt;(OA^k)&amp;lt;/math&amp;gt;. Given the fact that the lower bounds of GBD are generally weaker, this method commonly requires a large number of cycles or major iterations. As the number of 0-1 variables increases this differences become more pronounced. This is to be expected since only one new cut is generated per iteration. Therefore, user-supplied constraints must often be added to the master problem to strengthen the bounds. As for the OA algorithm, the trade-off is that while is generally predicts stronger lower bounds than GBD, the computational cost for solving the master problem (M-OA) is greater since the number of constraints added per iteration is equal to the number of nonlinear constraints plus the nonlinear objective. &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following convergence property applies to the GBD method:&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Property 2.&#039;&#039;&#039; &#039;&#039;If problem (PI) has zero integrality gap, the GBD algorithm converges in one iteration once the optimal is found.&#039;&#039; &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The above property implies that the only case one can expect the GBD method to terminate in one iteration, is when the initial discrete vector is the optimum, and when the objective value of the NLP relaxation of problem (P1) is the same as the objective of the optimal mixed-integer solution. Given the relationship of GBD with the OA algorithm, Property 2 is also inherited by the OA method.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
One further property that relates the OA and GBD algorithms is the following:&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Property 3.&#039;&#039;&#039; &#039;&#039;The cut obtained from performing one Benders iteration on the MILP master (RM-OA) is equivalent to the cut obtained from the GBD algorithm.&#039;&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By making use of this property, instead of solving the MILP (RM-OA) to optimality, for instance by LP-based brand and bound, one can generate a GBD cut by simply performing one Benders iteration on the MILP. This property will prove to be useful when deriving a logic-based version of the GBD algorithm. With the above in mind, the advantages and disadvantages of GBD can thus be summarized as below: &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Advantages:&#039;&#039;&#039; Geoffrion (1972) generalized Benders approach to a broader class of programs in which the parameterized subproblem need no longer be a linear program. Nonlinear convex duality theory was employed to derive the quivalent masster problem. In GBD, the algorithm alternates between the solution of relaxed master problems and convex nonlinear subproblems. It is a helpful tool for solving process design problems. &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Disadvantages:&#039;&#039;&#039; Some restrictions regarding the convexity and other properties of the function involved were identified. Also, it is found that in certain cases only local minima may be found, whereas in other cases not even convergence to local optima can be achieved. These suggests that the procedure should be used with caution, especially when global optimality is being sought. More specifically, it is demonstrated that the implementation of the procedure guarantees globality when certain properties are satisfied (primal convexity, global solution of the master, Property (P) and L-Dual-Ade-quacy).&lt;br /&gt;
&lt;br /&gt;
=Application=&lt;br /&gt;
Generalized Benders decomposition has been applied to a variety of problems that were modeled as mixed integer linear programming (MDLP) or mixed integer nonlinear programming (MINLP) problems. Geoffrion and Graves (1974) were among the first to use the algorithm to solve an MILP model for the design industrial distribution systems. Noonan and Giglio (1977) used Benders decomposition coupled with a successive linearization procedure to solve a nonlinear multiperiod mix integer model for planning the expansion of electric power generation networks. Rouhani et aL (1985) used GBD to solve an MINLP model for reactive source planning in power systems. Floudas and Ciric (1989) applied GBD to their MINLP formulation for heat exchanger network synthesis. EL-Halwagi and Manouthiosakis (1989) developed an MINLP model for the design and analysis of mass exchange networks and suggested the use of GBD for its solution. Sahinidis and Grossman (1990) applied the algorithm to the problem of scheduling multiproduct parallel production lines by solving the corresponding large scale MINLP model. The technique has also been used for solving nonconvex nonlinear programming (NLP) and MINLP problems: Geoffrion (1971) applied it to the variable factor programming problem and Floudas et aL (1989) suggested a Benders-based procedure for searching for the global optimum of nonconvex problems.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Unfortunately, Benders decomposition has not been uniformly successful in all its application Florial et aL (1976) have noticed that the algorithm often converged very slowly when applied to their MILP model for scheduling the movement of railway engines. Bazaraa and Sherali (1980) observed that a large number of iterations were needed to solve their MILP model for quadratic assignment problems of realistic size. Sahinidis et aL (1989) have found brand and bound to be significantly faster than Benders decomposition for the solution of their multiperiod MILP for long range planning in the chemicla industries. Finally, with respect to the application of GBD to nonconvex problems, in contrast to Geoffrion (1972) and Floudas et aL (1989), Sahinidis and Grossmann (1989) have encountered cases where the application of this technique to their MINLP model for the planning of chemical processes fail to produce the global optima of these problems.&lt;br /&gt;
&lt;br /&gt;
=Sources=&lt;br /&gt;
#Geoffrion, A. M., Elements of Large-Scale Mathematical Programming, Management Science, Vol. 16, No. 11, 1970.&lt;br /&gt;
#BENDERS, J. F., Partitioning Procedures for Solving ~lixed-Variables Programming Problems, Numerische Mathematik, Vol. 4, 1962.&lt;br /&gt;
#WILSON, R. Programming Variable Factors, Management Science, VoI. 13, No. 1, 1966.&lt;br /&gt;
#Balas, E., Duality in Discrete Programming: IV. Applications, CarnegieMellon University, Graduate School of Industrial Administration, Report No. 145, 1968.&lt;br /&gt;
#Meyer, R., The Validity of a Family of Optimization Methods, SIAM Journal on Control, Vol. 8, No. I, 1970.&lt;br /&gt;
#Dantzic, G. B., Linear Programming and Extensions, Princeton University Press, Princeton, New Jersey, 1963.&lt;br /&gt;
#Geoffriosi, A. M., Primal Resource-Directive Approaches for Optimizing Nonlinear Decomposable Systems, Operations Research, Vol. 18, No. 3, 1970.&lt;br /&gt;
#Hogan, W., Application of a General Convergence Theory for Outer Approximation Algorithms, University of California at Los Angeles, Western Management Science Institute, Working Paper No. 174, 1971.&lt;br /&gt;
#Eaves, B. C., and Zangwill, W. I., Generalized Cutting Plane Algorithms, SIAM Journal on Control, Vol. 9, No. 4, 1971.&lt;br /&gt;
#Geoffrion, A. M., A New Global Optimization Technique for Gaseous Diffusion Plant Operation and Capital Investment, University of California at Los Angeles, Graduate School of Business Administration, Discussion Paper, 1970.&lt;br /&gt;
#Geoffrion A. M., Duality in Nonlinear Programming: £1 Simplified Application-Oriented Development, SIAM Review, Vol. 13, No. 1, 1971.&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Branch_and_cut_for_MINLP&amp;diff=6639</id>
		<title>Branch and cut for MINLP</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Branch_and_cut_for_MINLP&amp;diff=6639"/>
		<updated>2022-04-01T15:27:08Z</updated>

		<summary type="html">&lt;p&gt;Asa273: Created page with &amp;quot;Author: Pear Dhiantravan (ChE 345 Spring 2015)   Stewards: Dajun Yue, Fengqi You    Branch and Cut is a method for solving Mixed Integer Non Linear Programming (MINLP) models....&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Author: Pear Dhiantravan (ChE 345 Spring 2015) &lt;br /&gt;
&lt;br /&gt;
Stewards: Dajun Yue, Fengqi You &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Branch and Cut is a method for solving Mixed Integer Non Linear Programming (MINLP) models. There are variations on the exact steps of the algorithm, but the original method developed by Ioannis Akrotirianakis, Istvan Maros, and Berc Rustem in 2000 utilizes the general organization of the Branch and Bound method with the iterative nature of the Outer Approximation.&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; The addition of Gomory mixed integer cuts as an alternative to branching improves the efficiency of the overall branch and bound algorithm by reducing the number of nodes and Non-Linear Programming (NLP) problems required to solve the MINLP.&lt;br /&gt;
&lt;br /&gt;
=Introduction= &lt;br /&gt;
The organization of general design problems into programming models allows for the defining and finding of their (global) optimal solution. MINLP models represent problems as a sets of continuous variables with binary integer variables. The continuous variables are restricted to defined constraints, and the binary variables represent whether or not a design choice is made. &lt;br /&gt;
&lt;br /&gt;
===History=== &lt;br /&gt;
[[File:B&amp;amp;C minlp.JPG|500px|thumb|Branch and Bound with Gomory Cuts and the iterative nature of Outer Approximations &amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;]]&lt;br /&gt;
&lt;br /&gt;
Mixed integer programming problems were explored most generally in the later half of the 1900s. Ignacio Grossmann published many papers on mixed integer linear programing problems and their solutions and applications in the late 1980s through the 1990s. In those decades, research was focused largely on improving the [https://optimization.mccormick.northwestern.edu/index.php/Branch_and_bound_%28BB%29 Branch and Bound] method to achieve greater time efficiency. The branch and bound method was developed by A.H. Land and A.G. Doig in 1960 to solve linear integer problems,&amp;lt;sup&amp;gt;3,1&amp;lt;/sup&amp;gt; and expanded in 1965 by R.J. Dakin to incorporate nonlinear integer problem solutions. &amp;lt;sup&amp;gt;4,1&amp;lt;/sup&amp;gt; Branch and bound seemed to be a robust method, however the time required to solve increases exponentially as the number of variables increases.&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt; In the 1950s and 60s, Ralph Gomory developed a different method using cutting planes to solve integer problems. Gomory Cuts were quicker to solve but gave less reliable solutions. The exploration of incorporating Gomory cuts into the branch and bound method gained popularity when solutions showed greater efficacy upon combination of these methods. The joint algorithm is called Branch and Cut. &lt;br /&gt;
&lt;br /&gt;
In the early 2000s, Akrotirianakis, Maros, and Rustem built on the findings of their predecessors to expand the application of the branch and cut method to non linear programs. More research surfaced on broader applications of this method, and with this grew the development of computational programs such as CPLEX and XPRESS-MP to run and solve these problems using given iterative solution methods.&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Applications=== &lt;br /&gt;
Mixed integer non linear programming models can cover a wide variety of engineering and design problems with discrete variable values. &lt;br /&gt;
&lt;br /&gt;
The Branch and Cut method is well-known for its long-time use in solving the [https://optimization.mccormick.northwestern.edu/index.php/Traveling_salesman_problems Traveling Salesman Problem].&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt; In 1991, Padberg and Rinaldi developed a solution to large-scale symmetric traveling salesman problems using the branch and cut method.&amp;lt;sup&amp;gt;7&amp;lt;/sup&amp;gt; MINLP problems involving scheduling, network design (including facility locating), and a variety of simplified biological models can be solved using the branch and cut algorithm given integer-valued variables.&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=Formulation= &lt;br /&gt;
Given that &amp;lt;math&amp;gt;f(x)&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;g(x)&amp;lt;/math&amp;gt;, and &amp;lt;math&amp;gt;h(x)&amp;lt;/math&amp;gt; are convex and continuously differentiable, a general MINLP problem solvable by the Branch and Cut method can be formulated as follows: &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;min Z(x,y)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;=&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;C^T y&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;+ f(x)&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;s.t.&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;g(x) + By \leqslant 0&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;     h(x) = 0&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;     x \in X, y \in {0,1}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Algorithm=&lt;br /&gt;
The Branch and Cut algorithm closely follows that of the Outer Approximation for MINLP, but incorporates Gomory cuts in order to decrease the search space of the problem. &lt;br /&gt;
&lt;br /&gt;
The algorithm presented here is the method developed by Akrotirianakis, Maros, and Rustem [1a]. Variations on this method are described below. &lt;br /&gt;
&lt;br /&gt;
===Initialization: Value of the Search Tree Root=== &lt;br /&gt;
 0. Upper bound = inf, Lower bound = -inf&lt;br /&gt;
&lt;br /&gt;
 1. Initialize &amp;lt;math&amp;gt;y^0&amp;lt;/math&amp;gt;&lt;br /&gt;
The Branch and Cut method begins with an initialization of the binary variables &amp;lt;math&amp;gt;(y)&amp;lt;/math&amp;gt; by defining each with a finite starting value 0 or 1. &lt;br /&gt;
Otherwise, the initialization may be achieved by solving a relaxed NLP setting &amp;lt;math&amp;gt;0\leqslant y \leqslant 1&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
 2. Solve NLP using &amp;lt;math&amp;gt;y^0&amp;lt;/math&amp;gt; &lt;br /&gt;
    &#039;&#039;&#039;if&#039;&#039;&#039; NLP is feasible &lt;br /&gt;
       &amp;amp;rarr; solve &amp;lt;math&amp;gt;Z(x^0, y^0)&amp;lt;/math&amp;gt;. This yields a new &#039;&#039;&#039;upper bound&#039;&#039;&#039; to the original problem. Move to step 3 &lt;br /&gt;
    &#039;&#039;&#039;else&#039;&#039;&#039; NLP is not feasible &lt;br /&gt;
       &amp;amp;rarr; if an initial set of values for &amp;lt;math&amp;gt;y^0&amp;lt;/math&amp;gt; was chosen, choose a new &amp;lt;math&amp;gt;(y^0)&amp;lt;/math&amp;gt;. &lt;br /&gt;
         Repeat 1 and 2 until a feasible solution is obtained. Move to step 3. &lt;br /&gt;
&lt;br /&gt;
The NLP should result in an initial feasible solution &amp;lt;math&amp;gt;x^0&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;y^0&amp;lt;/math&amp;gt; in which &amp;lt;math&amp;gt;Z(x^0, y^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\leq \infty&amp;lt;/math&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
Otherwise, if the relaxed NLP is infeasible, then the MINLP problem is infeasible.&lt;br /&gt;
&lt;br /&gt;
 3. Solve MILP&lt;br /&gt;
&lt;br /&gt;
Using &amp;lt;math&amp;gt;x^0&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;y^0&amp;lt;/math&amp;gt; obtained from the NLP, solve the linearized objective and constraints according to the following equations: &lt;br /&gt;
    &lt;br /&gt;
&amp;lt;math&amp;gt;min&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;a&amp;lt;/math&amp;gt; &lt;br /&gt;
    &lt;br /&gt;
&amp;lt;math&amp;gt;s.t.&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;a \leqslant UB^0 &amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;f(x^0,y^0) +&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\nabla\ f(x^0,y^0)^T&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\binom{x-x^0}{y-y^0} &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\leqslant&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;a&amp;lt;/math&amp;gt; &lt;br /&gt;
    &lt;br /&gt;
&amp;lt;math&amp;gt;g(x^0,y^0) +&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\nabla\ g(x^0,y^0)^T&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\binom{x-x^0}{y-y^0} &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\leqslant&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;0&amp;lt;/math&amp;gt;  &lt;br /&gt;
    &lt;br /&gt;
&amp;lt;math&amp;gt;y \in&amp;lt;/math&amp;gt; {0,1}&lt;br /&gt;
&lt;br /&gt;
The solution to the MILP will yield a new set of &amp;lt;math&amp;gt;(x)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;(y)&amp;lt;/math&amp;gt;. Call these the new &amp;lt;math&amp;gt;(x^0)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;(y^0)&amp;lt;/math&amp;gt;; this is the &#039;&#039;&#039;root&#039;&#039;&#039; of the branch and bound search tree.&lt;br /&gt;
&lt;br /&gt;
===Solve Nodes===&lt;br /&gt;
 4. Select an unsolved node &lt;br /&gt;
    &#039;&#039;&#039;If&#039;&#039;&#039; no nodes are left, &lt;br /&gt;
       &#039;&#039;&#039;then&#039;&#039;&#039; the problem is solved and &amp;lt;math&amp;gt;Z(x^j, y^j)&amp;lt;/math&amp;gt; is the optimal solution. &lt;br /&gt;
&lt;br /&gt;
 5. Solve MILP (formulation below) &lt;br /&gt;
    &#039;&#039;&#039;If&#039;&#039;&#039; all &amp;lt;math&amp;gt;y^k&amp;lt;/math&amp;gt; = {0,1} &lt;br /&gt;
       This node is the new incumbent &lt;br /&gt;
       &#039;&#039;&#039;and&#039;&#039;&#039; Z obtained from this set of &amp;lt;math&amp;gt;x^k&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;y^k&amp;lt;/math&amp;gt; is the current optimal solution. &lt;br /&gt;
       &#039;&#039;&#039;and&#039;&#039;&#039; add linearizations of the objective and constraints &lt;br /&gt;
          using &amp;lt;math&amp;gt;x^k&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;y^k&amp;lt;/math&amp;gt; to each unsolved node according to the equation below. &lt;br /&gt;
          Go to step 6. &lt;br /&gt;
    &#039;&#039;&#039;Else&#039;&#039;&#039; a &amp;lt;math&amp;gt;y^k&amp;lt;/math&amp;gt; &amp;amp;notin; {0,1} &lt;br /&gt;
        Go to step 7. &lt;br /&gt;
&lt;br /&gt;
Solve the corresponding MILP of the problem using the previous feasible solution &amp;lt;math&amp;gt;(x^j, y^j)&amp;lt;/math&amp;gt; in the following form:   &lt;br /&gt;
&lt;br /&gt;
For the first node (excluding the root), &amp;lt;math&amp;gt;(x^j, y^j)&amp;lt;/math&amp;gt; will be &amp;lt;math&amp;gt;(x^0, y^0)&amp;lt;/math&amp;gt;, etc. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;min&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;a&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;s.t.&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;a \leqslant UB^j &amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;f(x^j,y^j) +&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\nabla\ f(x^j,y^j)^T&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\binom{x-x^j}{y-y^j} &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\leqslant&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;a&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;g(x^j,y^j) +&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\nabla\ g(x^j,y^j)^T&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\binom{x-x^j}{y-y^j} &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\leqslant&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;0&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\forall j \in T&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;T&amp;lt;/math&amp;gt; is the set containing all indices of the solution tree in which the NLP for &amp;lt;math&amp;gt;y^j&amp;lt;/math&amp;gt; is feasible. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;g(x^i,y^i) +&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\nabla\ g(x^i,y^i)^T&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\binom{x-x^i}{y-y^i} &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\leqslant&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;0&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\forall i \in S&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;S&amp;lt;/math&amp;gt; is the set containing all indices of the solution tree in which the NLP for &amp;lt;math&amp;gt;y^i&amp;lt;/math&amp;gt; is infeasible. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Gamma x + \Gamma y \leqslant \epsilon&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
This constraint represents the Gomory cuts generated as the algorithm runs. This line decreases the feasible region of the original problem. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;y \in&amp;lt;/math&amp;gt; {0,1}&lt;br /&gt;
&lt;br /&gt;
The solution to this MILP will yield a new set &amp;lt;math&amp;gt;(x^k)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;(y^k)&amp;lt;/math&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 6. Solve relaxed NLP &lt;br /&gt;
    Using the MILP solution &amp;lt;math&amp;gt;y^k&amp;lt;/math&amp;gt; &lt;br /&gt;
    This should result in a new solution &amp;lt;math&amp;gt;x^j&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;y^j = y^k&amp;lt;/math&amp;gt;. &lt;br /&gt;
    &#039;&#039;&#039;If&#039;&#039;&#039; NLP&amp;lt;math&amp;gt;(y^j)&amp;lt;/math&amp;gt; is feasible &lt;br /&gt;
       &amp;amp;rarr; solve &amp;lt;math&amp;gt;Z(x^j, y^j)&amp;lt;/math&amp;gt;. &lt;br /&gt;
       &#039;&#039;&#039;If&#039;&#039;&#039; &amp;lt;math&amp;gt;Z(x^j, y^j)&amp;lt;/math&amp;gt; is less than the previous upper bound &lt;br /&gt;
          &#039;&#039;&#039;then&#039;&#039;&#039; this yields a new &#039;&#039;&#039;upper bound&#039;&#039;&#039; &amp;lt;math&amp;gt;UB^j&amp;lt;/math&amp;gt; to the original problem. &lt;br /&gt;
          Fathom all unsolved nodes that do not satisfy this bound. &lt;br /&gt;
          Return to step 4 &lt;br /&gt;
       &#039;&#039;&#039;Else&#039;&#039;&#039; retain the old upper bound. &lt;br /&gt;
          Return to step 4 &lt;br /&gt;
    &#039;&#039;&#039;Else&#039;&#039;&#039; NLP&amp;lt;math&amp;gt;(y^j)&amp;lt;/math&amp;gt; is not feasible &lt;br /&gt;
       &amp;amp;rarr; Fathom node. &lt;br /&gt;
       Return to step 4&lt;br /&gt;
&lt;br /&gt;
===Cutting vs Branching=== &lt;br /&gt;
When the solution to the linear relaxation in Step 5 contains fractional values on binary variables &amp;lt;math&amp;gt;y&amp;lt;/math&amp;gt;, either a cutting plane should be generated to exclude that solution or branching can be done at that node to constrain the fractional variable to its binary values 0 or 1. &lt;br /&gt;
&lt;br /&gt;
 7. Calculate &amp;quot;skip factor&amp;quot; &lt;br /&gt;
    &#039;&#039;&#039;If&#039;&#039;&#039; a cut is to be performed, go to step 8. &lt;br /&gt;
    &#039;&#039;&#039;Else&#039;&#039;&#039; the cut is to be skipped, go to step 9. &lt;br /&gt;
&lt;br /&gt;
The decision whether or not to perform a Gomory cut is based on a &amp;quot;skip factor&amp;quot; &amp;lt;math&amp;gt;S&amp;lt;/math&amp;gt; which is calculated throughout the enumeration of the tree. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;S =&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;min[S_{max}&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;\dfrac{t + wcd \log_{10} p}{t f}]&amp;lt;/math&amp;gt; &lt;br /&gt;
 &lt;br /&gt;
where t = number of integer nodes solved &lt;br /&gt;
&lt;br /&gt;
S_{max}, c, w = positive constant parameter  &lt;br /&gt;
&lt;br /&gt;
p = number of binary variables y &lt;br /&gt;
&lt;br /&gt;
f = number of violated binary variables in &amp;lt;math&amp;gt;y^k&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Gomory Cuts=== &lt;br /&gt;
 8. Generate an inequality to exclude the fractional variable solution &lt;br /&gt;
&lt;br /&gt;
&amp;lt;&amp;lt;Equation 3. for gomory mixed integer cuts&amp;gt;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Add these cuts to the constraints of the original problem. &lt;br /&gt;
&lt;br /&gt;
Return to step 5&lt;br /&gt;
&lt;br /&gt;
===Branching=== &lt;br /&gt;
 9. Constrain the/a variable in &amp;lt;math&amp;gt;y^k&amp;lt;/math&amp;gt; to branch off of. &lt;br /&gt;
&lt;br /&gt;
One branch will set &amp;lt;math&amp;gt;y^k = 0&amp;lt;/math&amp;gt; and the other &amp;lt;math&amp;gt;y^k = 1&amp;lt;/math&amp;gt;, creating two new nodes. Return to step 5, following one of these nodes.&lt;br /&gt;
&lt;br /&gt;
=Variations= &lt;br /&gt;
A variation on the Branch and Cut method presented by Sven Leyffer in 2013 utilizes cuts for every fractional solution and branches only when solutions are still fractional after multiple cuts. &amp;lt;sup&amp;gt;8&amp;lt;/sup&amp;gt; Thus, the algorithm is the same until step 7, where cuts are always chosen to eliminate solutions where &amp;lt;math&amp;gt;y^k&amp;lt;/math&amp;gt; &amp;amp;notin; {0,1}. The inequality generated to produce this cut is added to the constraints of the original problem. &lt;br /&gt;
&lt;br /&gt;
=Conclusion= &lt;br /&gt;
The general Branch and Cut algorithm follows a scheme which grows exponentially as variables are added to the original design problem. The addition of Gomory Cuts allows bounds to be tightened, reducing the number of feasible nodes to be tested and allowing the solver to converge on the optimal solution with less iterations. However, the formation of inequalities to generate these cuts take time and may slow down the actual resolution of the MINLP problem. The larger the problem, the more useful the cuts can be.&lt;br /&gt;
&lt;br /&gt;
=References=&lt;br /&gt;
&lt;br /&gt;
# I. Akrotirianakis, I. Maros, and B. Rustem. An Outer Approximation Based Branch and Cut Algorithm for convex 0-1 MINLP Problems. &#039;&#039;Optimization Methods and Software.&#039;&#039; 21:47, 2001 https://www.doc.ic.ac.uk/research/technicalreports/2000/DTR00-6.pdf&lt;br /&gt;
# S. Leyffer and J. Linderoth. Introduction to Integer Nonlinear Optimization, Nonlinear Branch-and-Cut, Theoretical and Computational Challenges. &#039;&#039;Argonne National Laboratory.&#039;&#039; 2007. http://science.energy.gov/~/media/ascr/pdf/workshops-conferences/mathtalks/Leyffer.pdf&lt;br /&gt;
# A. H. Land and A. G. Doig. An Automatic method of solving discrete programming problems. &#039;&#039;Econometrica,&#039;&#039; 28:497 520, 1960. &lt;br /&gt;
# R. J. Dakin. A tree search algorithm for mixed integer probramming problems. &#039;&#039;Computer Journal,&#039;&#039; 8:250 255, 1965. &lt;br /&gt;
# S. Albert. Solving Mixed Integer Linear Programs Using Branch and Cut Algorithm. &#039;&#039;Masters of Mathematics, North Carolina State University.&#039;&#039; 2006. http://www4.ncsu.edu/~kksivara/masters-thesis/shon-thesis.pdf (good for milp) &lt;br /&gt;
# J. E. Mitchell. Branch-and-Cut Algorithms for Combinatorial Optimization Problems. &#039;&#039;Mathematical Sciences,&#039;&#039; 1999. http://homepages.rpi.edu/~mitchj/papers/bc_hao.pdf &lt;br /&gt;
# M. Padberg and G. Rinaldi. A Branch-and-Cut Algorithm for the Resolution of Large-Scale Symmetric Traveling Salesman Problems. &#039;&#039;SIAM Rev,&#039;&#039; 33(1), 60-100, 1991. http://epubs.siam.org/doi/abs/10.1137/1033004?journalCode=siread&lt;br /&gt;
# S. Leyffer. Mixed-Integer Nonlinear Optimization: Applications, Algorithms, and Computation III. &#039;&#039;Graduate School, Universite catholique de Louvain.&#039;&#039; 2013. https://wiki.mcs.anl.gov/leyffer/images/4/42/Socn-3.pdf&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Nonconvex_generalized_disjunctive_programming_(GDP)&amp;diff=6638</id>
		<title>Nonconvex generalized disjunctive programming (GDP)</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Nonconvex_generalized_disjunctive_programming_(GDP)&amp;diff=6638"/>
		<updated>2022-04-01T15:25:53Z</updated>

		<summary type="html">&lt;p&gt;Asa273: Created page with &amp;quot;Author: Kaiwen Li (ChE345 Spring 2015) &amp;lt;br/&amp;gt; Steward: Prof.Fengqi You, Dajun Yue &amp;lt;br/&amp;gt; =Introduction= General disjunctive programming, GDP, is an alternative approach to repre...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Author: Kaiwen Li (ChE345 Spring 2015) &amp;lt;br/&amp;gt;&lt;br /&gt;
Steward: Prof.Fengqi You, Dajun Yue&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=Introduction=&lt;br /&gt;
General disjunctive programming, GDP, is an alternative approach to represent the formulation of traditional Mixed-Integer Nonlinear Programming, solving discrete/continuous optimization problems. By using algebraic constraints, disjunctions and logic propositions, Boolean and continuous variables are involved in the GDP formulation. The formulation process of GDP problem are more intuitive, and the underlying logic structure of the problem can be kept, so that solution can be found more efficiently. GDP has been successfully applied to Process Design and Planning and Scheduling areas.&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
However, funtions in GDP problem sometimes could be nonconvex. Due to nonconvexites, conventional MINLP algorithms are often trapped in suboptimal solutions. Thus, solutions to nonconvex GDP has been receiving increasing attention.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Algorithm= &lt;br /&gt;
In the GDP formulation, some functions might be nonconvex, which will lead to a nonconvex GDP problem. Traditional algorithms for MINLP such as Generalized Benders Decomposition (GBD), or Outer Approximation (OA) will fail to provide a global optimum because the solution of the NLP subproblem can be only a local optimum, while the cuts in master problem may not be valid either. Therefore, in order to get a global optimum, we need to introduce special algorithm for nonconvex GBD problems.&amp;lt;br/&amp;gt;&lt;br /&gt;
Most of the methods rely on spatial branch and bound method.&lt;br /&gt;
&lt;br /&gt;
==Motivation==&lt;br /&gt;
In order to find the best design and operation of a system in many problems in engineering, a set of algebraic expressions are used to reduce the problem with continuous and discrete variables. Normally theses problems lead to Mixed-Integer Nonlinear Programming (MINLP). However, in order to represent the behavior of physical, chemical, biological, financial or social systems accurately, nonlinear expressions are often used and leads to a MINLP with a nonconvex solution space. Instead of reaching a global optimal, this may give rise to local solutions that are suboptimal. Meanwhile, most algorithms for nonconvex problems are just particular implementation of the spatial branch and bound framework. Therefore, in order to find the global optimum of a large-scaled nonconvex MINLP models in reasonable computational time, Grossmann and others proposed nonconvex generalized disjunctive programming method.&lt;br /&gt;
&lt;br /&gt;
==General Formulation for GDP==&lt;br /&gt;
Consider the following Generalized Disjunctive Programming problem, which includes Boolean variables, disjunctions and logic propositions:&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;min Z&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;=&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\sum_{k\in K} c_k&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;+ f(x)&amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
s.t. &amp;lt;math&amp;gt;r(x)\le 0&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\bigvee_{j\in J_k}&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\begin{bmatrix} Y_{jk} \\ g_{jk}(x) \le 0 \\ c_k = \gamma_{jk} \end{bmatrix}&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt; k\in K&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\Omega(Y) = True &amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;0 \le x \le U&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;x \in R^n&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt; c_k \in R^1&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt; Y_{jk} \in {true, false}&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where, &amp;lt;math&amp;gt;f:R^n \rightarrow R^1&amp;lt;/math&amp;gt; is a function of the continuous variables x in the objective function, &amp;lt;math&amp;gt;g:R^n \rightarrow R^1&amp;lt;/math&amp;gt; bolongs to the set of global constraints, the disjuctions &amp;lt;math&amp;gt; k\in K&amp;lt;/math&amp;gt; are composed of a number of terms &amp;lt;math&amp;gt; j\in J_k&amp;lt;/math&amp;gt;, which is connected by the OR operator. &amp;lt;math&amp;gt;Y_{jk}&amp;lt;/math&amp;gt; is a Boolean varibale, &amp;lt;math&amp;gt;g_{jk}(x) \le 0&amp;lt;/math&amp;gt; is a set of inequalities, and &amp;lt;math&amp;gt;c_k&amp;lt;/math&amp;gt; is a cost variable. When &amp;lt;math&amp;gt;Y_{jk}&amp;lt;/math&amp;gt; is true, &amp;lt;math&amp;gt;g_{jk}(x) \le 0&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;c_k&amp;lt;/math&amp;gt; are enforced.Also, &amp;lt;math&amp;gt;x&amp;lt;/math&amp;gt;represents continuous variables, with lower and upper bounds.Each term in the disjunctions gives rise to a nonempty feasible region which is generally nonconvex. Also, &amp;lt;math&amp;gt;\Omega(Y) = True &amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt; are logic propositions for the Boolean variables.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Overall Procedure==&lt;br /&gt;
The following flowchart(Fig.1) shows the overall procedure of the proposed two-level branch and bound algorithm.&lt;br /&gt;
[[File:Flowchart01_KL.png|600px]]&amp;lt;br/&amp;gt;&lt;br /&gt;
First, introduce convex underestimators in the non-convex GDP problem (P), and construct the underestimating problem (R). This convex GDP problem is then reformulated as the convex NLP problem (CRP) by using the convex hull relaxation of each disjunction, which generates valid lower bound. Initial upper bound is obtained in step 0, by sloving P-MIP problem. It is a MINLP reformulation of the nonconvex GDP by a standard MINLP method. Then, use upper bound for bound contraction to reduce the feasible region, which is solved as a Bound Contraction Problem (BCP) in step 1. Next in step 2, discrete branch and bound method is applied at the first level to slove problem (CRP). After fixing all Boolean variables, solve the corresponding nonconvex NLP problems for a upper bound by using spatial branch and bound at the second level. Then, problem (CRP) is solved with fixed discrete choice in step 3.&lt;br /&gt;
&lt;br /&gt;
==Detailed Formulation and Models==&lt;br /&gt;
===Convex Relaxation of GDP===&lt;br /&gt;
The following reformulation shows the introduction of valid convex underestimating functions to change Problem (P) into a convex GDP problem.&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;min Z^R&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;=&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\sum_{k\in K} c_k&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;+ \bar{f}(x)&amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
s.t. &amp;lt;math&amp;gt;\bar{r}(x)\le 0&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\bigvee_{j\in J_k}&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\begin{bmatrix} Y_{jk} \\ \bar{g}_{jk}(x) \le 0 \\ c_k = \gamma_{jk} \end{bmatrix}&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt; k\in K&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\Omega(Y) = True &amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;0 \le x \le U&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;,&amp;lt;math&amp;gt;c_k \ge 0&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;x \in R^n&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;c_k \in R^1&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt; Y_{jk} \in \{ true, false\} &amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
where &amp;lt;math&amp;gt;\bar{f}&amp;lt;/math&amp;gt;,&amp;lt;math&amp;gt;\bar{r}&amp;lt;/math&amp;gt;,&amp;lt;math&amp;gt;\bar{g}&amp;lt;/math&amp;gt; are valid convex underestimators so that &amp;lt;math&amp;gt;\bar{f}(x) \le f(x)&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;\bar{r}(x) \le 0&amp;lt;/math&amp;gt;,&amp;lt;math&amp;gt;\bar{g}(x) \le 0&amp;lt;/math&amp;gt; are satisfied if &amp;lt;math&amp;gt;r(x) \le 0&amp;lt;/math&amp;gt;,&amp;lt;math&amp;gt;g(x) \le 0&amp;lt;/math&amp;gt; (see fig.2)&amp;lt;br/&amp;gt;&lt;br /&gt;
[[File:Fig02_KL.png|450px]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Considering problem (R) is a convex GDP, by replacing each disjunction by its convex hull we can relax problem (R), which generates the folloing convex NLP model:&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;min Z^L&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;=&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;\sum_{k\in K}\sum_{j\in J_k} \gamma_{jk}\lambda_{jk} + \bar{f}(x)&amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
s.t. &amp;lt;math&amp;gt;\bar{r}(x)\le 0&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; x = \sum_{j \in J_k} \nu_{jk}, \sum_{j \in J_k} \lambda_{jk} = 1,  k\in K&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; 0 \le \nu_{jk} \le \lambda_{jk}U_{jk}, j \in J_k, k\in K&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; \lambda_{jk}\bar{g}_{jk}(\nu_{jk}/\lambda_{jk}) \le 0, j \in J_k, k\in K&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; A\lambda \le a &amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;0 \le x, \nu_{jk} \le U, 0 \le \lambda_{jk} \le 1, j \in J_k, k\in K, (CRP)&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
where &amp;lt;math&amp;gt;\nu_{jk}&amp;lt;/math&amp;gt; is the disaggregated continuous variable for the  &amp;lt;math&amp;gt;j &amp;lt;/math&amp;gt;th term in the  &amp;lt;math&amp;gt;k &amp;lt;/math&amp;gt;th disjunction and  &amp;lt;math&amp;gt;\lambda_{jk}&amp;lt;/math&amp;gt; is the corresponding multiplier for each term &amp;lt;math&amp;gt;j \in J_k&amp;lt;/math&amp;gt; in a given disjunction &amp;lt;math&amp;gt;k\in K&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Given the problem (R) yields a lower bound, the problem (CRP) is a relaxation of problem (R).&lt;br /&gt;
&lt;br /&gt;
===Global Upper Bound Subproblem===&lt;br /&gt;
This is step is to obtain a valid upper bound for problem (P) based on MINLP reformulation of (P) using big-M formulation.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;min Z = \sum_{k\in K}\sum_{j\in J_k} \gamma_{jk}y_{jk} + f(x)&amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
s.t. &amp;lt;math&amp;gt;r(x)\le 0&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;g_{jk}(x) \le M_jk(1-y_jk), j \in J_k, k\in K&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; x = \sum_{j \in J_k} y_{jk}= 1,  k\in K&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; Ay \le a &amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;0 \le x \le U, y_{jk} \in \{0,1\}, j \in J_k, k\in K, (P-MIP)&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
where &amp;lt;math&amp;gt;M_jk&amp;lt;/math&amp;gt; is the big-M parameter, which provides a valid upper bound to the violation of &amp;lt;math&amp;gt;g_jk \le 0&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;U&amp;lt;/math&amp;gt; is an upper bound to &amp;lt;math&amp;gt;x&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Bound Contraction Procedure===&lt;br /&gt;
The bound contraction scheme is designed to tighten the lower and upper bound of a given continuous variable &amp;lt;math&amp;gt;x_i&amp;lt;/math&amp;gt;, which will eliminate the nonoptimal subregions and accelerate the search. This will greatly reduce the difference between lower and upper bounds of the objective function and save computational work.&amp;lt;br/&amp;gt;&lt;br /&gt;
The contraction scheme is shown by the following NLP problem:&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;min/max   &amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;x_i  &amp;lt;/math&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
s.t. &amp;lt;math&amp;gt;\sum_{k\in K}\sum_{j\in J_k} \gamma_{jk}\lambda_{jk} + \bar{f}(x)r(x)\le GUB&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\bar{r}(x) \le 0 &amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; x = \sum_{j \in J_k}\nu_{jk}, \sum_{j \in J_k}\lambda_{jk}= 1,  k\in K&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; 0 \le \nu_{jk} \le \lambda_{jk}U_{jk},j \in J_K, k \in K&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; \lambda_{jk}\bar{g}_{jk}(\nu_{jk}/\lambda_{jk}) \le 0, j \in J_k, k\in K&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; Ay \le a &amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;0 \le \nu^{jk} \le U, 0 \le \lambda_{jk} \le 1, j \in J_k, k\in K, (BCP)&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
As is shown in the following Fig.3, if the solution point &amp;lt;math&amp;gt;x_i&amp;lt;/math&amp;gt; of problem (CRP) does not lie at its bound, then we solve the NLP problem (CRP) and update the upper and lower bounds based on the relative distance from the solution to each bound of to decide the direction of bound contraction. Bound contraction is applied to only the continuous variables. Not much reduction will be made if the contraction is not successful, and then move to next variable.&amp;lt;br/&amp;gt;&lt;br /&gt;
[[File:Fig03_KL.png|300px]]&amp;lt;br/&amp;gt;&lt;br /&gt;
===Branch and Bound on Boolean Variables===&lt;br /&gt;
This step is where branch and bound method is applied in the space of the terms of the disjunctions by solving the relaxed convex NLP problem (CRP) at each node. The rule is to select the variable &amp;lt;math&amp;gt;\lambda_{jk}&amp;lt;/math&amp;gt; with the largest fractional value in the solution. By creating two child nodes with &amp;lt;math&amp;gt;\lambda_{jk}=1&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;\lambda_{jk}=0&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;Y_{jk}&amp;lt;/math&amp;gt; is fixed in problem (R) respectively. The nodes number should be finite due to finite Boolean variables and the global lower bound increases monotonically. &amp;lt;br/&amp;gt;&lt;br /&gt;
Upper bound needs to be updated when there is a gap between the solution of this problem and the original nonconvex GDP problem (P). When the feasible solution to problem (R) is obtained and the gap between nonconvex term and convex underestimator in problem (P) and problem (R) is nonzero, all Boolean variables should be fixed and Spatial Branch and Bound Method should be introduced.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Spatial Branch and Bound Method===&lt;br /&gt;
Since there is a specific wiki page introducing this method, there is no need to discuss the detailed algorithm here. In this case, by solving problem (CRP), the nonconvex term with the max gap is chosen. Then, choose the middle point of the variable bound as the branching point. Lastly, select the node with lowest objective value. The current node will be fathomed if the lowest objective value of the node is greater than GUB.&lt;br /&gt;
==Advantages and Disadvantages==&lt;br /&gt;
===Advantages===&lt;br /&gt;
Many application shows that tighter lower bounds can be obtained in bilinear and concave problems by applying basic Nonconvex GDP steps, which often leads to a significant reduction of the numbers of nodes in Spatial Branch and Bound method. This is a direct indication of achieving tightening bounds.&amp;lt;br/&amp;gt;&lt;br /&gt;
Meanwhile, GDPs are often reformulated as an MINLP, which enables us to take advantages of the existing MINLP solvers.&lt;br /&gt;
&lt;br /&gt;
===Disadvantages===&lt;br /&gt;
The main problem about this method is that the question how to efficiently implement the strong relaxations within a spatial branch and bound framework in a large scale system still cannot be answered.&lt;br /&gt;
&lt;br /&gt;
=Applications and Examples=&lt;br /&gt;
==Application: Solution Algorithm for nonconvex GDP problems==&lt;br /&gt;
===Step 0 Heuristic Search (Nonconvex MINLP)===&lt;br /&gt;
Use MINLP solvers (such as DICOPT++) to solve the nonconvex problem (P-MIP), and set GUB as the best upper bound and let &amp;lt;math&amp;gt;(Y^*,x*)&amp;lt;/math&amp;gt; be the solution.&amp;lt;br/&amp;gt;&lt;br /&gt;
===Step 1 Bound Contraction (Convex NLP)===&lt;br /&gt;
# Initialize the Relative Distance from &amp;lt;math&amp;gt;x^*_i&amp;lt;/math&amp;gt; to each bound&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;RDL_i = \frac{x^*_i - x^L_i}{x^U_i - x^L_i}, RDU_i = \frac{x^U_i - x^*_i}{x^U_i - x^L_i}&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
# Increase iteration, solve problem (BCP)&amp;lt;br/&amp;gt;&lt;br /&gt;
Update bound and continue with &amp;lt;math&amp;gt;x^*_i&amp;lt;/math&amp;gt; when contraction is greater than &amp;lt;math&amp;gt;SP_M&amp;lt;/math&amp;gt;. Otherwise select next x.&amp;lt;br/&amp;gt;&lt;br /&gt;
# Return to 2 and repeat until max iteration.&amp;lt;br/&amp;gt;&lt;br /&gt;
===Step 2 Branch and Bound on Discrete Variables (Convex NLP)===&lt;br /&gt;
# set tolerance &amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt; for difference in &amp;lt;math&amp;gt;Z^L&amp;lt;/math&amp;gt; and GUB. Set &amp;lt;math&amp;gt;\varepsilon&amp;lt;/math&amp;gt; for max gap.&lt;br /&gt;
# Solve problem (CRP) to obtain lower bound &amp;lt;math&amp;gt;Z^L&amp;lt;/math&amp;gt;. Update lowest lower bound as GLB.&lt;br /&gt;
# Fathom, go to step 3 or Branch on the node.&lt;br /&gt;
===Step 3 Spatial Branch and Bound (Convex NLP)===&lt;br /&gt;
# Fix all &amp;lt;math&amp;gt;\lambda_{jk}&amp;lt;/math&amp;gt; according to solution from step 2&lt;br /&gt;
# Solve problem (CRP) until no open node with &amp;lt;math&amp;gt;Z^L \le GUB - \alpha&amp;lt;/math&amp;gt;&lt;br /&gt;
# Go to step 2&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
===Optimal structure for process system===&lt;br /&gt;
The system net work is shown in the following Fig4.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Fig04_KL.png|thumb|left|450px|Fig4. Superstructure of the process]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The formulation for this problem is shown as follows:&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; min Z =-35P1A - 30P2B +10F1 + 8F2 + F4A + F4B + 4F5A + 4F5B + 2CF + 50CD&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;s.t.  F3A = 0.55F1 + 0.5F2&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;F3B = 0.45F1 + 0.5F2&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;P1A = F8A + F10A + F6A &amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;P1B = F8B + F10B + F6B &amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;P2A = F9A + F11A + F7A&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;P2B = F9B +F11B+F7B&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;F6A=E6F3A,F6B=F6F3B&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;F7A=E7F3A,F7B=E7F3B&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;E4+D5+D6+D7 = 1&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;P1A \ge 4.0P1B, P2B \ge 3.0P2A&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;P1A+P1B \le 15, P2A +P2B \le 18&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\begin{bmatrix}&lt;br /&gt;
YF\\&lt;br /&gt;
F4A=E4F3A,F4B=E4F3B\\&lt;br /&gt;
2.5 \le F4A+F4B \le 25\\&lt;br /&gt;
F8A=0.85F4A, F8B=0.20F4B\\&lt;br /&gt;
F9A=0.15F4A,F9B=0.8F4B\\&lt;br /&gt;
CF=2&lt;br /&gt;
\end{bmatrix}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\or&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\begin{bmatrix}&lt;br /&gt;
\lnot YF\\&lt;br /&gt;
F4A=F4B=0\\&lt;br /&gt;
F8A=F8B=0\\&lt;br /&gt;
F9A=F9B=0\\&lt;br /&gt;
E4=0\\&lt;br /&gt;
CF=0&lt;br /&gt;
\end{bmatrix}&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\begin{bmatrix}&lt;br /&gt;
YD\\&lt;br /&gt;
F5A=E5F3A,F5B=E5F3B\\&lt;br /&gt;
2.5 \le F5A+F5B \le 25\\&lt;br /&gt;
F10A=0.975F5A, F10B=0.050F5B\\&lt;br /&gt;
F11A=0.025F5A,F11B=0.950F5B\\&lt;br /&gt;
CD=25&lt;br /&gt;
\end{bmatrix}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\or&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\begin{bmatrix}&lt;br /&gt;
\lnot YD\\&lt;br /&gt;
F5A=F5B=0\\&lt;br /&gt;
F10A=F10B=0\\&lt;br /&gt;
F11A=F11B=0\\&lt;br /&gt;
E5=0\\&lt;br /&gt;
CD=0&lt;br /&gt;
\end{bmatrix}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;0 \le CF,CD; F1,F2 \le 25; 0 \le E4,E5,E6,E7 \le 1;&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;Y\in \{true,false\}&amp;lt;/math&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
The optimal solution is -510.08, and &amp;lt;math&amp;gt; F1^* = 8, F2^* = 25, P1^* = 15, P2^* = 18, E^* = (0.108,0.758,0,0.134)&amp;lt;/math&amp;gt;, and &amp;lt;math&amp;gt;Y^*=(true,true)&amp;lt;/math&amp;gt;, shown as the following Fig5.&amp;lt;br/&amp;gt;&lt;br /&gt;
[[File:Fig05_KL.png|thumb|left|450px|Fig5. Optimal Solution]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here is the detailed explanation of the method applied in this example. Bilinear terms are replaced by continuous variables and linear underestimators and overestimators are introduced to construct the relaxed convex GDP problem (R). In step 0, which is mentioned above, DICOPT++ finds the trivial solution of &amp;lt;math&amp;gt;0.0&amp;lt;/math&amp;gt; ath first NLP. By solving 14 LP subproblems in step 1, the bound is reduced &amp;lt;math&amp;gt;54.17%&amp;lt;/math&amp;gt; for continuous variables. In step 2, discrete branch and bound on problem (CRP) reaches a feasible solution to the relaxed GDP at the third node, where &amp;lt;math&amp;gt;Y^L=(1,1)&amp;lt;/math&amp;gt; and objective function of &amp;lt;math&amp;gt;-661.56&amp;lt;/math&amp;gt;. When switches to Spatial Branch and Bound in step 3, &amp;lt;math&amp;gt;Y^F=(1,1)&amp;lt;/math&amp;gt; is fixed. Then after 27 nodes and gap being reduced, upper bound is found to be &amp;lt;math&amp;gt;-510.08&amp;lt;/math&amp;gt;. Using the upper bound to update GUB value in step 2, a cut to exclude &amp;lt;math&amp;gt;Y = (true,true)&amp;lt;/math&amp;gt; is added to the previous node and the problem (CRP) is resolved, which leads to a infeasible solution. Then by closing current node and backtrack, two more nodes are searched and fathomed by the GUB.&lt;br /&gt;
&lt;br /&gt;
=Conclusion=&lt;br /&gt;
For nonconvex generalized disjunctive programming, specified algorithm can provide a global optimum more efficiently by tightening the lower bound and reduce nodes in Spatial Branch and Bound step, compared with conventional MINLP and GBD algorithms. This method address the increasing need in applications in engineering and other area, where nonlinearity and nonconvexity are essential due to the problem nature.&lt;br /&gt;
&lt;br /&gt;
=References=&lt;br /&gt;
# Lee, Sangbum, and Ignacio E. Grossmann. &amp;quot;New algorithms for nonlinear generalized disjunctive programming.&amp;quot; Computers &amp;amp; Chemical Engineering 24.9 (2000): 2125-2141.&lt;br /&gt;
# Lee, Sangbum, and Ignacio E. Grossmann. &amp;quot;A global optimization algorithm for nonconvex generalized disjunctive programming and applications to process systems.&amp;quot; Computers &amp;amp; Chemical Engineering 25.11 (2001): 1675-1697.&lt;br /&gt;
# Lee, Sangbum, and Ignacio E. Grossmann. &amp;quot;Global optimization of nonlinear generalized disjunctive programming with bilinear equality constraints: applications to process networks.&amp;quot; Computers &amp;amp; chemical engineering 27.11 (2003): 1557-1575.&lt;br /&gt;
# Grossmann, Ignacio E., and Juan P. Ruiz. &amp;quot;Generalized Disjunctive Programming: A framework for formulation and alternative algorithms for MINLP optimization.&amp;quot; Mixed Integer Nonlinear Programming. Springer New York, 2012. 93-115.&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Classical_robust_optimization&amp;diff=6629</id>
		<title>Classical robust optimization</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Classical_robust_optimization&amp;diff=6629"/>
		<updated>2022-04-01T15:20:13Z</updated>

		<summary type="html">&lt;p&gt;Asa273: Created page with &amp;quot;Author Names: Andre Ramirez-Cedeno &amp;lt;br/&amp;gt; Steward: Fengqi You, Dajun Yue &amp;lt;br/&amp;gt;    ==Introduction and History== Robust optimization is a subset of optimization theory that deals...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Author Names: Andre Ramirez-Cedeno &amp;lt;br/&amp;gt;&lt;br /&gt;
Steward: Fengqi You, Dajun Yue &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Introduction and History==&lt;br /&gt;
Robust optimization is a subset of optimization theory that deals with a certain measure of robustness vs uncertainty. This balance of robustness and uncertainty is represented as variability in the parameters of the problem at hand and or its solution [1]. In robust optimization, the modeler aims to find decisions that are optimal for the worst-case realization of the uncertainties within a given set [2]. Robust optimization dates back to the beginning of modern decision theory in the 1950’s. It became a discipline of its own in the 1970’s with paralleled development in other technological fields. &lt;br /&gt;
&lt;br /&gt;
===Uncertainty===&lt;br /&gt;
Sources of uncertainty could be due to at least three different conditions [3].&amp;lt;br/&amp;gt; &lt;br /&gt;
&#039;&#039;&#039;1. Ignorance&#039;&#039;&#039; - such as not knowing exactly how much oil is in a reserve &amp;lt;br/&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;2. Noise&#039;&#039;&#039; - such as measurement errors, or incomplete data &amp;lt;br/&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;3. Events that have not yet occurred&#039;&#039;&#039; - such as future product demand &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===What is Robustness?===&lt;br /&gt;
&lt;br /&gt;
Robustness refers to the ability of a system to cope with errors during an execution. It can also be defined as the ability of an algorithm to continue operating despite abnormalities in calculations. Most algorithms try to find a balance between robustness and efficiency/execution time [4].&lt;br /&gt;
&lt;br /&gt;
==Applications==&lt;br /&gt;
&lt;br /&gt;
Robust Optimization has traditionally been applied in statistics, but is now applied in; &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
1. Operations research &amp;lt;br/&amp;gt;&lt;br /&gt;
2. Control theory &amp;lt;br/&amp;gt;&lt;br /&gt;
3. Finance and Portfolio management &amp;lt;br/&amp;gt;&lt;br /&gt;
4. Logistics &amp;lt;br/&amp;gt;&lt;br /&gt;
5. Manufacturing engineering &amp;lt;br/&amp;gt;&lt;br /&gt;
6. Chemical engineering (Oil field developing) &amp;lt;br/&amp;gt;&lt;br /&gt;
7. Medicine &amp;lt;br/&amp;gt;&lt;br /&gt;
8. Computer science &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In engineering problems, these formulations often take the name of &amp;quot;Robust Design Optimization&amp;quot; or &amp;quot;Reliability Based Design Optimization&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==Simple Mathematical Example==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;&lt;br /&gt;
\begin{align}&lt;br /&gt;
\text{Max} &amp;amp; ~~ 5X + 2Y\\&lt;br /&gt;
\text{s.t} &amp;amp; ~~ cX + dY \le 15 \\&lt;br /&gt;
&amp;amp; ~~ X \le 0 \\&lt;br /&gt;
&amp;amp; ~~ Y \le 0\\&lt;br /&gt;
&amp;amp; ~~ \forall c,d \\&lt;br /&gt;
\end{align}&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This problem is a simple example of a robust optimization problem. The last clause; “for all (c,d) ϵ P” makes it a robust optimization problem because it implies that for a pair (X,Y) to be acceptable, the constraint cX + dY &amp;lt;= 15 must be satisfied for all values of (c,d) including the worst (c,d) pair that maximized the value of cX + dY for the given values of (x,y). For this example, P is simplified to a finite set meaning that for each (c,d) within the set, there is a constraint cX + dY &amp;lt;= 15.&lt;br /&gt;
&lt;br /&gt;
==Engineering Design Example== &lt;br /&gt;
===Rolls-Royce [5]===&lt;br /&gt;
&lt;br /&gt;
Robust design allows variation in the design process and the consideration of the appropriate selection of the nominal design point. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Step 1:&#039;&#039;&#039; Define – Understand what is important to the client and formulate problem in engineering language. Choose design concepts with variation in mind. &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Step 2:&#039;&#039;&#039; Characterize – Generate measurable “critical to quality” (CTQ’s) criteria. For each CTQ, understand the possible sources of variation and measure the effects of variation. &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Step 3:&#039;&#039;&#039; Optimize – For each CTQ, choose a strategy to reduce the effects of variation. &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Step 4:&#039;&#039;&#039; Verify – Use knowledge of variation from previous steps to determine its effects in construction and design plan.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The Variance Transmission equation is given by: &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;math&amp;gt; \sigma_Y^2 &amp;lt;/math&amp;gt; =  &amp;lt;math&amp;gt; \sigma_{X1}^2 \left ( \frac{dY}{dX1} \right )^2 + \sigma_{X2}^2 \left ( \frac{dY}{dX2} \right )^2 + \cdots + \sigma_{Xn}^2 \left ( \frac{dY}{dXn} \right )^2&amp;lt;/math&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Rolls_Royce_robust_design.png]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
[1] Wikipedia page for Robust Optimization &amp;lt;br/&amp;gt;&lt;br /&gt;
[2] http://www.robustopt.com/references/Robust%20Optimization%20Made%20Easy%20with%20ROME.pdf &amp;lt;br/&amp;gt;&lt;br /&gt;
[3] J. Rosenhead. Robustness analysis: keeping your options open. In J. Rosenhead, editor, Rational analysis for a problematic world: problem structuring methods for complexity, uncertainty and conflict, pages 193–218, Chichester, UK, 1989. John Wiley &amp;amp; Sons. &amp;lt;br/&amp;gt;&lt;br /&gt;
[4] http://www.stanford.edu/~bakerjw/Publications/Baker%20et%20al%20(2008)%20Robustness,%20Structural%20Safety.pdf &amp;lt;br/&amp;gt;&lt;br /&gt;
[5] http://web.stanford.edu/group/uq/events/optimization/2011/3-rollsroyce.pdf&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Data_driven_robust_optimization&amp;diff=6626</id>
		<title>Data driven robust optimization</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Data_driven_robust_optimization&amp;diff=6626"/>
		<updated>2022-04-01T15:18:39Z</updated>

		<summary type="html">&lt;p&gt;Asa273: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Author: Watson Fu (ChE 345 Spring 2015)&lt;br /&gt;
&lt;br /&gt;
Steward: Dajun Yue, Fengqi You&lt;br /&gt;
&lt;br /&gt;
= Background =&lt;br /&gt;
&lt;br /&gt;
Robust optimization is a distinct approach to optimizations problems that allows for the incorporation of uncertainty. The usefulness of robust optimization lies in the ability to solve for every realization of the uncertain parameters. As a result, the problem can be solved for the worst-case scenarios of the entire set of uncertainty.&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;1&amp;lt;/span&amp;gt; The most vital aspect of robust optimization is the determination of the uncertainty set. As an uncertainty set grows, it will be able to undertake more realizations. The drawback from assuming a large uncertainty set is the concern of the overall optimization problem becoming computationally intractable. At the same time, a small uncertainty set will yield an answer that is conservative and ignorant of aspects of the uncertainty.&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;2&amp;lt;/span&amp;gt; The general concepts and usage of robust optimization are now being shifted because of the availability and shear volume of data for every aspect of life.&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;3&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
From complex supply chains to internet user preferences, these data is forcing change in how robust optimization problems are being approached. The existence of these data can eliminate the need for unproven assumptions and reasoning, which were previously needed in many robust optimization problems in order to make the problems tractable.&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;2&amp;lt;/span&amp;gt;    &lt;br /&gt;
&lt;br /&gt;
= Description =&lt;br /&gt;
&lt;br /&gt;
Data-driven optimization has already been studied and implemented in various systems, but many of these studies are divergent. The basic principle that ties together varying applications of data-driven optimization is the concept of defining uncertainty through data analysis. For example, take a particular parameter or set, &amp;lt;math&amp;gt;\mathbf{u}&amp;lt;/math&amp;gt; with uncertainty. This set, &amp;lt;math&amp;gt;\mathbf{u}&amp;lt;/math&amp;gt; will be defined as a random variable with probability distribution &amp;lt;math&amp;gt;P&amp;lt;/math&amp;gt;. Data-driven optimization is centered around using pertinent data and analysis of data to help define the probability distribution &amp;lt;math&amp;gt;P&amp;lt;/math&amp;gt;.&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;3&amp;lt;/span&amp;gt; If the probability distribution of a certain random variable can be realized, it can lead to a more complex analysis of a given problem.  &lt;br /&gt;
&lt;br /&gt;
= Methodology and Formulation =&lt;br /&gt;
&lt;br /&gt;
The crux of data-driven robust optimization is the incorporation of hypothesis testing and statistical methods to help design uncertainty sets. &amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;4&amp;lt;/span&amp;gt;. The basic definition of the problem can be seen in this linear constraint:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
\mathbf{u}^Tx\leq b\quad \forall \mathbf{u} \in U&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
The constraint &amp;lt;math&amp;gt;\mathbf{u}&amp;lt;/math&amp;gt; is a robust constraint because it is uncertain. As mentioned before, the probability distribution of &amp;lt;math&amp;gt;\mathbf{u}&amp;lt;/math&amp;gt; will be called &amp;lt;math&amp;gt;P&amp;lt;/math&amp;gt; and it is unknown and the focus of any data-driven robust optimization problem. It is also important to define a probability, &amp;lt;math&amp;gt;\delta&amp;lt;/math&amp;gt;, for a particular set &amp;lt;math&amp;gt;U&amp;lt;/math&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
P(\mathbf{u}^Tx\leq b\quad \forall \mathbf{u})\geq 1-\delta&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
This statement defines the probability &amp;lt;math&amp;gt;\delta&amp;lt;/math&amp;gt; as the probabilistic guarantee with respect to the given probability distribution &amp;lt;math&amp;gt;P&amp;lt;/math&amp;gt; with level &amp;lt;math&amp;gt;\delta&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
These definitions are part of every instance of data-driven robust optimization, but the design of the uncertainty set and the probability distribution is different. These nuanced differences in the specific design of the sets can be changed depending on the data available and the characteristics of the optimization problem.&lt;br /&gt;
&lt;br /&gt;
== Different Constructions of Uncertainty Sets ==&lt;br /&gt;
&lt;br /&gt;
The choice of construction of the uncertainty set is dependent on data available and properties of the probability distribution. Each construction involves some hypothesis testing on the probability distribution &amp;lt;math&amp;gt;P&amp;lt;/math&amp;gt;. It is useful to have a basic understanding of [http://en.wikipedia.org/wiki/Statistical_hypothesis_testing statistical hypothesis testing].&lt;br /&gt;
&lt;br /&gt;
=== Uncertainty Sets from Discrete Distributions ===&lt;br /&gt;
&lt;br /&gt;
In this specific definition of the uncertainty set, the main assumption is that the probability distribution &amp;lt;math&amp;gt;P&amp;lt;/math&amp;gt; has a finite support that is known. For example, a Bernoulli distribution or a binomial distribution are common probability distributions with finite supports. This means that the set of probability is not zero-valued and can be discretized.&lt;br /&gt;
&lt;br /&gt;
As a result, it is possible to use the Pearson&#039;s &amp;lt;math&amp;gt;X^2&amp;lt;/math&amp;gt; test to aid in the construction of a viable probability distribution. In the Pearson&#039;s &amp;lt;math&amp;gt;X^2&amp;lt;/math&amp;gt; test, a null hypothesis of &amp;lt;math&amp;gt;P = P_O&amp;lt;/math&amp;gt; is defined.&lt;br /&gt;
&lt;br /&gt;
Next, define a empirical probability distribution over the sample &amp;lt;math&amp;gt;p_i&amp;lt;/math&amp;gt;, and a confidence level &amp;lt;math&amp;gt;\epsilon&amp;lt;/math&amp;gt; at which the null hypothesis will be rejected.&lt;br /&gt;
&lt;br /&gt;
It follows that the confidence region, by this definition, will be &amp;lt;br/&amp;gt; &lt;br /&gt;
[[File:Conint.JPG|Conint.JPG]].&lt;br /&gt;
&lt;br /&gt;
Consequently, the original set of uncertain parameters, &amp;lt;math&amp;gt;U&amp;lt;/math&amp;gt; can be redefined as only containing the constraints whose probability distributions fall in the acceptable range &amp;lt;math&amp;gt;\epsilon&amp;lt;/math&amp;gt;. This will redefine the uncertainty set and give a more relaxed feasible region, but maximizing the confidence in any optimal solution.&lt;br /&gt;
&lt;br /&gt;
=== Uncertainty Sets from Independent Marginal Distributions ===&lt;br /&gt;
&lt;br /&gt;
This construction of the uncertainty set is used for a probability distribution that has a continuous support. The marginal distribution &amp;lt;math&amp;gt;P^*&amp;lt;/math&amp;gt; of any probability distribution &amp;lt;math&amp;gt;P_O&amp;lt;/math&amp;gt; is the a certain subset that holds a specific probability that does not reference the other values of the set not accounted for in the particular subset. The reason why it is beneficial to consider independent marginal distributions when analyzing a probability distribution with a continuous support is because multivariate fit testing has not reached the capacity to holistically analyze the problem.&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;5&amp;lt;/span&amp;gt; Another common way to approach this problem is to discretize the continuous function so that the support now becomes a discrete function.&lt;br /&gt;
&lt;br /&gt;
==== Utilization of Kolmogorov-Smirnov Test ==== &lt;br /&gt;
[[File:robustopt.jpg|thumb|right|Development of a confidence region from an arbitrary function based on a Kolmogorov-Smirnov Test&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;4&amp;lt;/span&amp;gt;]] &lt;br /&gt;
&lt;br /&gt;
The Kolmogorov-Smirnov test is a generic fit test that will test two continuous samples for equality. This test will be applied in the same fashion as the Pearson&#039;s &amp;lt;math&amp;gt;X^2&amp;lt;/math&amp;gt; test was utilized for the discrete variable case. It is important to note that there are some limitations to this model can be seen in its formulation because it is mostly utilized for univariate cases.&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;4&amp;lt;/span&amp;gt; This construction requires finding a confidence region for a certain marginal distribution &amp;lt;math&amp;gt;P^*&amp;lt;/math&amp;gt; within the probability distribution &amp;lt;math&amp;gt;P&amp;lt;/math&amp;gt;. There also needs to be a defined &amp;lt;math&amp;gt;\epsilon&amp;lt;/math&amp;gt; at which the null hypothesis that &amp;lt;math&amp;gt;P^*&amp;lt;/math&amp;gt; will be rejected. The use of the Kolmogorov-Smirnov test can grant a defined uncertainty set &amp;lt;math&amp;gt;U&amp;lt;/math&amp;gt;, but it has the drawback of becoming ineffective at solving multivariate problems. As a result, sometimes data-driven robust optimization problems where the probability distribution of the uncertainty set has a continuous support are solved by converting it to a discrete support and solving by the aforementioned techniques for discrete distributions.&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;5&amp;lt;/span&amp;gt; &lt;br /&gt;
&lt;br /&gt;
= Applications =&lt;br /&gt;
== Applications in Chemical Engineering  ==&lt;br /&gt;
&lt;br /&gt;
Data-driven robust optimization is useful in chemical engineering because of the complexity of design problems. As a result, it can utilize characteristic properties of systematically collected data to optimize certain features of any given system. For example, data-driven robust optimization can be used in complex supply chain optimization problems. The benefit of data-driven robust optimization for supply chain problems is that behavior of suppliers and consumers can be modeled through historical demand data, and the data associated with past decisions.&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;6&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In chemical engineering, various operations and reactor systems can also be optimized through data-driven robust optimization. For these problems, data-driven robust optimization can aid in the isolation of complex relationships between given parameters. More importantly, these concepts can be used in a dynamic fashion in combination with various design of experiment techniques.&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;7&amp;lt;/span&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== Example: Reactor Design Optimization === &lt;br /&gt;
&lt;br /&gt;
Because of the nature of data-driven robust optimization, it requires large amounts of data, even for simple problems. Therefore, a case study for the robust optimization of a simple reversible reaction in batch reactor is presented.&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;7&amp;lt;/span&amp;gt; This is a given reaction for reactant A to product B. The goal of the case study is to maximize the production of B  by modeling the problem and applying data-driven robust optimization techniques based on experimental results to try to reach a maximum.&lt;br /&gt;
&lt;br /&gt;
The problem is modeled with certain set set of differential equations, and is constrained by physical requirements. The most notable aspect of this case study is how they implement data-driven optimization. The define an additional constraint of error based on defined factor to temperture. These factors effect is refined through ANOVA (Analysis of variance) and the error is made into a response surface model, and this is reevaluated in iterations of optimization. &lt;br /&gt;
 &lt;br /&gt;
== Applications in Finance ==&lt;br /&gt;
&lt;br /&gt;
This form of robust optimization is also useful in portfolio management. While it is an inherent feature in data-driven robust optimization, variance analysis is also the focal point of portfolio management. The idea for any portfolio management approach is centered around maximizing returns while minimizing a risk function for that target return. Data-driven optimization allows for the combination of this generic approach with relationships between stocks and presents a far more robust solution. As an extension, variance and covariance matrices can also be analyzed through data-driven robust optimization.&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;8&amp;lt;/span&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
= Conclusion =&lt;br /&gt;
&lt;br /&gt;
An important distinction between data-driven robust optimization and many other optimization problem is that it makes a probabilistic guarantee as opposed to making a claim about a deterministic optimal solution. This property of data-driven optimization yields applications in various fields. &lt;br /&gt;
&lt;br /&gt;
Optimization is frequently shaped by a priori assumptions and reasonable estimates about certain features to simplify a problem.&amp;lt;span style=&amp;quot;font-size: 8pt; position:relative; bottom: 0.3em;&amp;quot;&amp;gt;2&amp;lt;/span&amp;gt; With data-driven optimization, these assumptions can be limited by data and statistical analysis that will give a more insightful solution. As more data becomes available, data-driven robust optimization will yield more precise and more illuminating solutions. &lt;br /&gt;
&lt;br /&gt;
= References =&lt;br /&gt;
&lt;br /&gt;
1. Bertsimas, Dimitris, Dessislava Pachamanova, and Melvyn Sim. &amp;quot;Robust linear optimization under general norms.&amp;quot; Operations Research Letters 32.6 (2004): 510-516.&lt;br /&gt;
&lt;br /&gt;
2. Bandi, Chaithanya, and Dimitris Bertsimas. &amp;quot;Tractable stochastic analysis in high dimensions via robust optimization.&amp;quot; Mathematical programming 134.1 (2012): 23-70.&lt;br /&gt;
&lt;br /&gt;
3. Zikopoulos, Paul, and Chris Eaton. Understanding big data: Analytics for enterprise class hadoop and streaming data. McGraw-Hill Osborne Media, 2011.&lt;br /&gt;
&lt;br /&gt;
4. Bertsimas, Dimitris, Vishal Gupta, and Nathan Kallus. &amp;quot;Data-driven robust optimization.&amp;quot; arXiv preprint arXiv:1401.0212 (2013).&lt;br /&gt;
&lt;br /&gt;
5. Bertsimas, Dimitris, David B. Brown, and Constantine Caramanis. &amp;quot;Theory and applications of robust optimization.&amp;quot; SIAM review 53.3 (2011): 464-501.&lt;br /&gt;
&lt;br /&gt;
6. Ruo-zhen, Qiu, Ge Ru-gang, and Huang Xiao-yuan. &amp;quot;The Supply Chain Robust Coordination Strategy Based on Data-Driven Approach.&amp;quot; E-Product E-Service and E-Entertainment (ICEEE), 2010 International Conference IEEE, 2010.&lt;br /&gt;
&lt;br /&gt;
7. Georgakis, Christos. &amp;quot;Design of Dynamic Experiments: A Data-Driven Methodology for the Optimization of Time-Varying Processes.&amp;quot; Industrial &amp;amp; Engineering Chemistry Research 52.35 (2013): 12369-12382.&lt;br /&gt;
&lt;br /&gt;
8. Gilli, Manfred, Evis Këllezi, and Hilda Hysi. &amp;quot;A data-driven optimization heuristic for downside risk minimization.&amp;quot; Swiss Finance Institute Research Paper 06-2 (2006).&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=6231</id>
		<title>2021 Cornell Optimization Open Textbook Feedback</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=6231"/>
		<updated>2021-12-19T14:01:05Z</updated>

		<summary type="html">&lt;p&gt;Asa273: /* Adagrad */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[Lagrangean duality|Lagrangian duality]] ==&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The Lagrangian variables associated with equality constraints h(x) are unbounded but the Lagrangian dual problem states them as non-negative. Please fix the same.&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
#  Please update the dual objective function and domain of dual variables accordingly.&lt;br /&gt;
== [[Disjunctive inequalities|Disjunctive Inequalities]] ==&lt;br /&gt;
==[[Stochastic programming|Stochastic Programming]]==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The inline notations (`x1`, `s1`) should also be typed using LaTex.&lt;br /&gt;
&lt;br /&gt;
==[[Exponential transformation|Exponential Transformation]]==&lt;br /&gt;
== [[Portfolio optimization|Portfolio Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Rephrase “Cut the relevant information and conditions in the portfolio optimization, as well as the final requirements into the relevant variables, constraints and linear functions of the linear programming problem.”&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Fix misspelling “dolling decision variables”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Need some commas here (second sentence hard to read).&lt;br /&gt;
* References&lt;br /&gt;
# Remove white space between end of sentences and reference numbers.&lt;br /&gt;
&lt;br /&gt;
== [[Chance-constraint method|Chance constraint method]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Some normal text was expressed as equation.&lt;br /&gt;
==  [[Bayesian Optimization]] ==&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Consider italicizing keywords rather than bolding.&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Acquisition function figure could be made larger and clearer to improve readability.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Avoid including a figure of the code for this example and explicitly describe the steps to the modeling and solution process instead. &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Conjugate gradient methods]]  ==&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
# Please properly format pseudocode.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Consider adding future research directions&lt;br /&gt;
== [[Geometric programming|Geometric Programming]] ==&lt;br /&gt;
&lt;br /&gt;
== [[Adam]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Avoid inserting inline citations after words like “This article..” as it is a bit informal. This could be rephrased or changed to something like “According to author,^[2] …” with author name inserted.&lt;br /&gt;
== [[A-star algorithm|a* algorithm]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic:&lt;br /&gt;
# Please consider correcting a few grammatical errors: “Optimal path”, “cross country”, missing period at end of first paragraph, other random capitalizations, etc.&lt;br /&gt;
# There are no citations in the introduction. Please cite every source.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add the mathematical description of the algorithm. (Insufficient) &lt;br /&gt;
# Please fix grammatical and spelling errors as (“from current position to the goal”, “There are a lot of discussions”, etc). Also, many hyphens are missing as “non playable”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The numerical example does not show the full computations the algorithm performs. Please show the computation on a smaller example.&lt;br /&gt;
== [[Job shop scheduling|Job-Shop Scheduling Problem]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
# Since this Wiki focuses on jobshop scheduling, at least two methods are expected. Branch and bound is a general MILP technique, so, it is recommended to add a tailored technique that can only solve specific jobshop scheduling problems. Solving the numerical example with this technique is not necessary.&lt;br /&gt;
== [[Optimization in game theory]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Add a mathematical description of the problem and a pseudocode/flowchart for the Lemke-Howson algorithm.  &lt;br /&gt;
# Rephrase “This algorithm utilizes iterated pivoting much like the simplex algorithm used in the simplex algorithm used in linear programming”.&lt;br /&gt;
# Formatting (incomplete). &lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style. &lt;br /&gt;
&lt;br /&gt;
== [[Trust-region methods]] ==&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Avoid pronouns such as “we”. This goes for all other sections as well.&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Organization of ideas in this section needs work.&lt;br /&gt;
# Please format the algorithm in proper algorithmic pseudocode format.&lt;br /&gt;
&lt;br /&gt;
== [[Momentum]] ==&lt;br /&gt;
== [[Stochastic dynamic programming|Stochastic Dynamic programming]] ==&lt;br /&gt;
== [[Outer-approximation (OA)|Outer-approximation]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# “Minimize” and “subject to” should be “min” and “s.t.” in MathType (inconsistent formatting)&lt;br /&gt;
&lt;br /&gt;
== [[Unit commitment problem]] ==&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Fix typo “while minimize” to “while minimizing”.&lt;br /&gt;
== [[Frank-Wolfe]] ==&lt;br /&gt;
== [[Line search methods|Line Search Method]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Avoid pronouns such as “we” (all sections).&lt;br /&gt;
== [[Piecewise linear approximation|Piecewise Linear Approximation]]==&lt;br /&gt;
== [[Mathematical programming with equilibrium constraints|Mathematical Programming with Equilibrium constraints]] ==&lt;br /&gt;
&lt;br /&gt;
== [[Wing shape optimization|Wing shape Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# These variables should be defined before the conclusion section, they are out of place here. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible.&lt;br /&gt;
&lt;br /&gt;
== [[Interior-point method for NLP|Interior point method for NLP]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Need discussion about the concept of “central path” and the notion of self concordance&lt;br /&gt;
# Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Fix typo “optimisation”.&lt;br /&gt;
&lt;br /&gt;
== [[AdaGrad|Adagrad]] ==&lt;br /&gt;
* References&lt;br /&gt;
# References not properly formatted&lt;br /&gt;
&lt;br /&gt;
== [[McCormick envelopes|McCormick Envelopes]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution. &lt;br /&gt;
# The solution technique should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* References&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;br /&gt;
&lt;br /&gt;
== [[Branch and bound (BB) for MINLP|Branch and Bound for MINLP]] ==&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
# Please show a step-by-step solution in the example. The solution is incomplete. The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
&lt;br /&gt;
# This example does not follow the MINLP structure discussed in the above section since binary variables are missing. Branch and bound may not be appropriate for such problems. Please provide an appropriate numerical example and solve it according to the above comments.&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources. A quick Google scholar search could provide relevant references.&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=6230</id>
		<title>2021 Cornell Optimization Open Textbook Feedback</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=6230"/>
		<updated>2021-12-19T14:00:49Z</updated>

		<summary type="html">&lt;p&gt;Asa273: /* Outer-approximation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[Lagrangean duality|Lagrangian duality]] ==&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The Lagrangian variables associated with equality constraints h(x) are unbounded but the Lagrangian dual problem states them as non-negative. Please fix the same.&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
#  Please update the dual objective function and domain of dual variables accordingly.&lt;br /&gt;
== [[Disjunctive inequalities|Disjunctive Inequalities]] ==&lt;br /&gt;
==[[Stochastic programming|Stochastic Programming]]==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The inline notations (`x1`, `s1`) should also be typed using LaTex.&lt;br /&gt;
&lt;br /&gt;
==[[Exponential transformation|Exponential Transformation]]==&lt;br /&gt;
== [[Portfolio optimization|Portfolio Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Rephrase “Cut the relevant information and conditions in the portfolio optimization, as well as the final requirements into the relevant variables, constraints and linear functions of the linear programming problem.”&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Fix misspelling “dolling decision variables”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Need some commas here (second sentence hard to read).&lt;br /&gt;
* References&lt;br /&gt;
# Remove white space between end of sentences and reference numbers.&lt;br /&gt;
&lt;br /&gt;
== [[Chance-constraint method|Chance constraint method]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Some normal text was expressed as equation.&lt;br /&gt;
==  [[Bayesian Optimization]] ==&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Consider italicizing keywords rather than bolding.&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Acquisition function figure could be made larger and clearer to improve readability.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Avoid including a figure of the code for this example and explicitly describe the steps to the modeling and solution process instead. &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Conjugate gradient methods]]  ==&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
# Please properly format pseudocode.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Consider adding future research directions&lt;br /&gt;
== [[Geometric programming|Geometric Programming]] ==&lt;br /&gt;
&lt;br /&gt;
== [[Adam]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Avoid inserting inline citations after words like “This article..” as it is a bit informal. This could be rephrased or changed to something like “According to author,^[2] …” with author name inserted.&lt;br /&gt;
== [[A-star algorithm|a* algorithm]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic:&lt;br /&gt;
# Please consider correcting a few grammatical errors: “Optimal path”, “cross country”, missing period at end of first paragraph, other random capitalizations, etc.&lt;br /&gt;
# There are no citations in the introduction. Please cite every source.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add the mathematical description of the algorithm. (Insufficient) &lt;br /&gt;
# Please fix grammatical and spelling errors as (“from current position to the goal”, “There are a lot of discussions”, etc). Also, many hyphens are missing as “non playable”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The numerical example does not show the full computations the algorithm performs. Please show the computation on a smaller example.&lt;br /&gt;
== [[Job shop scheduling|Job-Shop Scheduling Problem]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
# Since this Wiki focuses on jobshop scheduling, at least two methods are expected. Branch and bound is a general MILP technique, so, it is recommended to add a tailored technique that can only solve specific jobshop scheduling problems. Solving the numerical example with this technique is not necessary.&lt;br /&gt;
== [[Optimization in game theory]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Add a mathematical description of the problem and a pseudocode/flowchart for the Lemke-Howson algorithm.  &lt;br /&gt;
# Rephrase “This algorithm utilizes iterated pivoting much like the simplex algorithm used in the simplex algorithm used in linear programming”.&lt;br /&gt;
# Formatting (incomplete). &lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style. &lt;br /&gt;
&lt;br /&gt;
== [[Trust-region methods]] ==&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Avoid pronouns such as “we”. This goes for all other sections as well.&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Organization of ideas in this section needs work.&lt;br /&gt;
# Please format the algorithm in proper algorithmic pseudocode format.&lt;br /&gt;
&lt;br /&gt;
== [[Momentum]] ==&lt;br /&gt;
== [[Stochastic dynamic programming|Stochastic Dynamic programming]] ==&lt;br /&gt;
== [[Outer-approximation (OA)|Outer-approximation]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# “Minimize” and “subject to” should be “min” and “s.t.” in MathType (inconsistent formatting)&lt;br /&gt;
&lt;br /&gt;
== [[Unit commitment problem]] ==&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Fix typo “while minimize” to “while minimizing”.&lt;br /&gt;
== [[Frank-Wolfe]] ==&lt;br /&gt;
== [[Line search methods|Line Search Method]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Avoid pronouns such as “we” (all sections).&lt;br /&gt;
== [[Piecewise linear approximation|Piecewise Linear Approximation]]==&lt;br /&gt;
== [[Mathematical programming with equilibrium constraints|Mathematical Programming with Equilibrium constraints]] ==&lt;br /&gt;
&lt;br /&gt;
== [[Wing shape optimization|Wing shape Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# These variables should be defined before the conclusion section, they are out of place here. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible.&lt;br /&gt;
&lt;br /&gt;
== [[Interior-point method for NLP|Interior point method for NLP]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Need discussion about the concept of “central path” and the notion of self concordance&lt;br /&gt;
# Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Fix typo “optimisation”.&lt;br /&gt;
&lt;br /&gt;
== [[AdaGrad|Adagrad]] ==&lt;br /&gt;
* References&lt;br /&gt;
*# References not properly formatted&lt;br /&gt;
== [[McCormick envelopes|McCormick Envelopes]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution. &lt;br /&gt;
# The solution technique should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* References&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;br /&gt;
&lt;br /&gt;
== [[Branch and bound (BB) for MINLP|Branch and Bound for MINLP]] ==&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
# Please show a step-by-step solution in the example. The solution is incomplete. The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
&lt;br /&gt;
# This example does not follow the MINLP structure discussed in the above section since binary variables are missing. Branch and bound may not be appropriate for such problems. Please provide an appropriate numerical example and solve it according to the above comments.&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources. A quick Google scholar search could provide relevant references.&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=6229</id>
		<title>2021 Cornell Optimization Open Textbook Feedback</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=6229"/>
		<updated>2021-12-19T14:00:38Z</updated>

		<summary type="html">&lt;p&gt;Asa273: /* Interior point method for NLP */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[Lagrangean duality|Lagrangian duality]] ==&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The Lagrangian variables associated with equality constraints h(x) are unbounded but the Lagrangian dual problem states them as non-negative. Please fix the same.&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
#  Please update the dual objective function and domain of dual variables accordingly.&lt;br /&gt;
== [[Disjunctive inequalities|Disjunctive Inequalities]] ==&lt;br /&gt;
==[[Stochastic programming|Stochastic Programming]]==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The inline notations (`x1`, `s1`) should also be typed using LaTex.&lt;br /&gt;
&lt;br /&gt;
==[[Exponential transformation|Exponential Transformation]]==&lt;br /&gt;
== [[Portfolio optimization|Portfolio Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Rephrase “Cut the relevant information and conditions in the portfolio optimization, as well as the final requirements into the relevant variables, constraints and linear functions of the linear programming problem.”&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Fix misspelling “dolling decision variables”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Need some commas here (second sentence hard to read).&lt;br /&gt;
* References&lt;br /&gt;
# Remove white space between end of sentences and reference numbers.&lt;br /&gt;
&lt;br /&gt;
== [[Chance-constraint method|Chance constraint method]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Some normal text was expressed as equation.&lt;br /&gt;
==  [[Bayesian Optimization]] ==&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Consider italicizing keywords rather than bolding.&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Acquisition function figure could be made larger and clearer to improve readability.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Avoid including a figure of the code for this example and explicitly describe the steps to the modeling and solution process instead. &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Conjugate gradient methods]]  ==&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
# Please properly format pseudocode.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Consider adding future research directions&lt;br /&gt;
== [[Geometric programming|Geometric Programming]] ==&lt;br /&gt;
&lt;br /&gt;
== [[Adam]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Avoid inserting inline citations after words like “This article..” as it is a bit informal. This could be rephrased or changed to something like “According to author,^[2] …” with author name inserted.&lt;br /&gt;
== [[A-star algorithm|a* algorithm]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic:&lt;br /&gt;
# Please consider correcting a few grammatical errors: “Optimal path”, “cross country”, missing period at end of first paragraph, other random capitalizations, etc.&lt;br /&gt;
# There are no citations in the introduction. Please cite every source.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add the mathematical description of the algorithm. (Insufficient) &lt;br /&gt;
# Please fix grammatical and spelling errors as (“from current position to the goal”, “There are a lot of discussions”, etc). Also, many hyphens are missing as “non playable”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The numerical example does not show the full computations the algorithm performs. Please show the computation on a smaller example.&lt;br /&gt;
== [[Job shop scheduling|Job-Shop Scheduling Problem]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
# Since this Wiki focuses on jobshop scheduling, at least two methods are expected. Branch and bound is a general MILP technique, so, it is recommended to add a tailored technique that can only solve specific jobshop scheduling problems. Solving the numerical example with this technique is not necessary.&lt;br /&gt;
== [[Optimization in game theory]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Add a mathematical description of the problem and a pseudocode/flowchart for the Lemke-Howson algorithm.  &lt;br /&gt;
# Rephrase “This algorithm utilizes iterated pivoting much like the simplex algorithm used in the simplex algorithm used in linear programming”.&lt;br /&gt;
# Formatting (incomplete). &lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style. &lt;br /&gt;
&lt;br /&gt;
== [[Trust-region methods]] ==&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Avoid pronouns such as “we”. This goes for all other sections as well.&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Organization of ideas in this section needs work.&lt;br /&gt;
# Please format the algorithm in proper algorithmic pseudocode format.&lt;br /&gt;
&lt;br /&gt;
== [[Momentum]] ==&lt;br /&gt;
== [[Stochastic dynamic programming|Stochastic Dynamic programming]] ==&lt;br /&gt;
== [[Outer-approximation (OA)|Outer-approximation]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
*# “Minimize” and “subject to” should be “min” and “s.t.” in MathType (inconsistent formatting)&lt;br /&gt;
== [[Unit commitment problem]] ==&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Fix typo “while minimize” to “while minimizing”.&lt;br /&gt;
== [[Frank-Wolfe]] ==&lt;br /&gt;
== [[Line search methods|Line Search Method]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Avoid pronouns such as “we” (all sections).&lt;br /&gt;
== [[Piecewise linear approximation|Piecewise Linear Approximation]]==&lt;br /&gt;
== [[Mathematical programming with equilibrium constraints|Mathematical Programming with Equilibrium constraints]] ==&lt;br /&gt;
&lt;br /&gt;
== [[Wing shape optimization|Wing shape Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# These variables should be defined before the conclusion section, they are out of place here. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible.&lt;br /&gt;
&lt;br /&gt;
== [[Interior-point method for NLP|Interior point method for NLP]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Need discussion about the concept of “central path” and the notion of self concordance&lt;br /&gt;
# Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Fix typo “optimisation”.&lt;br /&gt;
&lt;br /&gt;
== [[AdaGrad|Adagrad]] ==&lt;br /&gt;
* References&lt;br /&gt;
*# References not properly formatted&lt;br /&gt;
== [[McCormick envelopes|McCormick Envelopes]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution. &lt;br /&gt;
# The solution technique should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* References&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;br /&gt;
&lt;br /&gt;
== [[Branch and bound (BB) for MINLP|Branch and Bound for MINLP]] ==&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
# Please show a step-by-step solution in the example. The solution is incomplete. The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
&lt;br /&gt;
# This example does not follow the MINLP structure discussed in the above section since binary variables are missing. Branch and bound may not be appropriate for such problems. Please provide an appropriate numerical example and solve it according to the above comments.&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources. A quick Google scholar search could provide relevant references.&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=6228</id>
		<title>2021 Cornell Optimization Open Textbook Feedback</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=6228"/>
		<updated>2021-12-19T14:00:26Z</updated>

		<summary type="html">&lt;p&gt;Asa273: /* Trust-region methods */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[Lagrangean duality|Lagrangian duality]] ==&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The Lagrangian variables associated with equality constraints h(x) are unbounded but the Lagrangian dual problem states them as non-negative. Please fix the same.&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
#  Please update the dual objective function and domain of dual variables accordingly.&lt;br /&gt;
== [[Disjunctive inequalities|Disjunctive Inequalities]] ==&lt;br /&gt;
==[[Stochastic programming|Stochastic Programming]]==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The inline notations (`x1`, `s1`) should also be typed using LaTex.&lt;br /&gt;
&lt;br /&gt;
==[[Exponential transformation|Exponential Transformation]]==&lt;br /&gt;
== [[Portfolio optimization|Portfolio Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Rephrase “Cut the relevant information and conditions in the portfolio optimization, as well as the final requirements into the relevant variables, constraints and linear functions of the linear programming problem.”&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Fix misspelling “dolling decision variables”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Need some commas here (second sentence hard to read).&lt;br /&gt;
* References&lt;br /&gt;
# Remove white space between end of sentences and reference numbers.&lt;br /&gt;
&lt;br /&gt;
== [[Chance-constraint method|Chance constraint method]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Some normal text was expressed as equation.&lt;br /&gt;
==  [[Bayesian Optimization]] ==&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Consider italicizing keywords rather than bolding.&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Acquisition function figure could be made larger and clearer to improve readability.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Avoid including a figure of the code for this example and explicitly describe the steps to the modeling and solution process instead. &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Conjugate gradient methods]]  ==&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
# Please properly format pseudocode.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Consider adding future research directions&lt;br /&gt;
== [[Geometric programming|Geometric Programming]] ==&lt;br /&gt;
&lt;br /&gt;
== [[Adam]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Avoid inserting inline citations after words like “This article..” as it is a bit informal. This could be rephrased or changed to something like “According to author,^[2] …” with author name inserted.&lt;br /&gt;
== [[A-star algorithm|a* algorithm]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic:&lt;br /&gt;
# Please consider correcting a few grammatical errors: “Optimal path”, “cross country”, missing period at end of first paragraph, other random capitalizations, etc.&lt;br /&gt;
# There are no citations in the introduction. Please cite every source.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add the mathematical description of the algorithm. (Insufficient) &lt;br /&gt;
# Please fix grammatical and spelling errors as (“from current position to the goal”, “There are a lot of discussions”, etc). Also, many hyphens are missing as “non playable”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The numerical example does not show the full computations the algorithm performs. Please show the computation on a smaller example.&lt;br /&gt;
== [[Job shop scheduling|Job-Shop Scheduling Problem]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
# Since this Wiki focuses on jobshop scheduling, at least two methods are expected. Branch and bound is a general MILP technique, so, it is recommended to add a tailored technique that can only solve specific jobshop scheduling problems. Solving the numerical example with this technique is not necessary.&lt;br /&gt;
== [[Optimization in game theory]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Add a mathematical description of the problem and a pseudocode/flowchart for the Lemke-Howson algorithm.  &lt;br /&gt;
# Rephrase “This algorithm utilizes iterated pivoting much like the simplex algorithm used in the simplex algorithm used in linear programming”.&lt;br /&gt;
# Formatting (incomplete). &lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style. &lt;br /&gt;
&lt;br /&gt;
== [[Trust-region methods]] ==&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Avoid pronouns such as “we”. This goes for all other sections as well.&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Organization of ideas in this section needs work.&lt;br /&gt;
# Please format the algorithm in proper algorithmic pseudocode format.&lt;br /&gt;
&lt;br /&gt;
== [[Momentum]] ==&lt;br /&gt;
== [[Stochastic dynamic programming|Stochastic Dynamic programming]] ==&lt;br /&gt;
== [[Outer-approximation (OA)|Outer-approximation]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
*# “Minimize” and “subject to” should be “min” and “s.t.” in MathType (inconsistent formatting)&lt;br /&gt;
== [[Unit commitment problem]] ==&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Fix typo “while minimize” to “while minimizing”.&lt;br /&gt;
== [[Frank-Wolfe]] ==&lt;br /&gt;
== [[Line search methods|Line Search Method]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Avoid pronouns such as “we” (all sections).&lt;br /&gt;
== [[Piecewise linear approximation|Piecewise Linear Approximation]]==&lt;br /&gt;
== [[Mathematical programming with equilibrium constraints|Mathematical Programming with Equilibrium constraints]] ==&lt;br /&gt;
&lt;br /&gt;
== [[Wing shape optimization|Wing shape Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# These variables should be defined before the conclusion section, they are out of place here. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible.&lt;br /&gt;
&lt;br /&gt;
== [[Interior-point method for NLP|Interior point method for NLP]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
*# Need discussion about the concept of “central path” and the notion of self concordance&lt;br /&gt;
*# Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
*# Fix typo “optimisation”.&lt;br /&gt;
== [[AdaGrad|Adagrad]] ==&lt;br /&gt;
* References&lt;br /&gt;
*# References not properly formatted&lt;br /&gt;
== [[McCormick envelopes|McCormick Envelopes]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution. &lt;br /&gt;
# The solution technique should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* References&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;br /&gt;
&lt;br /&gt;
== [[Branch and bound (BB) for MINLP|Branch and Bound for MINLP]] ==&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
# Please show a step-by-step solution in the example. The solution is incomplete. The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
&lt;br /&gt;
# This example does not follow the MINLP structure discussed in the above section since binary variables are missing. Branch and bound may not be appropriate for such problems. Please provide an appropriate numerical example and solve it according to the above comments.&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources. A quick Google scholar search could provide relevant references.&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=6227</id>
		<title>2021 Cornell Optimization Open Textbook Feedback</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=6227"/>
		<updated>2021-12-19T13:59:40Z</updated>

		<summary type="html">&lt;p&gt;Asa273: /* Stochastic Programming */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[Lagrangean duality|Lagrangian duality]] ==&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The Lagrangian variables associated with equality constraints h(x) are unbounded but the Lagrangian dual problem states them as non-negative. Please fix the same.&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
#  Please update the dual objective function and domain of dual variables accordingly.&lt;br /&gt;
== [[Disjunctive inequalities|Disjunctive Inequalities]] ==&lt;br /&gt;
==[[Stochastic programming|Stochastic Programming]]==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The inline notations (`x1`, `s1`) should also be typed using LaTex.&lt;br /&gt;
&lt;br /&gt;
==[[Exponential transformation|Exponential Transformation]]==&lt;br /&gt;
== [[Portfolio optimization|Portfolio Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Rephrase “Cut the relevant information and conditions in the portfolio optimization, as well as the final requirements into the relevant variables, constraints and linear functions of the linear programming problem.”&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Fix misspelling “dolling decision variables”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Need some commas here (second sentence hard to read).&lt;br /&gt;
* References&lt;br /&gt;
# Remove white space between end of sentences and reference numbers.&lt;br /&gt;
&lt;br /&gt;
== [[Chance-constraint method|Chance constraint method]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Some normal text was expressed as equation.&lt;br /&gt;
==  [[Bayesian Optimization]] ==&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Consider italicizing keywords rather than bolding.&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Acquisition function figure could be made larger and clearer to improve readability.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Avoid including a figure of the code for this example and explicitly describe the steps to the modeling and solution process instead. &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Conjugate gradient methods]]  ==&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
# Please properly format pseudocode.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Consider adding future research directions&lt;br /&gt;
== [[Geometric programming|Geometric Programming]] ==&lt;br /&gt;
&lt;br /&gt;
== [[Adam]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Avoid inserting inline citations after words like “This article..” as it is a bit informal. This could be rephrased or changed to something like “According to author,^[2] …” with author name inserted.&lt;br /&gt;
== [[A-star algorithm|a* algorithm]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic:&lt;br /&gt;
# Please consider correcting a few grammatical errors: “Optimal path”, “cross country”, missing period at end of first paragraph, other random capitalizations, etc.&lt;br /&gt;
# There are no citations in the introduction. Please cite every source.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add the mathematical description of the algorithm. (Insufficient) &lt;br /&gt;
# Please fix grammatical and spelling errors as (“from current position to the goal”, “There are a lot of discussions”, etc). Also, many hyphens are missing as “non playable”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The numerical example does not show the full computations the algorithm performs. Please show the computation on a smaller example.&lt;br /&gt;
== [[Job shop scheduling|Job-Shop Scheduling Problem]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
# Since this Wiki focuses on jobshop scheduling, at least two methods are expected. Branch and bound is a general MILP technique, so, it is recommended to add a tailored technique that can only solve specific jobshop scheduling problems. Solving the numerical example with this technique is not necessary.&lt;br /&gt;
== [[Optimization in game theory]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Add a mathematical description of the problem and a pseudocode/flowchart for the Lemke-Howson algorithm.  &lt;br /&gt;
# Rephrase “This algorithm utilizes iterated pivoting much like the simplex algorithm used in the simplex algorithm used in linear programming”.&lt;br /&gt;
# Formatting (incomplete). &lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style. &lt;br /&gt;
&lt;br /&gt;
== [[Trust-region methods]] ==&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
*# Avoid pronouns such as “we”. This goes for all other sections as well.&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
*# Organization of ideas in this section needs work.&lt;br /&gt;
*# Please format the algorithm in proper algorithmic pseudocode format.&lt;br /&gt;
== [[Momentum]] ==&lt;br /&gt;
== [[Stochastic dynamic programming|Stochastic Dynamic programming]] ==&lt;br /&gt;
== [[Outer-approximation (OA)|Outer-approximation]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
*# “Minimize” and “subject to” should be “min” and “s.t.” in MathType (inconsistent formatting)&lt;br /&gt;
== [[Unit commitment problem]] ==&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Fix typo “while minimize” to “while minimizing”.&lt;br /&gt;
== [[Frank-Wolfe]] ==&lt;br /&gt;
== [[Line search methods|Line Search Method]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Avoid pronouns such as “we” (all sections).&lt;br /&gt;
== [[Piecewise linear approximation|Piecewise Linear Approximation]]==&lt;br /&gt;
== [[Mathematical programming with equilibrium constraints|Mathematical Programming with Equilibrium constraints]] ==&lt;br /&gt;
&lt;br /&gt;
== [[Wing shape optimization|Wing shape Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# These variables should be defined before the conclusion section, they are out of place here. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible.&lt;br /&gt;
&lt;br /&gt;
== [[Interior-point method for NLP|Interior point method for NLP]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
*# Need discussion about the concept of “central path” and the notion of self concordance&lt;br /&gt;
*# Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
*# Fix typo “optimisation”.&lt;br /&gt;
== [[AdaGrad|Adagrad]] ==&lt;br /&gt;
* References&lt;br /&gt;
*# References not properly formatted&lt;br /&gt;
== [[McCormick envelopes|McCormick Envelopes]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution. &lt;br /&gt;
# The solution technique should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* References&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;br /&gt;
&lt;br /&gt;
== [[Branch and bound (BB) for MINLP|Branch and Bound for MINLP]] ==&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
# Please show a step-by-step solution in the example. The solution is incomplete. The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
&lt;br /&gt;
# This example does not follow the MINLP structure discussed in the above section since binary variables are missing. Branch and bound may not be appropriate for such problems. Please provide an appropriate numerical example and solve it according to the above comments.&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources. A quick Google scholar search could provide relevant references.&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=6179</id>
		<title>2021 Cornell Optimization Open Textbook Feedback</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=6179"/>
		<updated>2021-12-19T00:42:45Z</updated>

		<summary type="html">&lt;p&gt;Asa273: /* Branch and Bound for MINLP */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[Lagrangean duality|Lagrangian duality]] ==&lt;br /&gt;
* Author list, sections and TOC&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The Lagrangian variables associated with equality constraints h(x) are unbounded but the Lagrangian dual problem states them as non-negative. Please fix the same.&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
#  Please update the dual objective function and domain of dual variables accordingly.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Disjunctive inequalities|Disjunctive Inequalities]] ==&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
==[[Stochastic programming|Stochastic Programming]]==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
** The symbol “xi” in the methodology subsection should be explained.&lt;br /&gt;
** The inline notations (`x1`, `s1`) should also be typed using LaTex.&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications;&lt;br /&gt;
# I suggest eliminating citing the last name of the first author (i.e. Zhou et al.)&lt;br /&gt;
==[[Exponential transformation|Exponential Transformation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
== [[Portfolio optimization|Portfolio Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Rephrase “Cut the relevant information and conditions in the portfolio optimization, as well as the final requirements into the relevant variables, constraints and linear functions of the linear programming problem.”&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Fix misspelling “dolling decision variables”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Need some commas here (second sentence hard to read).&lt;br /&gt;
* References&lt;br /&gt;
# Remove white space between end of sentences and reference numbers.&lt;br /&gt;
&lt;br /&gt;
== [[Chance-constraint method|Chance constraint method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Some normal text was expressed as equation.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
==  [[Bayesian Optimization]] ==&lt;br /&gt;
* Introduction&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Captions need reformatting.&lt;br /&gt;
# Consider italicizing keywords rather than bolding.&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Acquisition function figure could be made larger and clearer to improve readability.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any references to functions or methods in code ‘e.g. fmin’ should be properly formatted as code-stylized text.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Avoid including a figure of the code for this example and explicitly describe the steps to the modeling and solution process instead. &lt;br /&gt;
# Avoid pronouns such as “our” and “we”.&lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Conjugate gradient methods]]  ==&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
# Please indent equation blocks.&lt;br /&gt;
# Please properly format pseudocode.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Consider adding future research directions&lt;br /&gt;
== [[Geometric programming|Geometric Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section:&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Adam]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Avoid inserting inline citations after words like “This article..” as it is a bit informal. This could be rephrased or changed to something like “According to author,^[2] …” with author name inserted.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
== [[A-star algorithm|a* algorithm]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic:&lt;br /&gt;
# Please consider correcting a few grammatical errors: “Optimal path”, “cross country”, missing period at end of first paragraph, other random capitalizations, etc.&lt;br /&gt;
# There are no citations in the introduction. Please cite every source.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add the mathematical description of the algorithm. (Insufficient) &lt;br /&gt;
# Please fix grammatical and spelling errors as (“from current position to the goal”, “There are a lot of discussions”, etc). Also, many hyphens are missing as “non playable”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The numerical example does not show the full computations the algorithm performs. Please show the computation on a smaller example.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Job shop scheduling|Job-Shop Scheduling Problem]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
# Since this Wiki focuses on jobshop scheduling, at least two methods are expected. Branch and bound is a general MILP technique, so, it is recommended to add a tailored technique that can only solve specific jobshop scheduling problems. Solving the numerical example with this technique is not necessary.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Optimization in game theory]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Add a mathematical description of the problem and a pseudocode/flowchart for the Lemke-Howson algorithm.  &lt;br /&gt;
# Rephrase “This algorithm utilizes iterated pivoting much like the simplex algorithm used in the simplex algorithm used in linear programming”.&lt;br /&gt;
# Formatting (incomplete). &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style. &lt;br /&gt;
&lt;br /&gt;
== [[Trust-region methods]] ==&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
** Avoid pronouns such as “we”. This goes for all other sections as well.&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Organization of ideas in this section needs work.&lt;br /&gt;
# You have not defined explicitly why the Cauchy point is important to compute beyond a vague allusion to performance improvements, which is also wrong (it is useful because of its guarantees for convergence, not performance) It is also misspelled.&lt;br /&gt;
# Please format the algorithm in proper algorithmic pseudocode format.&lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style.&lt;br /&gt;
&lt;br /&gt;
*There are numerous misspellings, grammatical errors, and incorrect claims. Please fix these.&lt;br /&gt;
&lt;br /&gt;
== [[Momentum]] ==&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Stochastic dynamic programming|Stochastic Dynamic programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions &lt;br /&gt;
# Remove the grey box background of equations.&lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Outer-approximation (OA)|Outer-approximation]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic &lt;br /&gt;
# See formatting guideline below&lt;br /&gt;
# Avoid opinionated statements such as “MINLP problems are usually the hardest to solve”.&lt;br /&gt;
# Rearrange the text such that the MINLP formulation is in the theory section and keep the introduction in words only.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Consider left aligning equations and optimization problem formulations by the “=”. See [[Stochastic programming|https://optimization.cbe.cornell.edu/index.php?title=Stochastic_programming]] for an example&lt;br /&gt;
# The sentence “The Outer-Approximation (OA) algorithm was first proposed by Duran and and Grossmann in 1986 to solve MINLP problems.” needs a reference. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# “Minimize” and “subject to” should be “min” and “s.t.” in MathType&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Does not explicitly point out why OA is applicable (and/or preferred) in these applications, rather than other MINLP approaches (show that the problem formulations are amenable to a solution approach through OA)&lt;br /&gt;
# The sentence “... an active research area and there exists a vast number of applications in fields such as engineering, computational chemistry, and finance.” needs references. &lt;br /&gt;
# Posting GAMS code on the page is generally inappropriate and discouraged. Please check with the TAs or me if you have a strong desire to post GAMS codes on the Wiki page. A typical textbook should not be limited to a specific software package. If the GAMS code must be posted, please also post ALL other software implementation versions, such as Pyomo and JuliaOPT, among others.&lt;br /&gt;
# Consider reformatting to make steps more readable. Inserting spaces and breaking down steps would help. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Too short. Consider discussion on future research direction and discussion on uncertainty&lt;br /&gt;
# Please review abbreviations throughout the page. Why is MINLP redefined here? “Outer-Approximation is a well known efficient approach for solving convex mixed-integer nonlinear programs (MINLP)”. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove &amp;quot;Template:Reflist&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== [[Unit commitment problem]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction and avoid discussions of examples or specific applications in this section.&lt;br /&gt;
# The sentence “Nonlinear, Non-convex programming optimization problem.” doesn’t make sense by itself and Non-convex shouldn’t be capitalized.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Figure/image format should be revised to better display the content.&lt;br /&gt;
# Uppercase characters are used randomly (e.g., “non-convex transmission Constraints”) . Please follow correct language conventions for sentence structure.&lt;br /&gt;
# Avoid inserting inline citations after words like “written in matrix form as equation [3]..” or “presented in [3]...” as it is a bit informal when you don’t explicitly name the subject. Also these two sentences are grammatically incorrect and appear to be missing an ending period and comma, respectively. &lt;br /&gt;
# Don’t say “written in matrix form as equation..” and just cite the reference, actually write out the equation. &lt;br /&gt;
# Properly label the figure in this section with a figure number and improve visibility by making it larger. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Label the figures in this section properly with figure numbers.&lt;br /&gt;
# Fix typo “while minimize” to “while minimizing”. &lt;br /&gt;
# Avoid pronouns such as “we”. &lt;br /&gt;
# Use the equation editor when typing equations. &lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
# The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# I suggest changing the order of the subtitles here. For example, Single-Period Unit Commitment. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Frank-Wolfe]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications: &lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
== [[Line search methods|Line Search Method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Expand the introduction and avoid discussion on some of the specific steps in the solution process. &lt;br /&gt;
# Provide references here. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The phrase “are as follows” in the steepest descent method discussion needs to be followed by a colon. &lt;br /&gt;
# Rephrase “has a nice convergence theory” and cite a reference for this claim.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Add citation after “.. proposed by Phillip Wolfe in 1969.”&lt;br /&gt;
# Figure 1 is between two sections. Please fix this issue. &lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# Add some space between iterations or subsection break&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# Too few references in this section. &lt;br /&gt;
# Last paragraph makes some claims without references. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Piecewise linear approximation|Piecewise Linear Approximation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The content of this section is good, but there are some issues with sentence clarity and some other grammatical errors. Please revisit this section and make changes accordingly. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Fix typo “to force the x’ values become associated with”. &lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Some of these longer sentences are hard to read. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Expand the conclusion section to be longer than one sentence. The conclusion section to include a brief summary of what was discussed above, an emphasis on it’s significance, and a brief discussion of future extensions and research direction if applicable.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to sources when possible.&lt;br /&gt;
&lt;br /&gt;
== [[Mathematical programming with equilibrium constraints|Mathematical Programming with Equilibrium constraints]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Wing shape optimization|Wing shape Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC. Any formatting issue will incur a penalty in the grading.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction is missing several references (e.g., “software packages like computational fluid dynamics..”, sentences containing things that aren’t common knowledge, performance claims, etc.)&lt;br /&gt;
# Avoid discussion involving finer details of subject methods in this section. &lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. Same applies to box of content!&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Properly cite the CFD package, don’t just include a link. &lt;br /&gt;
# Properly label the figure with a figure number.&lt;br /&gt;
# Consider removing white space between isolated sentences to improve readability. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# If you’ve already defined an abbreviation (CFD), there is no need to define it again. Just use the abbreviation.&lt;br /&gt;
# Avoid pronouns such as “we” or “they”.&lt;br /&gt;
# Phrases like “under the following” need to be followed by a colon.&lt;br /&gt;
# Properly label the figure with a figure number and consider making them larger to improve visibility. Call the reader&#039;s attention to the figures in text by referencing the figure number.&lt;br /&gt;
# “As seen in the video below” is stated yet there are only images present and it may be initially unclear to the reader which figure is being referenced here. &lt;br /&gt;
# Avoid inserting inline citations like “[4] introduces an..”  as it is a bit informal when you don’t explicitly name the subject.&lt;br /&gt;
# Don’t just cite the reference when discussing the problem formulation, explicitly write the model formulation and solution process using LaTex or equation visual editor.&lt;br /&gt;
# Your team should ideally create a numerical example independently. If you take a numerical example directly from a textbook, etc., you will need to get explicit permission from the author in writing and share that written permission with me.&lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
# The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Some characters are randomly capitalized in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# These variables should be defined before the conclusion section, they are out of place here. Also, please use normal text when explaining variables except for the variable symbol. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Interior-point method for NLP|Interior point method for NLP]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
** Need discussion about the concept of “central path” and the notion of self concordance&lt;br /&gt;
** Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
** Fix typo “optimisation”.&lt;br /&gt;
== [[AdaGrad|Adagrad]] ==&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the first sentence, “..take the following numerical example” should be followed by a colon. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is too short; include specific applications in which input features are sparse and Adagrad excels.&lt;br /&gt;
* &lt;br /&gt;
* References &lt;br /&gt;
&lt;br /&gt;
# References not properly formatted&lt;br /&gt;
&lt;br /&gt;
== [[McCormick envelopes|McCormick Envelopes]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
* Sections&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution. &lt;br /&gt;
# The solution technique should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section: &lt;br /&gt;
* References&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;br /&gt;
&lt;br /&gt;
== [[Branch and bound (BB) for MINLP|Branch and Bound for MINLP]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
# Please show a step-by-step solution in the example. The solution is incomplete. The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
&lt;br /&gt;
# This example does not follow the MINLP structure discussed in the above section since binary variables are missing. Branch and bound may not be appropriate for such problems. Please provide an appropriate numerical example and solve it according to the above comments.&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section:&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources. A quick Google scholar search could provide relevant references.&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=6178</id>
		<title>2021 Cornell Optimization Open Textbook Feedback</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=6178"/>
		<updated>2021-12-19T00:41:11Z</updated>

		<summary type="html">&lt;p&gt;Asa273: /* Branch and Bound for MINLP */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[Lagrangean duality|Lagrangian duality]] ==&lt;br /&gt;
* Author list, sections and TOC&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The Lagrangian variables associated with equality constraints h(x) are unbounded but the Lagrangian dual problem states them as non-negative. Please fix the same.&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
#  Please update the dual objective function and domain of dual variables accordingly.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Disjunctive inequalities|Disjunctive Inequalities]] ==&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
==[[Stochastic programming|Stochastic Programming]]==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
** The symbol “xi” in the methodology subsection should be explained.&lt;br /&gt;
** The inline notations (`x1`, `s1`) should also be typed using LaTex.&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications;&lt;br /&gt;
# I suggest eliminating citing the last name of the first author (i.e. Zhou et al.)&lt;br /&gt;
==[[Exponential transformation|Exponential Transformation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
== [[Portfolio optimization|Portfolio Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Rephrase “Cut the relevant information and conditions in the portfolio optimization, as well as the final requirements into the relevant variables, constraints and linear functions of the linear programming problem.”&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Fix misspelling “dolling decision variables”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Need some commas here (second sentence hard to read).&lt;br /&gt;
* References&lt;br /&gt;
# Remove white space between end of sentences and reference numbers.&lt;br /&gt;
&lt;br /&gt;
== [[Chance-constraint method|Chance constraint method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Some normal text was expressed as equation.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
==  [[Bayesian Optimization]] ==&lt;br /&gt;
* Introduction&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Captions need reformatting.&lt;br /&gt;
# Consider italicizing keywords rather than bolding.&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Acquisition function figure could be made larger and clearer to improve readability.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any references to functions or methods in code ‘e.g. fmin’ should be properly formatted as code-stylized text.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Avoid including a figure of the code for this example and explicitly describe the steps to the modeling and solution process instead. &lt;br /&gt;
# Avoid pronouns such as “our” and “we”.&lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Conjugate gradient methods]]  ==&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
# Please indent equation blocks.&lt;br /&gt;
# Please properly format pseudocode.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Consider adding future research directions&lt;br /&gt;
== [[Geometric programming|Geometric Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section:&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Adam]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Avoid inserting inline citations after words like “This article..” as it is a bit informal. This could be rephrased or changed to something like “According to author,^[2] …” with author name inserted.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
== [[A-star algorithm|a* algorithm]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic:&lt;br /&gt;
# Please consider correcting a few grammatical errors: “Optimal path”, “cross country”, missing period at end of first paragraph, other random capitalizations, etc.&lt;br /&gt;
# There are no citations in the introduction. Please cite every source.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add the mathematical description of the algorithm. (Insufficient) &lt;br /&gt;
# Please fix grammatical and spelling errors as (“from current position to the goal”, “There are a lot of discussions”, etc). Also, many hyphens are missing as “non playable”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The numerical example does not show the full computations the algorithm performs. Please show the computation on a smaller example.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Job shop scheduling|Job-Shop Scheduling Problem]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
# Since this Wiki focuses on jobshop scheduling, at least two methods are expected. Branch and bound is a general MILP technique, so, it is recommended to add a tailored technique that can only solve specific jobshop scheduling problems. Solving the numerical example with this technique is not necessary.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Optimization in game theory]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Add a mathematical description of the problem and a pseudocode/flowchart for the Lemke-Howson algorithm.  &lt;br /&gt;
# Rephrase “This algorithm utilizes iterated pivoting much like the simplex algorithm used in the simplex algorithm used in linear programming”.&lt;br /&gt;
# Formatting (incomplete). &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style. &lt;br /&gt;
&lt;br /&gt;
== [[Trust-region methods]] ==&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
** Avoid pronouns such as “we”. This goes for all other sections as well.&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Organization of ideas in this section needs work.&lt;br /&gt;
# You have not defined explicitly why the Cauchy point is important to compute beyond a vague allusion to performance improvements, which is also wrong (it is useful because of its guarantees for convergence, not performance) It is also misspelled.&lt;br /&gt;
# Please format the algorithm in proper algorithmic pseudocode format.&lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style.&lt;br /&gt;
&lt;br /&gt;
*There are numerous misspellings, grammatical errors, and incorrect claims. Please fix these.&lt;br /&gt;
&lt;br /&gt;
== [[Momentum]] ==&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Stochastic dynamic programming|Stochastic Dynamic programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions &lt;br /&gt;
# Remove the grey box background of equations.&lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Outer-approximation (OA)|Outer-approximation]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic &lt;br /&gt;
# See formatting guideline below&lt;br /&gt;
# Avoid opinionated statements such as “MINLP problems are usually the hardest to solve”.&lt;br /&gt;
# Rearrange the text such that the MINLP formulation is in the theory section and keep the introduction in words only.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Consider left aligning equations and optimization problem formulations by the “=”. See [[Stochastic programming|https://optimization.cbe.cornell.edu/index.php?title=Stochastic_programming]] for an example&lt;br /&gt;
# The sentence “The Outer-Approximation (OA) algorithm was first proposed by Duran and and Grossmann in 1986 to solve MINLP problems.” needs a reference. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# “Minimize” and “subject to” should be “min” and “s.t.” in MathType&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Does not explicitly point out why OA is applicable (and/or preferred) in these applications, rather than other MINLP approaches (show that the problem formulations are amenable to a solution approach through OA)&lt;br /&gt;
# The sentence “... an active research area and there exists a vast number of applications in fields such as engineering, computational chemistry, and finance.” needs references. &lt;br /&gt;
# Posting GAMS code on the page is generally inappropriate and discouraged. Please check with the TAs or me if you have a strong desire to post GAMS codes on the Wiki page. A typical textbook should not be limited to a specific software package. If the GAMS code must be posted, please also post ALL other software implementation versions, such as Pyomo and JuliaOPT, among others.&lt;br /&gt;
# Consider reformatting to make steps more readable. Inserting spaces and breaking down steps would help. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Too short. Consider discussion on future research direction and discussion on uncertainty&lt;br /&gt;
# Please review abbreviations throughout the page. Why is MINLP redefined here? “Outer-Approximation is a well known efficient approach for solving convex mixed-integer nonlinear programs (MINLP)”. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove &amp;quot;Template:Reflist&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== [[Unit commitment problem]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction and avoid discussions of examples or specific applications in this section.&lt;br /&gt;
# The sentence “Nonlinear, Non-convex programming optimization problem.” doesn’t make sense by itself and Non-convex shouldn’t be capitalized.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Figure/image format should be revised to better display the content.&lt;br /&gt;
# Uppercase characters are used randomly (e.g., “non-convex transmission Constraints”) . Please follow correct language conventions for sentence structure.&lt;br /&gt;
# Avoid inserting inline citations after words like “written in matrix form as equation [3]..” or “presented in [3]...” as it is a bit informal when you don’t explicitly name the subject. Also these two sentences are grammatically incorrect and appear to be missing an ending period and comma, respectively. &lt;br /&gt;
# Don’t say “written in matrix form as equation..” and just cite the reference, actually write out the equation. &lt;br /&gt;
# Properly label the figure in this section with a figure number and improve visibility by making it larger. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Label the figures in this section properly with figure numbers.&lt;br /&gt;
# Fix typo “while minimize” to “while minimizing”. &lt;br /&gt;
# Avoid pronouns such as “we”. &lt;br /&gt;
# Use the equation editor when typing equations. &lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
# The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# I suggest changing the order of the subtitles here. For example, Single-Period Unit Commitment. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Frank-Wolfe]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications: &lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
== [[Line search methods|Line Search Method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Expand the introduction and avoid discussion on some of the specific steps in the solution process. &lt;br /&gt;
# Provide references here. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The phrase “are as follows” in the steepest descent method discussion needs to be followed by a colon. &lt;br /&gt;
# Rephrase “has a nice convergence theory” and cite a reference for this claim.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Add citation after “.. proposed by Phillip Wolfe in 1969.”&lt;br /&gt;
# Figure 1 is between two sections. Please fix this issue. &lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# Add some space between iterations or subsection break&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# Too few references in this section. &lt;br /&gt;
# Last paragraph makes some claims without references. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Piecewise linear approximation|Piecewise Linear Approximation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The content of this section is good, but there are some issues with sentence clarity and some other grammatical errors. Please revisit this section and make changes accordingly. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Fix typo “to force the x’ values become associated with”. &lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Some of these longer sentences are hard to read. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Expand the conclusion section to be longer than one sentence. The conclusion section to include a brief summary of what was discussed above, an emphasis on it’s significance, and a brief discussion of future extensions and research direction if applicable.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to sources when possible.&lt;br /&gt;
&lt;br /&gt;
== [[Mathematical programming with equilibrium constraints|Mathematical Programming with Equilibrium constraints]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Wing shape optimization|Wing shape Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC. Any formatting issue will incur a penalty in the grading.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction is missing several references (e.g., “software packages like computational fluid dynamics..”, sentences containing things that aren’t common knowledge, performance claims, etc.)&lt;br /&gt;
# Avoid discussion involving finer details of subject methods in this section. &lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. Same applies to box of content!&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Properly cite the CFD package, don’t just include a link. &lt;br /&gt;
# Properly label the figure with a figure number.&lt;br /&gt;
# Consider removing white space between isolated sentences to improve readability. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# If you’ve already defined an abbreviation (CFD), there is no need to define it again. Just use the abbreviation.&lt;br /&gt;
# Avoid pronouns such as “we” or “they”.&lt;br /&gt;
# Phrases like “under the following” need to be followed by a colon.&lt;br /&gt;
# Properly label the figure with a figure number and consider making them larger to improve visibility. Call the reader&#039;s attention to the figures in text by referencing the figure number.&lt;br /&gt;
# “As seen in the video below” is stated yet there are only images present and it may be initially unclear to the reader which figure is being referenced here. &lt;br /&gt;
# Avoid inserting inline citations like “[4] introduces an..”  as it is a bit informal when you don’t explicitly name the subject.&lt;br /&gt;
# Don’t just cite the reference when discussing the problem formulation, explicitly write the model formulation and solution process using LaTex or equation visual editor.&lt;br /&gt;
# Your team should ideally create a numerical example independently. If you take a numerical example directly from a textbook, etc., you will need to get explicit permission from the author in writing and share that written permission with me.&lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
# The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Some characters are randomly capitalized in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# These variables should be defined before the conclusion section, they are out of place here. Also, please use normal text when explaining variables except for the variable symbol. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Interior-point method for NLP|Interior point method for NLP]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
** Need discussion about the concept of “central path” and the notion of self concordance&lt;br /&gt;
** Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
** Fix typo “optimisation”.&lt;br /&gt;
== [[AdaGrad|Adagrad]] ==&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the first sentence, “..take the following numerical example” should be followed by a colon. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is too short; include specific applications in which input features are sparse and Adagrad excels.&lt;br /&gt;
* &lt;br /&gt;
* References &lt;br /&gt;
&lt;br /&gt;
# References not properly formatted&lt;br /&gt;
&lt;br /&gt;
== [[McCormick envelopes|McCormick Envelopes]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
* Sections&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution. &lt;br /&gt;
# The solution technique should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section: &lt;br /&gt;
* References&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;br /&gt;
&lt;br /&gt;
== [[Branch and bound (BB) for MINLP|Branch and Bound for MINLP]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Use linked citations please as the Wiki template above. &lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
# Please show a step-by-step solution in the example. The solution is incomplete. The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
&lt;br /&gt;
# This example does not follow the MINLP structure discussed in the above section since binary variables are missing. Branch and bound may not be appropriate for such problems. Please provide an appropriate numerical example and solve it according to the above comments.&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section:&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources. A quick Google scholar search could provide relevant references.&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=6177</id>
		<title>2021 Cornell Optimization Open Textbook Feedback</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=6177"/>
		<updated>2021-12-19T00:27:57Z</updated>

		<summary type="html">&lt;p&gt;Asa273: /* Mathematical Programming with Equilibrium constraints */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[Lagrangean duality|Lagrangian duality]] ==&lt;br /&gt;
* Author list, sections and TOC&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The Lagrangian variables associated with equality constraints h(x) are unbounded but the Lagrangian dual problem states them as non-negative. Please fix the same.&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
#  Please update the dual objective function and domain of dual variables accordingly.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Disjunctive inequalities|Disjunctive Inequalities]] ==&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
==[[Stochastic programming|Stochastic Programming]]==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
** The symbol “xi” in the methodology subsection should be explained.&lt;br /&gt;
** The inline notations (`x1`, `s1`) should also be typed using LaTex.&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications;&lt;br /&gt;
# I suggest eliminating citing the last name of the first author (i.e. Zhou et al.)&lt;br /&gt;
==[[Exponential transformation|Exponential Transformation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
== [[Portfolio optimization|Portfolio Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Rephrase “Cut the relevant information and conditions in the portfolio optimization, as well as the final requirements into the relevant variables, constraints and linear functions of the linear programming problem.”&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Fix misspelling “dolling decision variables”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Need some commas here (second sentence hard to read).&lt;br /&gt;
* References&lt;br /&gt;
# Remove white space between end of sentences and reference numbers.&lt;br /&gt;
&lt;br /&gt;
== [[Chance-constraint method|Chance constraint method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Some normal text was expressed as equation.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
==  [[Bayesian Optimization]] ==&lt;br /&gt;
* Introduction&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Captions need reformatting.&lt;br /&gt;
# Consider italicizing keywords rather than bolding.&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Acquisition function figure could be made larger and clearer to improve readability.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any references to functions or methods in code ‘e.g. fmin’ should be properly formatted as code-stylized text.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Avoid including a figure of the code for this example and explicitly describe the steps to the modeling and solution process instead. &lt;br /&gt;
# Avoid pronouns such as “our” and “we”.&lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Conjugate gradient methods]]  ==&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
# Please indent equation blocks.&lt;br /&gt;
# Please properly format pseudocode.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Consider adding future research directions&lt;br /&gt;
== [[Geometric programming|Geometric Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section:&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Adam]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Avoid inserting inline citations after words like “This article..” as it is a bit informal. This could be rephrased or changed to something like “According to author,^[2] …” with author name inserted.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
== [[A-star algorithm|a* algorithm]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic:&lt;br /&gt;
# Please consider correcting a few grammatical errors: “Optimal path”, “cross country”, missing period at end of first paragraph, other random capitalizations, etc.&lt;br /&gt;
# There are no citations in the introduction. Please cite every source.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add the mathematical description of the algorithm. (Insufficient) &lt;br /&gt;
# Please fix grammatical and spelling errors as (“from current position to the goal”, “There are a lot of discussions”, etc). Also, many hyphens are missing as “non playable”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The numerical example does not show the full computations the algorithm performs. Please show the computation on a smaller example.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Job shop scheduling|Job-Shop Scheduling Problem]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
# Since this Wiki focuses on jobshop scheduling, at least two methods are expected. Branch and bound is a general MILP technique, so, it is recommended to add a tailored technique that can only solve specific jobshop scheduling problems. Solving the numerical example with this technique is not necessary.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Optimization in game theory]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Add a mathematical description of the problem and a pseudocode/flowchart for the Lemke-Howson algorithm.  &lt;br /&gt;
# Rephrase “This algorithm utilizes iterated pivoting much like the simplex algorithm used in the simplex algorithm used in linear programming”.&lt;br /&gt;
# Formatting (incomplete). &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style. &lt;br /&gt;
&lt;br /&gt;
== [[Trust-region methods]] ==&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
** Avoid pronouns such as “we”. This goes for all other sections as well.&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Organization of ideas in this section needs work.&lt;br /&gt;
# You have not defined explicitly why the Cauchy point is important to compute beyond a vague allusion to performance improvements, which is also wrong (it is useful because of its guarantees for convergence, not performance) It is also misspelled.&lt;br /&gt;
# Please format the algorithm in proper algorithmic pseudocode format.&lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style.&lt;br /&gt;
&lt;br /&gt;
*There are numerous misspellings, grammatical errors, and incorrect claims. Please fix these.&lt;br /&gt;
&lt;br /&gt;
== [[Momentum]] ==&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Stochastic dynamic programming|Stochastic Dynamic programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions &lt;br /&gt;
# Remove the grey box background of equations.&lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Outer-approximation (OA)|Outer-approximation]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic &lt;br /&gt;
# See formatting guideline below&lt;br /&gt;
# Avoid opinionated statements such as “MINLP problems are usually the hardest to solve”.&lt;br /&gt;
# Rearrange the text such that the MINLP formulation is in the theory section and keep the introduction in words only.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Consider left aligning equations and optimization problem formulations by the “=”. See [[Stochastic programming|https://optimization.cbe.cornell.edu/index.php?title=Stochastic_programming]] for an example&lt;br /&gt;
# The sentence “The Outer-Approximation (OA) algorithm was first proposed by Duran and and Grossmann in 1986 to solve MINLP problems.” needs a reference. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# “Minimize” and “subject to” should be “min” and “s.t.” in MathType&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Does not explicitly point out why OA is applicable (and/or preferred) in these applications, rather than other MINLP approaches (show that the problem formulations are amenable to a solution approach through OA)&lt;br /&gt;
# The sentence “... an active research area and there exists a vast number of applications in fields such as engineering, computational chemistry, and finance.” needs references. &lt;br /&gt;
# Posting GAMS code on the page is generally inappropriate and discouraged. Please check with the TAs or me if you have a strong desire to post GAMS codes on the Wiki page. A typical textbook should not be limited to a specific software package. If the GAMS code must be posted, please also post ALL other software implementation versions, such as Pyomo and JuliaOPT, among others.&lt;br /&gt;
# Consider reformatting to make steps more readable. Inserting spaces and breaking down steps would help. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Too short. Consider discussion on future research direction and discussion on uncertainty&lt;br /&gt;
# Please review abbreviations throughout the page. Why is MINLP redefined here? “Outer-Approximation is a well known efficient approach for solving convex mixed-integer nonlinear programs (MINLP)”. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove &amp;quot;Template:Reflist&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== [[Unit commitment problem]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction and avoid discussions of examples or specific applications in this section.&lt;br /&gt;
# The sentence “Nonlinear, Non-convex programming optimization problem.” doesn’t make sense by itself and Non-convex shouldn’t be capitalized.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Figure/image format should be revised to better display the content.&lt;br /&gt;
# Uppercase characters are used randomly (e.g., “non-convex transmission Constraints”) . Please follow correct language conventions for sentence structure.&lt;br /&gt;
# Avoid inserting inline citations after words like “written in matrix form as equation [3]..” or “presented in [3]...” as it is a bit informal when you don’t explicitly name the subject. Also these two sentences are grammatically incorrect and appear to be missing an ending period and comma, respectively. &lt;br /&gt;
# Don’t say “written in matrix form as equation..” and just cite the reference, actually write out the equation. &lt;br /&gt;
# Properly label the figure in this section with a figure number and improve visibility by making it larger. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Label the figures in this section properly with figure numbers.&lt;br /&gt;
# Fix typo “while minimize” to “while minimizing”. &lt;br /&gt;
# Avoid pronouns such as “we”. &lt;br /&gt;
# Use the equation editor when typing equations. &lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
# The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# I suggest changing the order of the subtitles here. For example, Single-Period Unit Commitment. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Frank-Wolfe]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications: &lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
== [[Line search methods|Line Search Method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Expand the introduction and avoid discussion on some of the specific steps in the solution process. &lt;br /&gt;
# Provide references here. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The phrase “are as follows” in the steepest descent method discussion needs to be followed by a colon. &lt;br /&gt;
# Rephrase “has a nice convergence theory” and cite a reference for this claim.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Add citation after “.. proposed by Phillip Wolfe in 1969.”&lt;br /&gt;
# Figure 1 is between two sections. Please fix this issue. &lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# Add some space between iterations or subsection break&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# Too few references in this section. &lt;br /&gt;
# Last paragraph makes some claims without references. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Piecewise linear approximation|Piecewise Linear Approximation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The content of this section is good, but there are some issues with sentence clarity and some other grammatical errors. Please revisit this section and make changes accordingly. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Fix typo “to force the x’ values become associated with”. &lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Some of these longer sentences are hard to read. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Expand the conclusion section to be longer than one sentence. The conclusion section to include a brief summary of what was discussed above, an emphasis on it’s significance, and a brief discussion of future extensions and research direction if applicable.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to sources when possible.&lt;br /&gt;
&lt;br /&gt;
== [[Mathematical programming with equilibrium constraints|Mathematical Programming with Equilibrium constraints]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Wing shape optimization|Wing shape Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC. Any formatting issue will incur a penalty in the grading.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction is missing several references (e.g., “software packages like computational fluid dynamics..”, sentences containing things that aren’t common knowledge, performance claims, etc.)&lt;br /&gt;
# Avoid discussion involving finer details of subject methods in this section. &lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. Same applies to box of content!&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Properly cite the CFD package, don’t just include a link. &lt;br /&gt;
# Properly label the figure with a figure number.&lt;br /&gt;
# Consider removing white space between isolated sentences to improve readability. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# If you’ve already defined an abbreviation (CFD), there is no need to define it again. Just use the abbreviation.&lt;br /&gt;
# Avoid pronouns such as “we” or “they”.&lt;br /&gt;
# Phrases like “under the following” need to be followed by a colon.&lt;br /&gt;
# Properly label the figure with a figure number and consider making them larger to improve visibility. Call the reader&#039;s attention to the figures in text by referencing the figure number.&lt;br /&gt;
# “As seen in the video below” is stated yet there are only images present and it may be initially unclear to the reader which figure is being referenced here. &lt;br /&gt;
# Avoid inserting inline citations like “[4] introduces an..”  as it is a bit informal when you don’t explicitly name the subject.&lt;br /&gt;
# Don’t just cite the reference when discussing the problem formulation, explicitly write the model formulation and solution process using LaTex or equation visual editor.&lt;br /&gt;
# Your team should ideally create a numerical example independently. If you take a numerical example directly from a textbook, etc., you will need to get explicit permission from the author in writing and share that written permission with me.&lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
# The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Some characters are randomly capitalized in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# These variables should be defined before the conclusion section, they are out of place here. Also, please use normal text when explaining variables except for the variable symbol. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Interior-point method for NLP|Interior point method for NLP]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
** Need discussion about the concept of “central path” and the notion of self concordance&lt;br /&gt;
** Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
** Fix typo “optimisation”.&lt;br /&gt;
== [[AdaGrad|Adagrad]] ==&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the first sentence, “..take the following numerical example” should be followed by a colon. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is too short; include specific applications in which input features are sparse and Adagrad excels.&lt;br /&gt;
* &lt;br /&gt;
* References &lt;br /&gt;
&lt;br /&gt;
# References not properly formatted&lt;br /&gt;
&lt;br /&gt;
== [[McCormick envelopes|McCormick Envelopes]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
* Sections&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution. &lt;br /&gt;
# The solution technique should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section: &lt;br /&gt;
* References&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;br /&gt;
&lt;br /&gt;
== [[Branch and bound (BB) for MINLP|Branch and Bound for MINLP]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
** Remove NetIDS&lt;br /&gt;
** Please remove abbreviations from the title (i.e. BB).&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please cite sources appropriately: References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Introduction is very short for a well-recognized topic. Please expand significantly. You may refer to the Wiki examples to get an idea on writing the Introduction to a topic.&lt;br /&gt;
# An illustration might be useful here.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The algorithm described here considers only binary integer variables. However, MINLP problems may include non-binary integer variables too. Please update the method or provide a short description of the assumptions that the MINLP problem needs to satisfy in order for the presented technique to be applicable.&lt;br /&gt;
# Use linked citations please as the Wiki template above. &lt;br /&gt;
# Please provide steps in a more organized way. Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Step 2 is missing yet it is referenced in the text multiple times. Please address this in addition to the above comment.&lt;br /&gt;
# An illustration might be useful here as well. &lt;br /&gt;
# Please explain what a Gomory Cut is. If the topic is available on optimization.cb.cornell.edu, you can link it.    &lt;br /&gt;
# The current equations seem to be simple text written in Italics. All mathematical symbols and equations should be formatted via LaTex.&lt;br /&gt;
# Please format the math programs with equations and notations using formulations in lecture notes as templates.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution.&lt;br /&gt;
# Please show a step-by-step solution in the example. The solution is incomplete. The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
# Please use the equation editor for equations or mathematical symbols. - All mathematical symbols and equations should be formatted via LaTex - this is a learning objective of the Wiki assignment. You can find some useful links on converting your equations/symbols into LaTex code here: (&amp;lt;nowiki&amp;gt;https://optimization.cbe.cornell.edu/index.php?title=Help:Contents&amp;lt;/nowiki&amp;gt;). Again, any formatting issue will incur a &amp;quot;compound&amp;quot; penalty in the grading.&lt;br /&gt;
# This example does not follow the MINLP structure discussed in the above section since binary variables are missing. Branch and bound may not be appropriate for such problems. Please provide an appropriate numerical example and solve it according to the above comments.&lt;br /&gt;
# Make sure your example is not taken from a book as that is strictly disallowed. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is not well-formatted. Please provide 3 applications and explain each in a few sentences and how BB for MINLP could be used. Also, please eliminate having multiple sections (Application, Mathematical problem, industrial application). All these could be merged together.&lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section:&lt;br /&gt;
# The sentence is hard to understand &amp;quot;a scheme that grows exponentially because&amp;quot; please use a simple language. Is it also theoretically correct? It is also not mentioned and explained earlier. Thus, please avoid introducing new concepts or terms at the end. &lt;br /&gt;
# Please use summarizing sentences to describe earlier sections instead of introducing new concepts/discussion. &lt;br /&gt;
* References&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources. A quick Google scholar search could provide relevant references.&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=6164</id>
		<title>2021 Cornell Optimization Open Textbook Feedback</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=6164"/>
		<updated>2021-12-18T21:02:11Z</updated>

		<summary type="html">&lt;p&gt;Asa273: /* Momentum */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[Lagrangean duality|Lagrangian duality]] ==&lt;br /&gt;
* Author list, sections and TOC&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The Lagrangian variables associated with equality constraints h(x) are unbounded but the Lagrangian dual problem states them as non-negative. Please fix the same.&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
#  Please update the dual objective function and domain of dual variables accordingly.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Disjunctive inequalities|Disjunctive Inequalities]] ==&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
==[[Stochastic programming|Stochastic Programming]]==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
** The symbol “xi” in the methodology subsection should be explained.&lt;br /&gt;
** The inline notations (`x1`, `s1`) should also be typed using LaTex.&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications;&lt;br /&gt;
# I suggest eliminating citing the last name of the first author (i.e. Zhou et al.)&lt;br /&gt;
==[[Exponential transformation|Exponential Transformation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
== [[Portfolio optimization|Portfolio Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Rephrase “Cut the relevant information and conditions in the portfolio optimization, as well as the final requirements into the relevant variables, constraints and linear functions of the linear programming problem.”&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Fix misspelling “dolling decision variables”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Need some commas here (second sentence hard to read).&lt;br /&gt;
* References&lt;br /&gt;
# Remove white space between end of sentences and reference numbers.&lt;br /&gt;
&lt;br /&gt;
== [[Chance-constraint method|Chance constraint method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Some normal text was expressed as equation.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
==  [[Bayesian Optimization]] ==&lt;br /&gt;
* Introduction&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Captions need reformatting.&lt;br /&gt;
# Consider italicizing keywords rather than bolding.&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Acquisition function figure could be made larger and clearer to improve readability.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any references to functions or methods in code ‘e.g. fmin’ should be properly formatted as code-stylized text.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Avoid including a figure of the code for this example and explicitly describe the steps to the modeling and solution process instead. &lt;br /&gt;
# Avoid pronouns such as “our” and “we”.&lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Conjugate gradient methods]]  ==&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
# Please indent equation blocks.&lt;br /&gt;
# Please properly format pseudocode.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Consider adding future research directions&lt;br /&gt;
== [[Geometric programming|Geometric Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section:&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Adam]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Avoid inserting inline citations after words like “This article..” as it is a bit informal. This could be rephrased or changed to something like “According to author,^[2] …” with author name inserted.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
== [[A-star algorithm|a* algorithm]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic:&lt;br /&gt;
# Please consider correcting a few grammatical errors: “Optimal path”, “cross country”, missing period at end of first paragraph, other random capitalizations, etc.&lt;br /&gt;
# There are no citations in the introduction. Please cite every source.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add the mathematical description of the algorithm. (Insufficient) &lt;br /&gt;
# Please fix grammatical and spelling errors as (“from current position to the goal”, “There are a lot of discussions”, etc). Also, many hyphens are missing as “non playable”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The numerical example does not show the full computations the algorithm performs. Please show the computation on a smaller example.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Job shop scheduling|Job-Shop Scheduling Problem]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
# Since this Wiki focuses on jobshop scheduling, at least two methods are expected. Branch and bound is a general MILP technique, so, it is recommended to add a tailored technique that can only solve specific jobshop scheduling problems. Solving the numerical example with this technique is not necessary.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Optimization in game theory]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Add a mathematical description of the problem and a pseudocode/flowchart for the Lemke-Howson algorithm.  &lt;br /&gt;
# Rephrase “This algorithm utilizes iterated pivoting much like the simplex algorithm used in the simplex algorithm used in linear programming”.&lt;br /&gt;
# Formatting (incomplete). &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summarizing especially from theory sentences and avoid long sentences. &lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style. &lt;br /&gt;
&lt;br /&gt;
== [[Trust-region methods]] ==&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
** Avoid pronouns such as “we”. This goes for all other sections as well.&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Organization of ideas in this section needs work.&lt;br /&gt;
# You have not defined explicitly why the Cauchy point is important to compute beyond a vague allusion to performance improvements, which is also wrong (it is useful because of its guarantees for convergence, not performance) It is also misspelled.&lt;br /&gt;
# Please format the algorithm in proper algorithmic pseudocode format.&lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style.&lt;br /&gt;
&lt;br /&gt;
*There are numerous misspellings, grammatical errors, and incorrect claims. Please fix these.&lt;br /&gt;
&lt;br /&gt;
== [[Momentum]] ==&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Stochastic dynamic programming|Stochastic Dynamic programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions &lt;br /&gt;
# Remove the grey box background of equations.&lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Outer-approximation (OA)|Outer-approximation]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic &lt;br /&gt;
# See formatting guideline below&lt;br /&gt;
# Avoid opinionated statements such as “MINLP problems are usually the hardest to solve”.&lt;br /&gt;
# Rearrange the text such that the MINLP formulation is in the theory section and keep the introduction in words only.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Consider left aligning equations and optimization problem formulations by the “=”. See [[Stochastic programming|https://optimization.cbe.cornell.edu/index.php?title=Stochastic_programming]] for an example&lt;br /&gt;
# The sentence “The Outer-Approximation (OA) algorithm was first proposed by Duran and and Grossmann in 1986 to solve MINLP problems.” needs a reference. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# “Minimize” and “subject to” should be “min” and “s.t.” in MathType&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Does not explicitly point out why OA is applicable (and/or preferred) in these applications, rather than other MINLP approaches (show that the problem formulations are amenable to a solution approach through OA)&lt;br /&gt;
# The sentence “... an active research area and there exists a vast number of applications in fields such as engineering, computational chemistry, and finance.” needs references. &lt;br /&gt;
# Posting GAMS code on the page is generally inappropriate and discouraged. Please check with the TAs or me if you have a strong desire to post GAMS codes on the Wiki page. A typical textbook should not be limited to a specific software package. If the GAMS code must be posted, please also post ALL other software implementation versions, such as Pyomo and JuliaOPT, among others.&lt;br /&gt;
# Consider reformatting to make steps more readable. Inserting spaces and breaking down steps would help. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Too short. Consider discussion on future research direction and discussion on uncertainty&lt;br /&gt;
# Please review abbreviations throughout the page. Why is MINLP redefined here? “Outer-Approximation is a well known efficient approach for solving convex mixed-integer nonlinear programs (MINLP)”. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove &amp;quot;Template:Reflist&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== [[Unit commitment problem]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction and avoid discussions of examples or specific applications in this section.&lt;br /&gt;
# The sentence “Nonlinear, Non-convex programming optimization problem.” doesn’t make sense by itself and Non-convex shouldn’t be capitalized.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Figure/image format should be revised to better display the content.&lt;br /&gt;
# Uppercase characters are used randomly (e.g., “non-convex transmission Constraints”) . Please follow correct language conventions for sentence structure.&lt;br /&gt;
# Avoid inserting inline citations after words like “written in matrix form as equation [3]..” or “presented in [3]...” as it is a bit informal when you don’t explicitly name the subject. Also these two sentences are grammatically incorrect and appear to be missing an ending period and comma, respectively. &lt;br /&gt;
# Don’t say “written in matrix form as equation..” and just cite the reference, actually write out the equation. &lt;br /&gt;
# Properly label the figure in this section with a figure number and improve visibility by making it larger. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Label the figures in this section properly with figure numbers.&lt;br /&gt;
# Fix typo “while minimize” to “while minimizing”. &lt;br /&gt;
# Avoid pronouns such as “we”. &lt;br /&gt;
# Use the equation editor when typing equations. &lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
# The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# I suggest changing the order of the subtitles here. For example, Single-Period Unit Commitment. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Frank-Wolfe]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications: &lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
== [[Line search methods|Line Search Method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Expand the introduction and avoid discussion on some of the specific steps in the solution process. &lt;br /&gt;
# Provide references here. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The phrase “are as follows” in the steepest descent method discussion needs to be followed by a colon. &lt;br /&gt;
# Rephrase “has a nice convergence theory” and cite a reference for this claim.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Add citation after “.. proposed by Phillip Wolfe in 1969.”&lt;br /&gt;
# Figure 1 is between two sections. Please fix this issue. &lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# Add some space between iterations or subsection break&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# Too few references in this section. &lt;br /&gt;
# Last paragraph makes some claims without references. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Piecewise linear approximation|Piecewise Linear Approximation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The content of this section is good, but there are some issues with sentence clarity and some other grammatical errors. Please revisit this section and make changes accordingly. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Fix typo “to force the x’ values become associated with”. &lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Some of these longer sentences are hard to read. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Expand the conclusion section to be longer than one sentence. The conclusion section to include a brief summary of what was discussed above, an emphasis on it’s significance, and a brief discussion of future extensions and research direction if applicable.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to sources when possible.&lt;br /&gt;
&lt;br /&gt;
== [[Mathematical programming with equilibrium constraints|Mathematical Programming with Equilibrium constraints]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes several terms like variational inequalities, constraint qualifications that were not discussed in the class. Please add a sentence to explain them before using them.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The meaning of parameter vector x is unclear. Please add more information or update if necessary.&lt;br /&gt;
# Equations and symbols in the PIPA subsection are not formatted correctly. Please use the same formatting for all equations, so they read as mathematical equations and not text. This goes for all other sections as well.&lt;br /&gt;
# Use equations instead of images to represent math programs and equations in the Implicit Descent and SQP subsection.&lt;br /&gt;
# Apart from the steps for each solution technique, please also add a few sentences that describe each method.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please define the terms like NCP, MP before abbreviating them. Also try not to unnecessarily abbreviate simple terms.&lt;br /&gt;
# Equations should be typed by LaTex. Images for equations are unacceptable.&lt;br /&gt;
# GAMS code is strongly discouraged. Please solve the problem &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The selected numerical example is fine but is directly solved with the MPEC solver in GAMS. Try to solve it manually like the homework/in-class problems step by step using the steps described in the previous section by choosing any of the methods.&lt;br /&gt;
# Avoid using figures in the equations (subject to etc)&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Add references to “power management, highway pricing, chemical process engineering, and traffic planning.”&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# This Wiki contains very few references. Please check the list below and run a quick Google (Scholar) search to identify relevant literature.&lt;br /&gt;
&lt;br /&gt;
== [[Wing shape optimization|Wing shape Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC. Any formatting issue will incur a penalty in the grading.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction is missing several references (e.g., “software packages like computational fluid dynamics..”, sentences containing things that aren’t common knowledge, performance claims, etc.)&lt;br /&gt;
# Avoid discussion involving finer details of subject methods in this section. &lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. Same applies to box of content!&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Properly cite the CFD package, don’t just include a link. &lt;br /&gt;
# Properly label the figure with a figure number.&lt;br /&gt;
# Consider removing white space between isolated sentences to improve readability. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# If you’ve already defined an abbreviation (CFD), there is no need to define it again. Just use the abbreviation.&lt;br /&gt;
# Avoid pronouns such as “we” or “they”.&lt;br /&gt;
# Phrases like “under the following” need to be followed by a colon.&lt;br /&gt;
# Properly label the figure with a figure number and consider making them larger to improve visibility. Call the reader&#039;s attention to the figures in text by referencing the figure number.&lt;br /&gt;
# “As seen in the video below” is stated yet there are only images present and it may be initially unclear to the reader which figure is being referenced here. &lt;br /&gt;
# Avoid inserting inline citations like “[4] introduces an..”  as it is a bit informal when you don’t explicitly name the subject.&lt;br /&gt;
# Don’t just cite the reference when discussing the problem formulation, explicitly write the model formulation and solution process using LaTex or equation visual editor.&lt;br /&gt;
# Your team should ideally create a numerical example independently. If you take a numerical example directly from a textbook, etc., you will need to get explicit permission from the author in writing and share that written permission with me.&lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
# The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Some characters are randomly capitalized in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# These variables should be defined before the conclusion section, they are out of place here. Also, please use normal text when explaining variables except for the variable symbol. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Interior-point method for NLP|Interior point method for NLP]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
** Need discussion about the concept of “central path” and the notion of self concordance&lt;br /&gt;
** Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
** Fix typo “optimisation”.&lt;br /&gt;
== [[AdaGrad|Adagrad]] ==&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the first sentence, “..take the following numerical example” should be followed by a colon. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is too short; include specific applications in which input features are sparse and Adagrad excels.&lt;br /&gt;
* &lt;br /&gt;
* References &lt;br /&gt;
&lt;br /&gt;
# References not properly formatted&lt;br /&gt;
&lt;br /&gt;
== [[McCormick envelopes|McCormick Envelopes]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
* Sections&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution. &lt;br /&gt;
# The solution technique should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section: &lt;br /&gt;
* References&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;br /&gt;
&lt;br /&gt;
== [[Branch and bound (BB) for MINLP|Branch and Bound for MINLP]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
** Remove NetIDS&lt;br /&gt;
** Please remove abbreviations from the title (i.e. BB).&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please cite sources appropriately: References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Introduction is very short for a well-recognized topic. Please expand significantly. You may refer to the Wiki examples to get an idea on writing the Introduction to a topic.&lt;br /&gt;
# An illustration might be useful here.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The algorithm described here considers only binary integer variables. However, MINLP problems may include non-binary integer variables too. Please update the method or provide a short description of the assumptions that the MINLP problem needs to satisfy in order for the presented technique to be applicable.&lt;br /&gt;
# Use linked citations please as the Wiki template above. &lt;br /&gt;
# Please provide steps in a more organized way. Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Step 2 is missing yet it is referenced in the text multiple times. Please address this in addition to the above comment.&lt;br /&gt;
# An illustration might be useful here as well. &lt;br /&gt;
# Please explain what a Gomory Cut is. If the topic is available on optimization.cb.cornell.edu, you can link it.    &lt;br /&gt;
# The current equations seem to be simple text written in Italics. All mathematical symbols and equations should be formatted via LaTex.&lt;br /&gt;
# Please format the math programs with equations and notations using formulations in lecture notes as templates.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution.&lt;br /&gt;
# Please show a step-by-step solution in the example. The solution is incomplete. The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
# Please use the equation editor for equations or mathematical symbols. - All mathematical symbols and equations should be formatted via LaTex - this is a learning objective of the Wiki assignment. You can find some useful links on converting your equations/symbols into LaTex code here: (&amp;lt;nowiki&amp;gt;https://optimization.cbe.cornell.edu/index.php?title=Help:Contents&amp;lt;/nowiki&amp;gt;). Again, any formatting issue will incur a &amp;quot;compound&amp;quot; penalty in the grading.&lt;br /&gt;
# This example does not follow the MINLP structure discussed in the above section since binary variables are missing. Branch and bound may not be appropriate for such problems. Please provide an appropriate numerical example and solve it according to the above comments.&lt;br /&gt;
# Make sure your example is not taken from a book as that is strictly disallowed. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is not well-formatted. Please provide 3 applications and explain each in a few sentences and how BB for MINLP could be used. Also, please eliminate having multiple sections (Application, Mathematical problem, industrial application). All these could be merged together.&lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section:&lt;br /&gt;
# The sentence is hard to understand &amp;quot;a scheme that grows exponentially because&amp;quot; please use a simple language. Is it also theoretically correct? It is also not mentioned and explained earlier. Thus, please avoid introducing new concepts or terms at the end. &lt;br /&gt;
# Please use summarizing sentences to describe earlier sections instead of introducing new concepts/discussion. &lt;br /&gt;
* References&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources. A quick Google scholar search could provide relevant references.&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=6162</id>
		<title>2021 Cornell Optimization Open Textbook Feedback</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=6162"/>
		<updated>2021-12-18T20:58:03Z</updated>

		<summary type="html">&lt;p&gt;Asa273: /* Job-Shop Scheduling Problem */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[Lagrangean duality|Lagrangian duality]] ==&lt;br /&gt;
* Author list, sections and TOC&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The Lagrangian variables associated with equality constraints h(x) are unbounded but the Lagrangian dual problem states them as non-negative. Please fix the same.&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
#  Please update the dual objective function and domain of dual variables accordingly.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Disjunctive inequalities|Disjunctive Inequalities]] ==&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
==[[Stochastic programming|Stochastic Programming]]==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
** The symbol “xi” in the methodology subsection should be explained.&lt;br /&gt;
** The inline notations (`x1`, `s1`) should also be typed using LaTex.&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications;&lt;br /&gt;
# I suggest eliminating citing the last name of the first author (i.e. Zhou et al.)&lt;br /&gt;
==[[Exponential transformation|Exponential Transformation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
== [[Portfolio optimization|Portfolio Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Rephrase “Cut the relevant information and conditions in the portfolio optimization, as well as the final requirements into the relevant variables, constraints and linear functions of the linear programming problem.”&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Fix misspelling “dolling decision variables”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Need some commas here (second sentence hard to read).&lt;br /&gt;
* References&lt;br /&gt;
# Remove white space between end of sentences and reference numbers.&lt;br /&gt;
&lt;br /&gt;
== [[Chance-constraint method|Chance constraint method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Some normal text was expressed as equation.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
==  [[Bayesian Optimization]] ==&lt;br /&gt;
* Introduction&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Captions need reformatting.&lt;br /&gt;
# Consider italicizing keywords rather than bolding.&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Acquisition function figure could be made larger and clearer to improve readability.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any references to functions or methods in code ‘e.g. fmin’ should be properly formatted as code-stylized text.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Avoid including a figure of the code for this example and explicitly describe the steps to the modeling and solution process instead. &lt;br /&gt;
# Avoid pronouns such as “our” and “we”.&lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Conjugate gradient methods]]  ==&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
# Please indent equation blocks.&lt;br /&gt;
# Please properly format pseudocode.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Consider adding future research directions&lt;br /&gt;
== [[Geometric programming|Geometric Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section:&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Adam]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Avoid inserting inline citations after words like “This article..” as it is a bit informal. This could be rephrased or changed to something like “According to author,^[2] …” with author name inserted.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
== [[A-star algorithm|a* algorithm]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic:&lt;br /&gt;
# Please consider correcting a few grammatical errors: “Optimal path”, “cross country”, missing period at end of first paragraph, other random capitalizations, etc.&lt;br /&gt;
# There are no citations in the introduction. Please cite every source.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add the mathematical description of the algorithm. (Insufficient) &lt;br /&gt;
# Please fix grammatical and spelling errors as (“from current position to the goal”, “There are a lot of discussions”, etc). Also, many hyphens are missing as “non playable”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The numerical example does not show the full computations the algorithm performs. Please show the computation on a smaller example.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Job shop scheduling|Job-Shop Scheduling Problem]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
# Since this Wiki focuses on jobshop scheduling, at least two methods are expected. Branch and bound is a general MILP technique, so, it is recommended to add a tailored technique that can only solve specific jobshop scheduling problems. Solving the numerical example with this technique is not necessary.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Optimization in game theory]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Add a mathematical description of the problem and a pseudocode/flowchart for the Lemke-Howson algorithm.  &lt;br /&gt;
# Rephrase “This algorithm utilizes iterated pivoting much like the simplex algorithm used in the simplex algorithm used in linear programming”.&lt;br /&gt;
# Formatting (incomplete). &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summarizing especially from theory sentences and avoid long sentences. &lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style. &lt;br /&gt;
&lt;br /&gt;
== [[Trust-region methods]] ==&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
** Avoid pronouns such as “we”. This goes for all other sections as well.&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Organization of ideas in this section needs work.&lt;br /&gt;
# You have not defined explicitly why the Cauchy point is important to compute beyond a vague allusion to performance improvements, which is also wrong (it is useful because of its guarantees for convergence, not performance) It is also misspelled.&lt;br /&gt;
# Please format the algorithm in proper algorithmic pseudocode format.&lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style.&lt;br /&gt;
&lt;br /&gt;
*There are numerous misspellings, grammatical errors, and incorrect claims. Please fix these.&lt;br /&gt;
&lt;br /&gt;
== [[Momentum]] ==&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Apart from an explanation on momentum, it is necessary to briefly point out the limitations of SGD and why momentum could help with these limitations. Please update it accordingly.&lt;br /&gt;
# Remove bold on “Momentum”.&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# &lt;br /&gt;
# The definition of the update rule for SGD with momentum looks incorrect, specifically the first expression. Please fix it and also explain all the parameters used.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “W”, “V`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “you”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;. Since writing all iterations is not feasible, at least present a few iterations for both cases.&lt;br /&gt;
# Please try to label the plots that explains what each line color means.&lt;br /&gt;
# Starting point for SGD with momentum is different in explanation and the table. Please fix the same.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please use correct terminology like “optimizing non-convex functions” and not “training non-convex models”.&lt;br /&gt;
* References&lt;br /&gt;
# Almost all references used are URLs. Please try to add journal/conference articles or books for references, instead of directly citing the URLs. Please check the list below and run a quick Google (Scholar) search to identify relevant literature.&lt;br /&gt;
&lt;br /&gt;
== [[Stochastic dynamic programming|Stochastic Dynamic programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions &lt;br /&gt;
# Remove the grey box background of equations.&lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Outer-approximation (OA)|Outer-approximation]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic &lt;br /&gt;
# See formatting guideline below&lt;br /&gt;
# Avoid opinionated statements such as “MINLP problems are usually the hardest to solve”.&lt;br /&gt;
# Rearrange the text such that the MINLP formulation is in the theory section and keep the introduction in words only.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Consider left aligning equations and optimization problem formulations by the “=”. See [[Stochastic programming|https://optimization.cbe.cornell.edu/index.php?title=Stochastic_programming]] for an example&lt;br /&gt;
# The sentence “The Outer-Approximation (OA) algorithm was first proposed by Duran and and Grossmann in 1986 to solve MINLP problems.” needs a reference. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# “Minimize” and “subject to” should be “min” and “s.t.” in MathType&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Does not explicitly point out why OA is applicable (and/or preferred) in these applications, rather than other MINLP approaches (show that the problem formulations are amenable to a solution approach through OA)&lt;br /&gt;
# The sentence “... an active research area and there exists a vast number of applications in fields such as engineering, computational chemistry, and finance.” needs references. &lt;br /&gt;
# Posting GAMS code on the page is generally inappropriate and discouraged. Please check with the TAs or me if you have a strong desire to post GAMS codes on the Wiki page. A typical textbook should not be limited to a specific software package. If the GAMS code must be posted, please also post ALL other software implementation versions, such as Pyomo and JuliaOPT, among others.&lt;br /&gt;
# Consider reformatting to make steps more readable. Inserting spaces and breaking down steps would help. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Too short. Consider discussion on future research direction and discussion on uncertainty&lt;br /&gt;
# Please review abbreviations throughout the page. Why is MINLP redefined here? “Outer-Approximation is a well known efficient approach for solving convex mixed-integer nonlinear programs (MINLP)”. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove &amp;quot;Template:Reflist&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== [[Unit commitment problem]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction and avoid discussions of examples or specific applications in this section.&lt;br /&gt;
# The sentence “Nonlinear, Non-convex programming optimization problem.” doesn’t make sense by itself and Non-convex shouldn’t be capitalized.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Figure/image format should be revised to better display the content.&lt;br /&gt;
# Uppercase characters are used randomly (e.g., “non-convex transmission Constraints”) . Please follow correct language conventions for sentence structure.&lt;br /&gt;
# Avoid inserting inline citations after words like “written in matrix form as equation [3]..” or “presented in [3]...” as it is a bit informal when you don’t explicitly name the subject. Also these two sentences are grammatically incorrect and appear to be missing an ending period and comma, respectively. &lt;br /&gt;
# Don’t say “written in matrix form as equation..” and just cite the reference, actually write out the equation. &lt;br /&gt;
# Properly label the figure in this section with a figure number and improve visibility by making it larger. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Label the figures in this section properly with figure numbers.&lt;br /&gt;
# Fix typo “while minimize” to “while minimizing”. &lt;br /&gt;
# Avoid pronouns such as “we”. &lt;br /&gt;
# Use the equation editor when typing equations. &lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
# The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# I suggest changing the order of the subtitles here. For example, Single-Period Unit Commitment. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Frank-Wolfe]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications: &lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
== [[Line search methods|Line Search Method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Expand the introduction and avoid discussion on some of the specific steps in the solution process. &lt;br /&gt;
# Provide references here. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The phrase “are as follows” in the steepest descent method discussion needs to be followed by a colon. &lt;br /&gt;
# Rephrase “has a nice convergence theory” and cite a reference for this claim.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Add citation after “.. proposed by Phillip Wolfe in 1969.”&lt;br /&gt;
# Figure 1 is between two sections. Please fix this issue. &lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# Add some space between iterations or subsection break&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# Too few references in this section. &lt;br /&gt;
# Last paragraph makes some claims without references. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Piecewise linear approximation|Piecewise Linear Approximation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The content of this section is good, but there are some issues with sentence clarity and some other grammatical errors. Please revisit this section and make changes accordingly. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Fix typo “to force the x’ values become associated with”. &lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Some of these longer sentences are hard to read. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Expand the conclusion section to be longer than one sentence. The conclusion section to include a brief summary of what was discussed above, an emphasis on it’s significance, and a brief discussion of future extensions and research direction if applicable.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to sources when possible.&lt;br /&gt;
&lt;br /&gt;
== [[Mathematical programming with equilibrium constraints|Mathematical Programming with Equilibrium constraints]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes several terms like variational inequalities, constraint qualifications that were not discussed in the class. Please add a sentence to explain them before using them.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The meaning of parameter vector x is unclear. Please add more information or update if necessary.&lt;br /&gt;
# Equations and symbols in the PIPA subsection are not formatted correctly. Please use the same formatting for all equations, so they read as mathematical equations and not text. This goes for all other sections as well.&lt;br /&gt;
# Use equations instead of images to represent math programs and equations in the Implicit Descent and SQP subsection.&lt;br /&gt;
# Apart from the steps for each solution technique, please also add a few sentences that describe each method.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please define the terms like NCP, MP before abbreviating them. Also try not to unnecessarily abbreviate simple terms.&lt;br /&gt;
# Equations should be typed by LaTex. Images for equations are unacceptable.&lt;br /&gt;
# GAMS code is strongly discouraged. Please solve the problem &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The selected numerical example is fine but is directly solved with the MPEC solver in GAMS. Try to solve it manually like the homework/in-class problems step by step using the steps described in the previous section by choosing any of the methods.&lt;br /&gt;
# Avoid using figures in the equations (subject to etc)&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Add references to “power management, highway pricing, chemical process engineering, and traffic planning.”&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# This Wiki contains very few references. Please check the list below and run a quick Google (Scholar) search to identify relevant literature.&lt;br /&gt;
&lt;br /&gt;
== [[Wing shape optimization|Wing shape Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC. Any formatting issue will incur a penalty in the grading.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction is missing several references (e.g., “software packages like computational fluid dynamics..”, sentences containing things that aren’t common knowledge, performance claims, etc.)&lt;br /&gt;
# Avoid discussion involving finer details of subject methods in this section. &lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. Same applies to box of content!&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Properly cite the CFD package, don’t just include a link. &lt;br /&gt;
# Properly label the figure with a figure number.&lt;br /&gt;
# Consider removing white space between isolated sentences to improve readability. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# If you’ve already defined an abbreviation (CFD), there is no need to define it again. Just use the abbreviation.&lt;br /&gt;
# Avoid pronouns such as “we” or “they”.&lt;br /&gt;
# Phrases like “under the following” need to be followed by a colon.&lt;br /&gt;
# Properly label the figure with a figure number and consider making them larger to improve visibility. Call the reader&#039;s attention to the figures in text by referencing the figure number.&lt;br /&gt;
# “As seen in the video below” is stated yet there are only images present and it may be initially unclear to the reader which figure is being referenced here. &lt;br /&gt;
# Avoid inserting inline citations like “[4] introduces an..”  as it is a bit informal when you don’t explicitly name the subject.&lt;br /&gt;
# Don’t just cite the reference when discussing the problem formulation, explicitly write the model formulation and solution process using LaTex or equation visual editor.&lt;br /&gt;
# Your team should ideally create a numerical example independently. If you take a numerical example directly from a textbook, etc., you will need to get explicit permission from the author in writing and share that written permission with me.&lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
# The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Some characters are randomly capitalized in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# These variables should be defined before the conclusion section, they are out of place here. Also, please use normal text when explaining variables except for the variable symbol. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Interior-point method for NLP|Interior point method for NLP]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
** Need discussion about the concept of “central path” and the notion of self concordance&lt;br /&gt;
** Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
** Fix typo “optimisation”.&lt;br /&gt;
== [[AdaGrad|Adagrad]] ==&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the first sentence, “..take the following numerical example” should be followed by a colon. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is too short; include specific applications in which input features are sparse and Adagrad excels.&lt;br /&gt;
* &lt;br /&gt;
* References &lt;br /&gt;
&lt;br /&gt;
# References not properly formatted&lt;br /&gt;
&lt;br /&gt;
== [[McCormick envelopes|McCormick Envelopes]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: OK but I suggest removing NetID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# First sentence is hard to read. Please consider keeping sentences below 25-30 words. &lt;br /&gt;
# No references provided. Please cite all sources. &lt;br /&gt;
# Figure 1 is provided in the middle between two sections. Please include in the introduction section. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# When using mathematical expressions and symbols, please use the equation editor. (e.g., x*y, exy + y, sin (x+y) - x2)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution. &lt;br /&gt;
# The solution technique should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# GAMS code is unnecessary. Please provide detailed step-by-step calculation results.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each. &lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section: &lt;br /&gt;
* References&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;br /&gt;
&lt;br /&gt;
== [[Branch and bound (BB) for MINLP|Branch and Bound for MINLP]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
** Remove NetIDS&lt;br /&gt;
** Please remove abbreviations from the title (i.e. BB).&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please cite sources appropriately: References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Introduction is very short for a well-recognized topic. Please expand significantly. You may refer to the Wiki examples to get an idea on writing the Introduction to a topic.&lt;br /&gt;
# An illustration might be useful here.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The algorithm described here considers only binary integer variables. However, MINLP problems may include non-binary integer variables too. Please update the method or provide a short description of the assumptions that the MINLP problem needs to satisfy in order for the presented technique to be applicable.&lt;br /&gt;
# Use linked citations please as the Wiki template above. &lt;br /&gt;
# Please provide steps in a more organized way. Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Step 2 is missing yet it is referenced in the text multiple times. Please address this in addition to the above comment.&lt;br /&gt;
# An illustration might be useful here as well. &lt;br /&gt;
# Please explain what a Gomory Cut is. If the topic is available on optimization.cb.cornell.edu, you can link it.    &lt;br /&gt;
# The current equations seem to be simple text written in Italics. All mathematical symbols and equations should be formatted via LaTex.&lt;br /&gt;
# Please format the math programs with equations and notations using formulations in lecture notes as templates.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution.&lt;br /&gt;
# Please show a step-by-step solution in the example. The solution is incomplete. The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
# Please use the equation editor for equations or mathematical symbols. - All mathematical symbols and equations should be formatted via LaTex - this is a learning objective of the Wiki assignment. You can find some useful links on converting your equations/symbols into LaTex code here: (&amp;lt;nowiki&amp;gt;https://optimization.cbe.cornell.edu/index.php?title=Help:Contents&amp;lt;/nowiki&amp;gt;). Again, any formatting issue will incur a &amp;quot;compound&amp;quot; penalty in the grading.&lt;br /&gt;
# This example does not follow the MINLP structure discussed in the above section since binary variables are missing. Branch and bound may not be appropriate for such problems. Please provide an appropriate numerical example and solve it according to the above comments.&lt;br /&gt;
# Make sure your example is not taken from a book as that is strictly disallowed. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is not well-formatted. Please provide 3 applications and explain each in a few sentences and how BB for MINLP could be used. Also, please eliminate having multiple sections (Application, Mathematical problem, industrial application). All these could be merged together.&lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section:&lt;br /&gt;
# The sentence is hard to understand &amp;quot;a scheme that grows exponentially because&amp;quot; please use a simple language. Is it also theoretically correct? It is also not mentioned and explained earlier. Thus, please avoid introducing new concepts or terms at the end. &lt;br /&gt;
# Please use summarizing sentences to describe earlier sections instead of introducing new concepts/discussion. &lt;br /&gt;
* References&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources. A quick Google scholar search could provide relevant references.&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=6161</id>
		<title>2021 Cornell Optimization Open Textbook Feedback</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=6161"/>
		<updated>2021-12-18T20:57:46Z</updated>

		<summary type="html">&lt;p&gt;Asa273: /* Job-Shop Scheduling Problem */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[Lagrangean duality|Lagrangian duality]] ==&lt;br /&gt;
* Author list, sections and TOC&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The Lagrangian variables associated with equality constraints h(x) are unbounded but the Lagrangian dual problem states them as non-negative. Please fix the same.&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
#  Please update the dual objective function and domain of dual variables accordingly.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Disjunctive inequalities|Disjunctive Inequalities]] ==&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
==[[Stochastic programming|Stochastic Programming]]==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
** The symbol “xi” in the methodology subsection should be explained.&lt;br /&gt;
** The inline notations (`x1`, `s1`) should also be typed using LaTex.&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications;&lt;br /&gt;
# I suggest eliminating citing the last name of the first author (i.e. Zhou et al.)&lt;br /&gt;
==[[Exponential transformation|Exponential Transformation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
== [[Portfolio optimization|Portfolio Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Rephrase “Cut the relevant information and conditions in the portfolio optimization, as well as the final requirements into the relevant variables, constraints and linear functions of the linear programming problem.”&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Fix misspelling “dolling decision variables”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Need some commas here (second sentence hard to read).&lt;br /&gt;
* References&lt;br /&gt;
# Remove white space between end of sentences and reference numbers.&lt;br /&gt;
&lt;br /&gt;
== [[Chance-constraint method|Chance constraint method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Some normal text was expressed as equation.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
==  [[Bayesian Optimization]] ==&lt;br /&gt;
* Introduction&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Captions need reformatting.&lt;br /&gt;
# Consider italicizing keywords rather than bolding.&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Acquisition function figure could be made larger and clearer to improve readability.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any references to functions or methods in code ‘e.g. fmin’ should be properly formatted as code-stylized text.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Avoid including a figure of the code for this example and explicitly describe the steps to the modeling and solution process instead. &lt;br /&gt;
# Avoid pronouns such as “our” and “we”.&lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Conjugate gradient methods]]  ==&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
# Please indent equation blocks.&lt;br /&gt;
# Please properly format pseudocode.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Consider adding future research directions&lt;br /&gt;
== [[Geometric programming|Geometric Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section:&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Adam]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Avoid inserting inline citations after words like “This article..” as it is a bit informal. This could be rephrased or changed to something like “According to author,^[2] …” with author name inserted.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
== [[A-star algorithm|a* algorithm]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic:&lt;br /&gt;
# Please consider correcting a few grammatical errors: “Optimal path”, “cross country”, missing period at end of first paragraph, other random capitalizations, etc.&lt;br /&gt;
# There are no citations in the introduction. Please cite every source.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add the mathematical description of the algorithm. (Insufficient) &lt;br /&gt;
# Please fix grammatical and spelling errors as (“from current position to the goal”, “There are a lot of discussions”, etc). Also, many hyphens are missing as “non playable”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The numerical example does not show the full computations the algorithm performs. Please show the computation on a smaller example.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Job shop scheduling|Job-Shop Scheduling Problem]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
# Since this Wiki focuses on jobshop scheduling, at least two methods are expected. Branch and bound is a general MILP technique, so, it is recommended to add a tailored technique that can only solve specific jobshop scheduling problems. Solving the numerical example with this technique is not necessary.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Optimization in game theory]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Add a mathematical description of the problem and a pseudocode/flowchart for the Lemke-Howson algorithm.  &lt;br /&gt;
# Rephrase “This algorithm utilizes iterated pivoting much like the simplex algorithm used in the simplex algorithm used in linear programming”.&lt;br /&gt;
# Formatting (incomplete). &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summarizing especially from theory sentences and avoid long sentences. &lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style. &lt;br /&gt;
&lt;br /&gt;
== [[Trust-region methods]] ==&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
** Avoid pronouns such as “we”. This goes for all other sections as well.&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Organization of ideas in this section needs work.&lt;br /&gt;
# You have not defined explicitly why the Cauchy point is important to compute beyond a vague allusion to performance improvements, which is also wrong (it is useful because of its guarantees for convergence, not performance) It is also misspelled.&lt;br /&gt;
# Please format the algorithm in proper algorithmic pseudocode format.&lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style.&lt;br /&gt;
&lt;br /&gt;
*There are numerous misspellings, grammatical errors, and incorrect claims. Please fix these.&lt;br /&gt;
&lt;br /&gt;
== [[Momentum]] ==&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Apart from an explanation on momentum, it is necessary to briefly point out the limitations of SGD and why momentum could help with these limitations. Please update it accordingly.&lt;br /&gt;
# Remove bold on “Momentum”.&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# &lt;br /&gt;
# The definition of the update rule for SGD with momentum looks incorrect, specifically the first expression. Please fix it and also explain all the parameters used.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “W”, “V`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “you”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;. Since writing all iterations is not feasible, at least present a few iterations for both cases.&lt;br /&gt;
# Please try to label the plots that explains what each line color means.&lt;br /&gt;
# Starting point for SGD with momentum is different in explanation and the table. Please fix the same.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please use correct terminology like “optimizing non-convex functions” and not “training non-convex models”.&lt;br /&gt;
* References&lt;br /&gt;
# Almost all references used are URLs. Please try to add journal/conference articles or books for references, instead of directly citing the URLs. Please check the list below and run a quick Google (Scholar) search to identify relevant literature.&lt;br /&gt;
&lt;br /&gt;
== [[Stochastic dynamic programming|Stochastic Dynamic programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions &lt;br /&gt;
# Remove the grey box background of equations.&lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Outer-approximation (OA)|Outer-approximation]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic &lt;br /&gt;
# See formatting guideline below&lt;br /&gt;
# Avoid opinionated statements such as “MINLP problems are usually the hardest to solve”.&lt;br /&gt;
# Rearrange the text such that the MINLP formulation is in the theory section and keep the introduction in words only.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Consider left aligning equations and optimization problem formulations by the “=”. See [[Stochastic programming|https://optimization.cbe.cornell.edu/index.php?title=Stochastic_programming]] for an example&lt;br /&gt;
# The sentence “The Outer-Approximation (OA) algorithm was first proposed by Duran and and Grossmann in 1986 to solve MINLP problems.” needs a reference. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# “Minimize” and “subject to” should be “min” and “s.t.” in MathType&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Does not explicitly point out why OA is applicable (and/or preferred) in these applications, rather than other MINLP approaches (show that the problem formulations are amenable to a solution approach through OA)&lt;br /&gt;
# The sentence “... an active research area and there exists a vast number of applications in fields such as engineering, computational chemistry, and finance.” needs references. &lt;br /&gt;
# Posting GAMS code on the page is generally inappropriate and discouraged. Please check with the TAs or me if you have a strong desire to post GAMS codes on the Wiki page. A typical textbook should not be limited to a specific software package. If the GAMS code must be posted, please also post ALL other software implementation versions, such as Pyomo and JuliaOPT, among others.&lt;br /&gt;
# Consider reformatting to make steps more readable. Inserting spaces and breaking down steps would help. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Too short. Consider discussion on future research direction and discussion on uncertainty&lt;br /&gt;
# Please review abbreviations throughout the page. Why is MINLP redefined here? “Outer-Approximation is a well known efficient approach for solving convex mixed-integer nonlinear programs (MINLP)”. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove &amp;quot;Template:Reflist&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== [[Unit commitment problem]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction and avoid discussions of examples or specific applications in this section.&lt;br /&gt;
# The sentence “Nonlinear, Non-convex programming optimization problem.” doesn’t make sense by itself and Non-convex shouldn’t be capitalized.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Figure/image format should be revised to better display the content.&lt;br /&gt;
# Uppercase characters are used randomly (e.g., “non-convex transmission Constraints”) . Please follow correct language conventions for sentence structure.&lt;br /&gt;
# Avoid inserting inline citations after words like “written in matrix form as equation [3]..” or “presented in [3]...” as it is a bit informal when you don’t explicitly name the subject. Also these two sentences are grammatically incorrect and appear to be missing an ending period and comma, respectively. &lt;br /&gt;
# Don’t say “written in matrix form as equation..” and just cite the reference, actually write out the equation. &lt;br /&gt;
# Properly label the figure in this section with a figure number and improve visibility by making it larger. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Label the figures in this section properly with figure numbers.&lt;br /&gt;
# Fix typo “while minimize” to “while minimizing”. &lt;br /&gt;
# Avoid pronouns such as “we”. &lt;br /&gt;
# Use the equation editor when typing equations. &lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
# The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# I suggest changing the order of the subtitles here. For example, Single-Period Unit Commitment. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Frank-Wolfe]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications: &lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
== [[Line search methods|Line Search Method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Expand the introduction and avoid discussion on some of the specific steps in the solution process. &lt;br /&gt;
# Provide references here. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The phrase “are as follows” in the steepest descent method discussion needs to be followed by a colon. &lt;br /&gt;
# Rephrase “has a nice convergence theory” and cite a reference for this claim.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Add citation after “.. proposed by Phillip Wolfe in 1969.”&lt;br /&gt;
# Figure 1 is between two sections. Please fix this issue. &lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# Add some space between iterations or subsection break&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# Too few references in this section. &lt;br /&gt;
# Last paragraph makes some claims without references. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Piecewise linear approximation|Piecewise Linear Approximation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The content of this section is good, but there are some issues with sentence clarity and some other grammatical errors. Please revisit this section and make changes accordingly. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Fix typo “to force the x’ values become associated with”. &lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Some of these longer sentences are hard to read. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Expand the conclusion section to be longer than one sentence. The conclusion section to include a brief summary of what was discussed above, an emphasis on it’s significance, and a brief discussion of future extensions and research direction if applicable.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to sources when possible.&lt;br /&gt;
&lt;br /&gt;
== [[Mathematical programming with equilibrium constraints|Mathematical Programming with Equilibrium constraints]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes several terms like variational inequalities, constraint qualifications that were not discussed in the class. Please add a sentence to explain them before using them.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The meaning of parameter vector x is unclear. Please add more information or update if necessary.&lt;br /&gt;
# Equations and symbols in the PIPA subsection are not formatted correctly. Please use the same formatting for all equations, so they read as mathematical equations and not text. This goes for all other sections as well.&lt;br /&gt;
# Use equations instead of images to represent math programs and equations in the Implicit Descent and SQP subsection.&lt;br /&gt;
# Apart from the steps for each solution technique, please also add a few sentences that describe each method.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please define the terms like NCP, MP before abbreviating them. Also try not to unnecessarily abbreviate simple terms.&lt;br /&gt;
# Equations should be typed by LaTex. Images for equations are unacceptable.&lt;br /&gt;
# GAMS code is strongly discouraged. Please solve the problem &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The selected numerical example is fine but is directly solved with the MPEC solver in GAMS. Try to solve it manually like the homework/in-class problems step by step using the steps described in the previous section by choosing any of the methods.&lt;br /&gt;
# Avoid using figures in the equations (subject to etc)&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Add references to “power management, highway pricing, chemical process engineering, and traffic planning.”&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# This Wiki contains very few references. Please check the list below and run a quick Google (Scholar) search to identify relevant literature.&lt;br /&gt;
&lt;br /&gt;
== [[Wing shape optimization|Wing shape Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC. Any formatting issue will incur a penalty in the grading.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction is missing several references (e.g., “software packages like computational fluid dynamics..”, sentences containing things that aren’t common knowledge, performance claims, etc.)&lt;br /&gt;
# Avoid discussion involving finer details of subject methods in this section. &lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. Same applies to box of content!&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Properly cite the CFD package, don’t just include a link. &lt;br /&gt;
# Properly label the figure with a figure number.&lt;br /&gt;
# Consider removing white space between isolated sentences to improve readability. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# If you’ve already defined an abbreviation (CFD), there is no need to define it again. Just use the abbreviation.&lt;br /&gt;
# Avoid pronouns such as “we” or “they”.&lt;br /&gt;
# Phrases like “under the following” need to be followed by a colon.&lt;br /&gt;
# Properly label the figure with a figure number and consider making them larger to improve visibility. Call the reader&#039;s attention to the figures in text by referencing the figure number.&lt;br /&gt;
# “As seen in the video below” is stated yet there are only images present and it may be initially unclear to the reader which figure is being referenced here. &lt;br /&gt;
# Avoid inserting inline citations like “[4] introduces an..”  as it is a bit informal when you don’t explicitly name the subject.&lt;br /&gt;
# Don’t just cite the reference when discussing the problem formulation, explicitly write the model formulation and solution process using LaTex or equation visual editor.&lt;br /&gt;
# Your team should ideally create a numerical example independently. If you take a numerical example directly from a textbook, etc., you will need to get explicit permission from the author in writing and share that written permission with me.&lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
# The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Some characters are randomly capitalized in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# These variables should be defined before the conclusion section, they are out of place here. Also, please use normal text when explaining variables except for the variable symbol. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Interior-point method for NLP|Interior point method for NLP]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
** Need discussion about the concept of “central path” and the notion of self concordance&lt;br /&gt;
** Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
** Fix typo “optimisation”.&lt;br /&gt;
== [[AdaGrad|Adagrad]] ==&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the first sentence, “..take the following numerical example” should be followed by a colon. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is too short; include specific applications in which input features are sparse and Adagrad excels.&lt;br /&gt;
* &lt;br /&gt;
* References &lt;br /&gt;
&lt;br /&gt;
# References not properly formatted&lt;br /&gt;
&lt;br /&gt;
== [[McCormick envelopes|McCormick Envelopes]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: OK but I suggest removing NetID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# First sentence is hard to read. Please consider keeping sentences below 25-30 words. &lt;br /&gt;
# No references provided. Please cite all sources. &lt;br /&gt;
# Figure 1 is provided in the middle between two sections. Please include in the introduction section. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# When using mathematical expressions and symbols, please use the equation editor. (e.g., x*y, exy + y, sin (x+y) - x2)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution. &lt;br /&gt;
# The solution technique should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# GAMS code is unnecessary. Please provide detailed step-by-step calculation results.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each. &lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section: &lt;br /&gt;
* References&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;br /&gt;
&lt;br /&gt;
== [[Branch and bound (BB) for MINLP|Branch and Bound for MINLP]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
** Remove NetIDS&lt;br /&gt;
** Please remove abbreviations from the title (i.e. BB).&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please cite sources appropriately: References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Introduction is very short for a well-recognized topic. Please expand significantly. You may refer to the Wiki examples to get an idea on writing the Introduction to a topic.&lt;br /&gt;
# An illustration might be useful here.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The algorithm described here considers only binary integer variables. However, MINLP problems may include non-binary integer variables too. Please update the method or provide a short description of the assumptions that the MINLP problem needs to satisfy in order for the presented technique to be applicable.&lt;br /&gt;
# Use linked citations please as the Wiki template above. &lt;br /&gt;
# Please provide steps in a more organized way. Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Step 2 is missing yet it is referenced in the text multiple times. Please address this in addition to the above comment.&lt;br /&gt;
# An illustration might be useful here as well. &lt;br /&gt;
# Please explain what a Gomory Cut is. If the topic is available on optimization.cb.cornell.edu, you can link it.    &lt;br /&gt;
# The current equations seem to be simple text written in Italics. All mathematical symbols and equations should be formatted via LaTex.&lt;br /&gt;
# Please format the math programs with equations and notations using formulations in lecture notes as templates.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution.&lt;br /&gt;
# Please show a step-by-step solution in the example. The solution is incomplete. The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
# Please use the equation editor for equations or mathematical symbols. - All mathematical symbols and equations should be formatted via LaTex - this is a learning objective of the Wiki assignment. You can find some useful links on converting your equations/symbols into LaTex code here: (&amp;lt;nowiki&amp;gt;https://optimization.cbe.cornell.edu/index.php?title=Help:Contents&amp;lt;/nowiki&amp;gt;). Again, any formatting issue will incur a &amp;quot;compound&amp;quot; penalty in the grading.&lt;br /&gt;
# This example does not follow the MINLP structure discussed in the above section since binary variables are missing. Branch and bound may not be appropriate for such problems. Please provide an appropriate numerical example and solve it according to the above comments.&lt;br /&gt;
# Make sure your example is not taken from a book as that is strictly disallowed. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is not well-formatted. Please provide 3 applications and explain each in a few sentences and how BB for MINLP could be used. Also, please eliminate having multiple sections (Application, Mathematical problem, industrial application). All these could be merged together.&lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section:&lt;br /&gt;
# The sentence is hard to understand &amp;quot;a scheme that grows exponentially because&amp;quot; please use a simple language. Is it also theoretically correct? It is also not mentioned and explained earlier. Thus, please avoid introducing new concepts or terms at the end. &lt;br /&gt;
# Please use summarizing sentences to describe earlier sections instead of introducing new concepts/discussion. &lt;br /&gt;
* References&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources. A quick Google scholar search could provide relevant references.&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=6159</id>
		<title>2021 Cornell Optimization Open Textbook Feedback</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=6159"/>
		<updated>2021-12-18T20:50:47Z</updated>

		<summary type="html">&lt;p&gt;Asa273: /* Geometric Programming */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[Lagrangean duality|Lagrangian duality]] ==&lt;br /&gt;
* Author list, sections and TOC&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The Lagrangian variables associated with equality constraints h(x) are unbounded but the Lagrangian dual problem states them as non-negative. Please fix the same.&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
#  Please update the dual objective function and domain of dual variables accordingly.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Disjunctive inequalities|Disjunctive Inequalities]] ==&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
==[[Stochastic programming|Stochastic Programming]]==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
** The symbol “xi” in the methodology subsection should be explained.&lt;br /&gt;
** The inline notations (`x1`, `s1`) should also be typed using LaTex.&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications;&lt;br /&gt;
# I suggest eliminating citing the last name of the first author (i.e. Zhou et al.)&lt;br /&gt;
==[[Exponential transformation|Exponential Transformation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
== [[Portfolio optimization|Portfolio Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Rephrase “Cut the relevant information and conditions in the portfolio optimization, as well as the final requirements into the relevant variables, constraints and linear functions of the linear programming problem.”&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Fix misspelling “dolling decision variables”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Need some commas here (second sentence hard to read).&lt;br /&gt;
* References&lt;br /&gt;
# Remove white space between end of sentences and reference numbers.&lt;br /&gt;
&lt;br /&gt;
== [[Chance-constraint method|Chance constraint method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Some normal text was expressed as equation.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
==  [[Bayesian Optimization]] ==&lt;br /&gt;
* Introduction&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Captions need reformatting.&lt;br /&gt;
# Consider italicizing keywords rather than bolding.&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Acquisition function figure could be made larger and clearer to improve readability.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any references to functions or methods in code ‘e.g. fmin’ should be properly formatted as code-stylized text.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Avoid including a figure of the code for this example and explicitly describe the steps to the modeling and solution process instead. &lt;br /&gt;
# Avoid pronouns such as “our” and “we”.&lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Conjugate gradient methods]]  ==&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
# Please indent equation blocks.&lt;br /&gt;
# Please properly format pseudocode.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Consider adding future research directions&lt;br /&gt;
== [[Geometric programming|Geometric Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section:&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Adam]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Avoid inserting inline citations after words like “This article..” as it is a bit informal. This could be rephrased or changed to something like “According to author,^[2] …” with author name inserted.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
== [[A-star algorithm|a* algorithm]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic:&lt;br /&gt;
# Please consider correcting a few grammatical errors: “Optimal path”, “cross country”, missing period at end of first paragraph, other random capitalizations, etc.&lt;br /&gt;
# There are no citations in the introduction. Please cite every source.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add the mathematical description of the algorithm. (Insufficient) &lt;br /&gt;
# Please fix grammatical and spelling errors as (“from current position to the goal”, “There are a lot of discussions”, etc). Also, many hyphens are missing as “non playable”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The numerical example does not show the full computations the algorithm performs. Please show the computation on a smaller example.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Job shop scheduling|Job-Shop Scheduling Problem]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The current introduction to the jobshop scheduling problem has only two sentences in addition to the parameter description. Introduction typically contains information about the problem, its importance in the real-world, and some information about the solution techniques and their types to solve the problem. Please add some information that covers the above.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# It is unclear whether the assumptions stated in this section are required to apply the following solution techniques. Please clarify the same. Also use complete sentences to state them.&lt;br /&gt;
# The branch and bounds method described in this section only discusses the solution technique for problems with one machines. However, branch and bound is a general technique that can be applied to any MILP problems with varying scales. Please update the “methods” section to be as general as possible.&lt;br /&gt;
# Since this Wiki focuses on jobshop scheduling, at least two methods are expected. Branch and bound is a general MILP technique, so, it is recommended to add a tailored technique that can only solve specific jobshop scheduling problems. Solving the numerical example with this technique is not necessary.&lt;br /&gt;
# Reference to the branch and bound technique described in this section is a “youtube” video. Please add references in literature that describe this method in detail. The method used in this video is highly tailored for a single machine application. This is also an incorrect way to cite a reference. Please keep this section as general as possible.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section and all other sections as well.&lt;br /&gt;
# Check grammar in this section. For example, phrases like “are as follows” need to be followed by a colon and not a period. &lt;br /&gt;
# Consider rewriting the assumptions as a list in this section. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The example used in this section is exactly the same as the one in the youtube video. Please use a modification of this example or choose another example/method to demonstrate the solution technique. Your team should ideally create a numerical example independently. If you take a numerical example directly from a particular source, you will need to get explicit permission from the textbook author in writing and share that written permission with the instructors.&lt;br /&gt;
# The figure in this section is not numbered when all others are. Relabel this figure for consistency and its number to refer to it in-text.&lt;br /&gt;
# A numerical example should be simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments).&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section should only focus on real-world applications of the jobshop scheduling problem. But currently, this section includes additional information on solution techniques/complexity that is appropriate for the Introduction section. Please discuss the applications of the problem in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# The meaning of  “Operations applications” is unclear. Please explain or update if necessary.&lt;br /&gt;
# The current conclusion section does not properly summarize the problem. Please refer to other Wiki examples for an idea to update the section accordingly.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Please reference media sources like reference 5 appropriately.&lt;br /&gt;
# A simple Google Scholar search would give you many &amp;quot;formal&amp;quot; references.&lt;br /&gt;
&lt;br /&gt;
== [[Optimization in game theory]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Add a mathematical description of the problem and a pseudocode/flowchart for the Lemke-Howson algorithm.  &lt;br /&gt;
# Rephrase “This algorithm utilizes iterated pivoting much like the simplex algorithm used in the simplex algorithm used in linear programming”.&lt;br /&gt;
# Formatting (incomplete). &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summarizing especially from theory sentences and avoid long sentences. &lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style. &lt;br /&gt;
&lt;br /&gt;
== [[Trust-region methods]] ==&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
** Avoid pronouns such as “we”. This goes for all other sections as well.&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Organization of ideas in this section needs work.&lt;br /&gt;
# You have not defined explicitly why the Cauchy point is important to compute beyond a vague allusion to performance improvements, which is also wrong (it is useful because of its guarantees for convergence, not performance) It is also misspelled.&lt;br /&gt;
# Please format the algorithm in proper algorithmic pseudocode format.&lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style.&lt;br /&gt;
&lt;br /&gt;
*There are numerous misspellings, grammatical errors, and incorrect claims. Please fix these.&lt;br /&gt;
&lt;br /&gt;
== [[Momentum]] ==&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Apart from an explanation on momentum, it is necessary to briefly point out the limitations of SGD and why momentum could help with these limitations. Please update it accordingly.&lt;br /&gt;
# Remove bold on “Momentum”.&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# &lt;br /&gt;
# The definition of the update rule for SGD with momentum looks incorrect, specifically the first expression. Please fix it and also explain all the parameters used.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “W”, “V`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “you”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;. Since writing all iterations is not feasible, at least present a few iterations for both cases.&lt;br /&gt;
# Please try to label the plots that explains what each line color means.&lt;br /&gt;
# Starting point for SGD with momentum is different in explanation and the table. Please fix the same.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please use correct terminology like “optimizing non-convex functions” and not “training non-convex models”.&lt;br /&gt;
* References&lt;br /&gt;
# Almost all references used are URLs. Please try to add journal/conference articles or books for references, instead of directly citing the URLs. Please check the list below and run a quick Google (Scholar) search to identify relevant literature.&lt;br /&gt;
&lt;br /&gt;
== [[Stochastic dynamic programming|Stochastic Dynamic programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions &lt;br /&gt;
# Remove the grey box background of equations.&lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Outer-approximation (OA)|Outer-approximation]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic &lt;br /&gt;
# See formatting guideline below&lt;br /&gt;
# Avoid opinionated statements such as “MINLP problems are usually the hardest to solve”.&lt;br /&gt;
# Rearrange the text such that the MINLP formulation is in the theory section and keep the introduction in words only.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Consider left aligning equations and optimization problem formulations by the “=”. See [[Stochastic programming|https://optimization.cbe.cornell.edu/index.php?title=Stochastic_programming]] for an example&lt;br /&gt;
# The sentence “The Outer-Approximation (OA) algorithm was first proposed by Duran and and Grossmann in 1986 to solve MINLP problems.” needs a reference. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# “Minimize” and “subject to” should be “min” and “s.t.” in MathType&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Does not explicitly point out why OA is applicable (and/or preferred) in these applications, rather than other MINLP approaches (show that the problem formulations are amenable to a solution approach through OA)&lt;br /&gt;
# The sentence “... an active research area and there exists a vast number of applications in fields such as engineering, computational chemistry, and finance.” needs references. &lt;br /&gt;
# Posting GAMS code on the page is generally inappropriate and discouraged. Please check with the TAs or me if you have a strong desire to post GAMS codes on the Wiki page. A typical textbook should not be limited to a specific software package. If the GAMS code must be posted, please also post ALL other software implementation versions, such as Pyomo and JuliaOPT, among others.&lt;br /&gt;
# Consider reformatting to make steps more readable. Inserting spaces and breaking down steps would help. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Too short. Consider discussion on future research direction and discussion on uncertainty&lt;br /&gt;
# Please review abbreviations throughout the page. Why is MINLP redefined here? “Outer-Approximation is a well known efficient approach for solving convex mixed-integer nonlinear programs (MINLP)”. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove &amp;quot;Template:Reflist&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== [[Unit commitment problem]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction and avoid discussions of examples or specific applications in this section.&lt;br /&gt;
# The sentence “Nonlinear, Non-convex programming optimization problem.” doesn’t make sense by itself and Non-convex shouldn’t be capitalized.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Figure/image format should be revised to better display the content.&lt;br /&gt;
# Uppercase characters are used randomly (e.g., “non-convex transmission Constraints”) . Please follow correct language conventions for sentence structure.&lt;br /&gt;
# Avoid inserting inline citations after words like “written in matrix form as equation [3]..” or “presented in [3]...” as it is a bit informal when you don’t explicitly name the subject. Also these two sentences are grammatically incorrect and appear to be missing an ending period and comma, respectively. &lt;br /&gt;
# Don’t say “written in matrix form as equation..” and just cite the reference, actually write out the equation. &lt;br /&gt;
# Properly label the figure in this section with a figure number and improve visibility by making it larger. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Label the figures in this section properly with figure numbers.&lt;br /&gt;
# Fix typo “while minimize” to “while minimizing”. &lt;br /&gt;
# Avoid pronouns such as “we”. &lt;br /&gt;
# Use the equation editor when typing equations. &lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
# The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# I suggest changing the order of the subtitles here. For example, Single-Period Unit Commitment. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Frank-Wolfe]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# I suggest highlighting disadvantages along with advantages. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# “[n x 1] matrix” please use the equation editor to express mathematical descriptions and symbols (p,b, etc)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please show at least a few iterations. Even for smaller examples if needed. Report the final solution. &lt;br /&gt;
# Please use the LaTex code or equation editor for min and include s.t., etc.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. For your example, please explicitly state that the derivative is taken etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications: &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Same as the introduction. Pros and cons should be evaluated together!&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Line search methods|Line Search Method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Expand the introduction and avoid discussion on some of the specific steps in the solution process. &lt;br /&gt;
# Provide references here. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The phrase “are as follows” in the steepest descent method discussion needs to be followed by a colon. &lt;br /&gt;
# Rephrase “has a nice convergence theory” and cite a reference for this claim.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Add citation after “.. proposed by Phillip Wolfe in 1969.”&lt;br /&gt;
# Figure 1 is between two sections. Please fix this issue. &lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# Add some space between iterations or subsection break&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# Too few references in this section. &lt;br /&gt;
# Last paragraph makes some claims without references. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Piecewise linear approximation|Piecewise Linear Approximation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The content of this section is good, but there are some issues with sentence clarity and some other grammatical errors. Please revisit this section and make changes accordingly. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Fix typo “to force the x’ values become associated with”. &lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Some of these longer sentences are hard to read. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Expand the conclusion section to be longer than one sentence. The conclusion section to include a brief summary of what was discussed above, an emphasis on it’s significance, and a brief discussion of future extensions and research direction if applicable.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to sources when possible.&lt;br /&gt;
&lt;br /&gt;
== [[Mathematical programming with equilibrium constraints|Mathematical Programming with Equilibrium constraints]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes several terms like variational inequalities, constraint qualifications that were not discussed in the class. Please add a sentence to explain them before using them.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The meaning of parameter vector x is unclear. Please add more information or update if necessary.&lt;br /&gt;
# Equations and symbols in the PIPA subsection are not formatted correctly. Please use the same formatting for all equations, so they read as mathematical equations and not text. This goes for all other sections as well.&lt;br /&gt;
# Use equations instead of images to represent math programs and equations in the Implicit Descent and SQP subsection.&lt;br /&gt;
# Apart from the steps for each solution technique, please also add a few sentences that describe each method.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please define the terms like NCP, MP before abbreviating them. Also try not to unnecessarily abbreviate simple terms.&lt;br /&gt;
# Equations should be typed by LaTex. Images for equations are unacceptable.&lt;br /&gt;
# GAMS code is strongly discouraged. Please solve the problem &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The selected numerical example is fine but is directly solved with the MPEC solver in GAMS. Try to solve it manually like the homework/in-class problems step by step using the steps described in the previous section by choosing any of the methods.&lt;br /&gt;
# Avoid using figures in the equations (subject to etc)&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Add references to “power management, highway pricing, chemical process engineering, and traffic planning.”&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# This Wiki contains very few references. Please check the list below and run a quick Google (Scholar) search to identify relevant literature.&lt;br /&gt;
&lt;br /&gt;
== [[Wing shape optimization|Wing shape Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC. Any formatting issue will incur a penalty in the grading.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction is missing several references (e.g., “software packages like computational fluid dynamics..”, sentences containing things that aren’t common knowledge, performance claims, etc.)&lt;br /&gt;
# Avoid discussion involving finer details of subject methods in this section. &lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. Same applies to box of content!&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Properly cite the CFD package, don’t just include a link. &lt;br /&gt;
# Properly label the figure with a figure number.&lt;br /&gt;
# Consider removing white space between isolated sentences to improve readability. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# If you’ve already defined an abbreviation (CFD), there is no need to define it again. Just use the abbreviation.&lt;br /&gt;
# Avoid pronouns such as “we” or “they”.&lt;br /&gt;
# Phrases like “under the following” need to be followed by a colon.&lt;br /&gt;
# Properly label the figure with a figure number and consider making them larger to improve visibility. Call the reader&#039;s attention to the figures in text by referencing the figure number.&lt;br /&gt;
# “As seen in the video below” is stated yet there are only images present and it may be initially unclear to the reader which figure is being referenced here. &lt;br /&gt;
# Avoid inserting inline citations like “[4] introduces an..”  as it is a bit informal when you don’t explicitly name the subject.&lt;br /&gt;
# Don’t just cite the reference when discussing the problem formulation, explicitly write the model formulation and solution process using LaTex or equation visual editor.&lt;br /&gt;
# Your team should ideally create a numerical example independently. If you take a numerical example directly from a textbook, etc., you will need to get explicit permission from the author in writing and share that written permission with me.&lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
# The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Some characters are randomly capitalized in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# These variables should be defined before the conclusion section, they are out of place here. Also, please use normal text when explaining variables except for the variable symbol. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Interior-point method for NLP|Interior point method for NLP]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
** Need discussion about the concept of “central path” and the notion of self concordance&lt;br /&gt;
** Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
** Fix typo “optimisation”.&lt;br /&gt;
== [[AdaGrad|Adagrad]] ==&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the first sentence, “..take the following numerical example” should be followed by a colon. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is too short; include specific applications in which input features are sparse and Adagrad excels.&lt;br /&gt;
* &lt;br /&gt;
* References &lt;br /&gt;
&lt;br /&gt;
# References not properly formatted&lt;br /&gt;
&lt;br /&gt;
== [[McCormick envelopes|McCormick Envelopes]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: OK but I suggest removing NetID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# First sentence is hard to read. Please consider keeping sentences below 25-30 words. &lt;br /&gt;
# No references provided. Please cite all sources. &lt;br /&gt;
# Figure 1 is provided in the middle between two sections. Please include in the introduction section. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# When using mathematical expressions and symbols, please use the equation editor. (e.g., x*y, exy + y, sin (x+y) - x2)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution. &lt;br /&gt;
# The solution technique should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# GAMS code is unnecessary. Please provide detailed step-by-step calculation results.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each. &lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section: &lt;br /&gt;
* References&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;br /&gt;
&lt;br /&gt;
== [[Branch and bound (BB) for MINLP|Branch and Bound for MINLP]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
** Remove NetIDS&lt;br /&gt;
** Please remove abbreviations from the title (i.e. BB).&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please cite sources appropriately: References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Introduction is very short for a well-recognized topic. Please expand significantly. You may refer to the Wiki examples to get an idea on writing the Introduction to a topic.&lt;br /&gt;
# An illustration might be useful here.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The algorithm described here considers only binary integer variables. However, MINLP problems may include non-binary integer variables too. Please update the method or provide a short description of the assumptions that the MINLP problem needs to satisfy in order for the presented technique to be applicable.&lt;br /&gt;
# Use linked citations please as the Wiki template above. &lt;br /&gt;
# Please provide steps in a more organized way. Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Step 2 is missing yet it is referenced in the text multiple times. Please address this in addition to the above comment.&lt;br /&gt;
# An illustration might be useful here as well. &lt;br /&gt;
# Please explain what a Gomory Cut is. If the topic is available on optimization.cb.cornell.edu, you can link it.    &lt;br /&gt;
# The current equations seem to be simple text written in Italics. All mathematical symbols and equations should be formatted via LaTex.&lt;br /&gt;
# Please format the math programs with equations and notations using formulations in lecture notes as templates.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution.&lt;br /&gt;
# Please show a step-by-step solution in the example. The solution is incomplete. The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
# Please use the equation editor for equations or mathematical symbols. - All mathematical symbols and equations should be formatted via LaTex - this is a learning objective of the Wiki assignment. You can find some useful links on converting your equations/symbols into LaTex code here: (&amp;lt;nowiki&amp;gt;https://optimization.cbe.cornell.edu/index.php?title=Help:Contents&amp;lt;/nowiki&amp;gt;). Again, any formatting issue will incur a &amp;quot;compound&amp;quot; penalty in the grading.&lt;br /&gt;
# This example does not follow the MINLP structure discussed in the above section since binary variables are missing. Branch and bound may not be appropriate for such problems. Please provide an appropriate numerical example and solve it according to the above comments.&lt;br /&gt;
# Make sure your example is not taken from a book as that is strictly disallowed. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is not well-formatted. Please provide 3 applications and explain each in a few sentences and how BB for MINLP could be used. Also, please eliminate having multiple sections (Application, Mathematical problem, industrial application). All these could be merged together.&lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section:&lt;br /&gt;
# The sentence is hard to understand &amp;quot;a scheme that grows exponentially because&amp;quot; please use a simple language. Is it also theoretically correct? It is also not mentioned and explained earlier. Thus, please avoid introducing new concepts or terms at the end. &lt;br /&gt;
# Please use summarizing sentences to describe earlier sections instead of introducing new concepts/discussion. &lt;br /&gt;
* References&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources. A quick Google scholar search could provide relevant references.&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=6158</id>
		<title>2021 Cornell Optimization Open Textbook Feedback</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=6158"/>
		<updated>2021-12-18T20:50:34Z</updated>

		<summary type="html">&lt;p&gt;Asa273: /* Geometric Programming */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[Lagrangean duality|Lagrangian duality]] ==&lt;br /&gt;
* Author list, sections and TOC&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The Lagrangian variables associated with equality constraints h(x) are unbounded but the Lagrangian dual problem states them as non-negative. Please fix the same.&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
#  Please update the dual objective function and domain of dual variables accordingly.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Disjunctive inequalities|Disjunctive Inequalities]] ==&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
==[[Stochastic programming|Stochastic Programming]]==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
** The symbol “xi” in the methodology subsection should be explained.&lt;br /&gt;
** The inline notations (`x1`, `s1`) should also be typed using LaTex.&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications;&lt;br /&gt;
# I suggest eliminating citing the last name of the first author (i.e. Zhou et al.)&lt;br /&gt;
==[[Exponential transformation|Exponential Transformation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
== [[Portfolio optimization|Portfolio Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Rephrase “Cut the relevant information and conditions in the portfolio optimization, as well as the final requirements into the relevant variables, constraints and linear functions of the linear programming problem.”&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Fix misspelling “dolling decision variables”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Need some commas here (second sentence hard to read).&lt;br /&gt;
* References&lt;br /&gt;
# Remove white space between end of sentences and reference numbers.&lt;br /&gt;
&lt;br /&gt;
== [[Chance-constraint method|Chance constraint method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Some normal text was expressed as equation.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
==  [[Bayesian Optimization]] ==&lt;br /&gt;
* Introduction&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Captions need reformatting.&lt;br /&gt;
# Consider italicizing keywords rather than bolding.&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Acquisition function figure could be made larger and clearer to improve readability.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any references to functions or methods in code ‘e.g. fmin’ should be properly formatted as code-stylized text.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Avoid including a figure of the code for this example and explicitly describe the steps to the modeling and solution process instead. &lt;br /&gt;
# Avoid pronouns such as “our” and “we”.&lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Conjugate gradient methods]]  ==&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
# Please indent equation blocks.&lt;br /&gt;
# Please properly format pseudocode.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Consider adding future research directions&lt;br /&gt;
== [[Geometric programming|Geometric Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
 &lt;br /&gt;
* A conclusion section:&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Adam]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Avoid inserting inline citations after words like “This article..” as it is a bit informal. This could be rephrased or changed to something like “According to author,^[2] …” with author name inserted.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
== [[A-star algorithm|a* algorithm]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic:&lt;br /&gt;
# Please consider correcting a few grammatical errors: “Optimal path”, “cross country”, missing period at end of first paragraph, other random capitalizations, etc.&lt;br /&gt;
# There are no citations in the introduction. Please cite every source.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add the mathematical description of the algorithm. (Insufficient) &lt;br /&gt;
# Please fix grammatical and spelling errors as (“from current position to the goal”, “There are a lot of discussions”, etc). Also, many hyphens are missing as “non playable”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The numerical example does not show the full computations the algorithm performs. Please show the computation on a smaller example.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Job shop scheduling|Job-Shop Scheduling Problem]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The current introduction to the jobshop scheduling problem has only two sentences in addition to the parameter description. Introduction typically contains information about the problem, its importance in the real-world, and some information about the solution techniques and their types to solve the problem. Please add some information that covers the above.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# It is unclear whether the assumptions stated in this section are required to apply the following solution techniques. Please clarify the same. Also use complete sentences to state them.&lt;br /&gt;
# The branch and bounds method described in this section only discusses the solution technique for problems with one machines. However, branch and bound is a general technique that can be applied to any MILP problems with varying scales. Please update the “methods” section to be as general as possible.&lt;br /&gt;
# Since this Wiki focuses on jobshop scheduling, at least two methods are expected. Branch and bound is a general MILP technique, so, it is recommended to add a tailored technique that can only solve specific jobshop scheduling problems. Solving the numerical example with this technique is not necessary.&lt;br /&gt;
# Reference to the branch and bound technique described in this section is a “youtube” video. Please add references in literature that describe this method in detail. The method used in this video is highly tailored for a single machine application. This is also an incorrect way to cite a reference. Please keep this section as general as possible.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section and all other sections as well.&lt;br /&gt;
# Check grammar in this section. For example, phrases like “are as follows” need to be followed by a colon and not a period. &lt;br /&gt;
# Consider rewriting the assumptions as a list in this section. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The example used in this section is exactly the same as the one in the youtube video. Please use a modification of this example or choose another example/method to demonstrate the solution technique. Your team should ideally create a numerical example independently. If you take a numerical example directly from a particular source, you will need to get explicit permission from the textbook author in writing and share that written permission with the instructors.&lt;br /&gt;
# The figure in this section is not numbered when all others are. Relabel this figure for consistency and its number to refer to it in-text.&lt;br /&gt;
# A numerical example should be simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments).&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section should only focus on real-world applications of the jobshop scheduling problem. But currently, this section includes additional information on solution techniques/complexity that is appropriate for the Introduction section. Please discuss the applications of the problem in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# The meaning of  “Operations applications” is unclear. Please explain or update if necessary.&lt;br /&gt;
# The current conclusion section does not properly summarize the problem. Please refer to other Wiki examples for an idea to update the section accordingly.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Please reference media sources like reference 5 appropriately.&lt;br /&gt;
# A simple Google Scholar search would give you many &amp;quot;formal&amp;quot; references.&lt;br /&gt;
&lt;br /&gt;
== [[Optimization in game theory]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Add a mathematical description of the problem and a pseudocode/flowchart for the Lemke-Howson algorithm.  &lt;br /&gt;
# Rephrase “This algorithm utilizes iterated pivoting much like the simplex algorithm used in the simplex algorithm used in linear programming”.&lt;br /&gt;
# Formatting (incomplete). &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summarizing especially from theory sentences and avoid long sentences. &lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style. &lt;br /&gt;
&lt;br /&gt;
== [[Trust-region methods]] ==&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
** Avoid pronouns such as “we”. This goes for all other sections as well.&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Organization of ideas in this section needs work.&lt;br /&gt;
# You have not defined explicitly why the Cauchy point is important to compute beyond a vague allusion to performance improvements, which is also wrong (it is useful because of its guarantees for convergence, not performance) It is also misspelled.&lt;br /&gt;
# Please format the algorithm in proper algorithmic pseudocode format.&lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style.&lt;br /&gt;
&lt;br /&gt;
*There are numerous misspellings, grammatical errors, and incorrect claims. Please fix these.&lt;br /&gt;
&lt;br /&gt;
== [[Momentum]] ==&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Apart from an explanation on momentum, it is necessary to briefly point out the limitations of SGD and why momentum could help with these limitations. Please update it accordingly.&lt;br /&gt;
# Remove bold on “Momentum”.&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# &lt;br /&gt;
# The definition of the update rule for SGD with momentum looks incorrect, specifically the first expression. Please fix it and also explain all the parameters used.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “W”, “V`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “you”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;. Since writing all iterations is not feasible, at least present a few iterations for both cases.&lt;br /&gt;
# Please try to label the plots that explains what each line color means.&lt;br /&gt;
# Starting point for SGD with momentum is different in explanation and the table. Please fix the same.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please use correct terminology like “optimizing non-convex functions” and not “training non-convex models”.&lt;br /&gt;
* References&lt;br /&gt;
# Almost all references used are URLs. Please try to add journal/conference articles or books for references, instead of directly citing the URLs. Please check the list below and run a quick Google (Scholar) search to identify relevant literature.&lt;br /&gt;
&lt;br /&gt;
== [[Stochastic dynamic programming|Stochastic Dynamic programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions &lt;br /&gt;
# Remove the grey box background of equations.&lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Outer-approximation (OA)|Outer-approximation]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic &lt;br /&gt;
# See formatting guideline below&lt;br /&gt;
# Avoid opinionated statements such as “MINLP problems are usually the hardest to solve”.&lt;br /&gt;
# Rearrange the text such that the MINLP formulation is in the theory section and keep the introduction in words only.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Consider left aligning equations and optimization problem formulations by the “=”. See [[Stochastic programming|https://optimization.cbe.cornell.edu/index.php?title=Stochastic_programming]] for an example&lt;br /&gt;
# The sentence “The Outer-Approximation (OA) algorithm was first proposed by Duran and and Grossmann in 1986 to solve MINLP problems.” needs a reference. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# “Minimize” and “subject to” should be “min” and “s.t.” in MathType&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Does not explicitly point out why OA is applicable (and/or preferred) in these applications, rather than other MINLP approaches (show that the problem formulations are amenable to a solution approach through OA)&lt;br /&gt;
# The sentence “... an active research area and there exists a vast number of applications in fields such as engineering, computational chemistry, and finance.” needs references. &lt;br /&gt;
# Posting GAMS code on the page is generally inappropriate and discouraged. Please check with the TAs or me if you have a strong desire to post GAMS codes on the Wiki page. A typical textbook should not be limited to a specific software package. If the GAMS code must be posted, please also post ALL other software implementation versions, such as Pyomo and JuliaOPT, among others.&lt;br /&gt;
# Consider reformatting to make steps more readable. Inserting spaces and breaking down steps would help. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Too short. Consider discussion on future research direction and discussion on uncertainty&lt;br /&gt;
# Please review abbreviations throughout the page. Why is MINLP redefined here? “Outer-Approximation is a well known efficient approach for solving convex mixed-integer nonlinear programs (MINLP)”. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove &amp;quot;Template:Reflist&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== [[Unit commitment problem]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction and avoid discussions of examples or specific applications in this section.&lt;br /&gt;
# The sentence “Nonlinear, Non-convex programming optimization problem.” doesn’t make sense by itself and Non-convex shouldn’t be capitalized.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Figure/image format should be revised to better display the content.&lt;br /&gt;
# Uppercase characters are used randomly (e.g., “non-convex transmission Constraints”) . Please follow correct language conventions for sentence structure.&lt;br /&gt;
# Avoid inserting inline citations after words like “written in matrix form as equation [3]..” or “presented in [3]...” as it is a bit informal when you don’t explicitly name the subject. Also these two sentences are grammatically incorrect and appear to be missing an ending period and comma, respectively. &lt;br /&gt;
# Don’t say “written in matrix form as equation..” and just cite the reference, actually write out the equation. &lt;br /&gt;
# Properly label the figure in this section with a figure number and improve visibility by making it larger. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Label the figures in this section properly with figure numbers.&lt;br /&gt;
# Fix typo “while minimize” to “while minimizing”. &lt;br /&gt;
# Avoid pronouns such as “we”. &lt;br /&gt;
# Use the equation editor when typing equations. &lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
# The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# I suggest changing the order of the subtitles here. For example, Single-Period Unit Commitment. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Frank-Wolfe]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# I suggest highlighting disadvantages along with advantages. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# “[n x 1] matrix” please use the equation editor to express mathematical descriptions and symbols (p,b, etc)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please show at least a few iterations. Even for smaller examples if needed. Report the final solution. &lt;br /&gt;
# Please use the LaTex code or equation editor for min and include s.t., etc.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. For your example, please explicitly state that the derivative is taken etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications: &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Same as the introduction. Pros and cons should be evaluated together!&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Line search methods|Line Search Method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Expand the introduction and avoid discussion on some of the specific steps in the solution process. &lt;br /&gt;
# Provide references here. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The phrase “are as follows” in the steepest descent method discussion needs to be followed by a colon. &lt;br /&gt;
# Rephrase “has a nice convergence theory” and cite a reference for this claim.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Add citation after “.. proposed by Phillip Wolfe in 1969.”&lt;br /&gt;
# Figure 1 is between two sections. Please fix this issue. &lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# Add some space between iterations or subsection break&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# Too few references in this section. &lt;br /&gt;
# Last paragraph makes some claims without references. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Piecewise linear approximation|Piecewise Linear Approximation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The content of this section is good, but there are some issues with sentence clarity and some other grammatical errors. Please revisit this section and make changes accordingly. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Fix typo “to force the x’ values become associated with”. &lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Some of these longer sentences are hard to read. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Expand the conclusion section to be longer than one sentence. The conclusion section to include a brief summary of what was discussed above, an emphasis on it’s significance, and a brief discussion of future extensions and research direction if applicable.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to sources when possible.&lt;br /&gt;
&lt;br /&gt;
== [[Mathematical programming with equilibrium constraints|Mathematical Programming with Equilibrium constraints]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes several terms like variational inequalities, constraint qualifications that were not discussed in the class. Please add a sentence to explain them before using them.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The meaning of parameter vector x is unclear. Please add more information or update if necessary.&lt;br /&gt;
# Equations and symbols in the PIPA subsection are not formatted correctly. Please use the same formatting for all equations, so they read as mathematical equations and not text. This goes for all other sections as well.&lt;br /&gt;
# Use equations instead of images to represent math programs and equations in the Implicit Descent and SQP subsection.&lt;br /&gt;
# Apart from the steps for each solution technique, please also add a few sentences that describe each method.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please define the terms like NCP, MP before abbreviating them. Also try not to unnecessarily abbreviate simple terms.&lt;br /&gt;
# Equations should be typed by LaTex. Images for equations are unacceptable.&lt;br /&gt;
# GAMS code is strongly discouraged. Please solve the problem &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The selected numerical example is fine but is directly solved with the MPEC solver in GAMS. Try to solve it manually like the homework/in-class problems step by step using the steps described in the previous section by choosing any of the methods.&lt;br /&gt;
# Avoid using figures in the equations (subject to etc)&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Add references to “power management, highway pricing, chemical process engineering, and traffic planning.”&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# This Wiki contains very few references. Please check the list below and run a quick Google (Scholar) search to identify relevant literature.&lt;br /&gt;
&lt;br /&gt;
== [[Wing shape optimization|Wing shape Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC. Any formatting issue will incur a penalty in the grading.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction is missing several references (e.g., “software packages like computational fluid dynamics..”, sentences containing things that aren’t common knowledge, performance claims, etc.)&lt;br /&gt;
# Avoid discussion involving finer details of subject methods in this section. &lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. Same applies to box of content!&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Properly cite the CFD package, don’t just include a link. &lt;br /&gt;
# Properly label the figure with a figure number.&lt;br /&gt;
# Consider removing white space between isolated sentences to improve readability. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# If you’ve already defined an abbreviation (CFD), there is no need to define it again. Just use the abbreviation.&lt;br /&gt;
# Avoid pronouns such as “we” or “they”.&lt;br /&gt;
# Phrases like “under the following” need to be followed by a colon.&lt;br /&gt;
# Properly label the figure with a figure number and consider making them larger to improve visibility. Call the reader&#039;s attention to the figures in text by referencing the figure number.&lt;br /&gt;
# “As seen in the video below” is stated yet there are only images present and it may be initially unclear to the reader which figure is being referenced here. &lt;br /&gt;
# Avoid inserting inline citations like “[4] introduces an..”  as it is a bit informal when you don’t explicitly name the subject.&lt;br /&gt;
# Don’t just cite the reference when discussing the problem formulation, explicitly write the model formulation and solution process using LaTex or equation visual editor.&lt;br /&gt;
# Your team should ideally create a numerical example independently. If you take a numerical example directly from a textbook, etc., you will need to get explicit permission from the author in writing and share that written permission with me.&lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
# The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Some characters are randomly capitalized in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# These variables should be defined before the conclusion section, they are out of place here. Also, please use normal text when explaining variables except for the variable symbol. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Interior-point method for NLP|Interior point method for NLP]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
** Need discussion about the concept of “central path” and the notion of self concordance&lt;br /&gt;
** Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
** Fix typo “optimisation”.&lt;br /&gt;
== [[AdaGrad|Adagrad]] ==&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the first sentence, “..take the following numerical example” should be followed by a colon. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is too short; include specific applications in which input features are sparse and Adagrad excels.&lt;br /&gt;
* &lt;br /&gt;
* References &lt;br /&gt;
&lt;br /&gt;
# References not properly formatted&lt;br /&gt;
&lt;br /&gt;
== [[McCormick envelopes|McCormick Envelopes]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: OK but I suggest removing NetID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# First sentence is hard to read. Please consider keeping sentences below 25-30 words. &lt;br /&gt;
# No references provided. Please cite all sources. &lt;br /&gt;
# Figure 1 is provided in the middle between two sections. Please include in the introduction section. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# When using mathematical expressions and symbols, please use the equation editor. (e.g., x*y, exy + y, sin (x+y) - x2)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution. &lt;br /&gt;
# The solution technique should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# GAMS code is unnecessary. Please provide detailed step-by-step calculation results.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each. &lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section: &lt;br /&gt;
* References&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;br /&gt;
&lt;br /&gt;
== [[Branch and bound (BB) for MINLP|Branch and Bound for MINLP]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
** Remove NetIDS&lt;br /&gt;
** Please remove abbreviations from the title (i.e. BB).&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please cite sources appropriately: References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Introduction is very short for a well-recognized topic. Please expand significantly. You may refer to the Wiki examples to get an idea on writing the Introduction to a topic.&lt;br /&gt;
# An illustration might be useful here.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The algorithm described here considers only binary integer variables. However, MINLP problems may include non-binary integer variables too. Please update the method or provide a short description of the assumptions that the MINLP problem needs to satisfy in order for the presented technique to be applicable.&lt;br /&gt;
# Use linked citations please as the Wiki template above. &lt;br /&gt;
# Please provide steps in a more organized way. Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Step 2 is missing yet it is referenced in the text multiple times. Please address this in addition to the above comment.&lt;br /&gt;
# An illustration might be useful here as well. &lt;br /&gt;
# Please explain what a Gomory Cut is. If the topic is available on optimization.cb.cornell.edu, you can link it.    &lt;br /&gt;
# The current equations seem to be simple text written in Italics. All mathematical symbols and equations should be formatted via LaTex.&lt;br /&gt;
# Please format the math programs with equations and notations using formulations in lecture notes as templates.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution.&lt;br /&gt;
# Please show a step-by-step solution in the example. The solution is incomplete. The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
# Please use the equation editor for equations or mathematical symbols. - All mathematical symbols and equations should be formatted via LaTex - this is a learning objective of the Wiki assignment. You can find some useful links on converting your equations/symbols into LaTex code here: (&amp;lt;nowiki&amp;gt;https://optimization.cbe.cornell.edu/index.php?title=Help:Contents&amp;lt;/nowiki&amp;gt;). Again, any formatting issue will incur a &amp;quot;compound&amp;quot; penalty in the grading.&lt;br /&gt;
# This example does not follow the MINLP structure discussed in the above section since binary variables are missing. Branch and bound may not be appropriate for such problems. Please provide an appropriate numerical example and solve it according to the above comments.&lt;br /&gt;
# Make sure your example is not taken from a book as that is strictly disallowed. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is not well-formatted. Please provide 3 applications and explain each in a few sentences and how BB for MINLP could be used. Also, please eliminate having multiple sections (Application, Mathematical problem, industrial application). All these could be merged together.&lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section:&lt;br /&gt;
# The sentence is hard to understand &amp;quot;a scheme that grows exponentially because&amp;quot; please use a simple language. Is it also theoretically correct? It is also not mentioned and explained earlier. Thus, please avoid introducing new concepts or terms at the end. &lt;br /&gt;
# Please use summarizing sentences to describe earlier sections instead of introducing new concepts/discussion. &lt;br /&gt;
* References&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources. A quick Google scholar search could provide relevant references.&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=6156</id>
		<title>2021 Cornell Optimization Open Textbook Feedback</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=6156"/>
		<updated>2021-12-18T20:43:46Z</updated>

		<summary type="html">&lt;p&gt;Asa273: /* Lagrangian duality */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[Lagrangean duality|Lagrangian duality]] ==&lt;br /&gt;
* Author list, sections and TOC&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The Lagrangian variables associated with equality constraints h(x) are unbounded but the Lagrangian dual problem states them as non-negative. Please fix the same.&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
#  Please update the dual objective function and domain of dual variables accordingly.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Disjunctive inequalities|Disjunctive Inequalities]] ==&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
==[[Stochastic programming|Stochastic Programming]]==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
** The symbol “xi” in the methodology subsection should be explained.&lt;br /&gt;
** The inline notations (`x1`, `s1`) should also be typed using LaTex.&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications;&lt;br /&gt;
# I suggest eliminating citing the last name of the first author (i.e. Zhou et al.)&lt;br /&gt;
==[[Exponential transformation|Exponential Transformation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
== [[Portfolio optimization|Portfolio Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Rephrase “Cut the relevant information and conditions in the portfolio optimization, as well as the final requirements into the relevant variables, constraints and linear functions of the linear programming problem.”&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Fix misspelling “dolling decision variables”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Need some commas here (second sentence hard to read).&lt;br /&gt;
* References&lt;br /&gt;
# Remove white space between end of sentences and reference numbers.&lt;br /&gt;
&lt;br /&gt;
== [[Chance-constraint method|Chance constraint method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Some normal text was expressed as equation.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section&lt;br /&gt;
&lt;br /&gt;
* References&lt;br /&gt;
==  [[Bayesian Optimization]] ==&lt;br /&gt;
* Introduction&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Captions need reformatting.&lt;br /&gt;
# Consider italicizing keywords rather than bolding.&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Acquisition function figure could be made larger and clearer to improve readability.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any references to functions or methods in code ‘e.g. fmin’ should be properly formatted as code-stylized text.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Avoid including a figure of the code for this example and explicitly describe the steps to the modeling and solution process instead. &lt;br /&gt;
# Avoid pronouns such as “our” and “we”.&lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Conjugate gradient methods]]  ==&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
# Please indent equation blocks.&lt;br /&gt;
# Please properly format pseudocode.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Consider adding future research directions&lt;br /&gt;
== [[Geometric programming|Geometric Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Examples of applications in this section use the same reference. Please cite their individual sources.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The symbol denoting the domain in the definition of a monomial is unclear. Please clarify it or fix this if it is incorrect.&lt;br /&gt;
# Definition of posynomial refers to section 2.1 which is missing from the Wiki (sections are not numbered in the main text).&lt;br /&gt;
# In the generalized posynomial subsection, bullet points do not tell us why h(x) is posynomial. Either provide reasons or simply state that h(x) is posynomial. Also explain why h3 is a generalized posynomial.&lt;br /&gt;
# Additional theory on the feasibility analysis could be provided in this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the transformation example, the last two constraints could also be simplified. Please update them as well.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The figure in this section needs to be labeled. &lt;br /&gt;
# The figure needs to be resized and perhaps aligned to the center.  &lt;br /&gt;
* A conclusion section:&lt;br /&gt;
# Please avoid vague language such as: “This makes”.&lt;br /&gt;
# Please avoid opinionated statements: “one of the best ways”.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# This Wiki has very few references. A quick Google Scholar search may provide relevant references.&lt;br /&gt;
&lt;br /&gt;
== [[Adam]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Avoid inserting inline citations after words like “This article..” as it is a bit informal. This could be rephrased or changed to something like “According to author,^[2] …” with author name inserted.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
== [[A-star algorithm|a* algorithm]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
* An introduction of the topic:&lt;br /&gt;
# Please consider correcting a few grammatical errors: “Optimal path”, “cross country”, missing period at end of first paragraph, other random capitalizations, etc.&lt;br /&gt;
# There are no citations in the introduction. Please cite every source.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add the mathematical description of the algorithm. (Insufficient) &lt;br /&gt;
# Please fix grammatical and spelling errors as (“from current position to the goal”, “There are a lot of discussions”, etc). Also, many hyphens are missing as “non playable”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The numerical example does not show the full computations the algorithm performs. Please show the computation on a smaller example.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Job shop scheduling|Job-Shop Scheduling Problem]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The current introduction to the jobshop scheduling problem has only two sentences in addition to the parameter description. Introduction typically contains information about the problem, its importance in the real-world, and some information about the solution techniques and their types to solve the problem. Please add some information that covers the above.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# It is unclear whether the assumptions stated in this section are required to apply the following solution techniques. Please clarify the same. Also use complete sentences to state them.&lt;br /&gt;
# The branch and bounds method described in this section only discusses the solution technique for problems with one machines. However, branch and bound is a general technique that can be applied to any MILP problems with varying scales. Please update the “methods” section to be as general as possible.&lt;br /&gt;
# Since this Wiki focuses on jobshop scheduling, at least two methods are expected. Branch and bound is a general MILP technique, so, it is recommended to add a tailored technique that can only solve specific jobshop scheduling problems. Solving the numerical example with this technique is not necessary.&lt;br /&gt;
# Reference to the branch and bound technique described in this section is a “youtube” video. Please add references in literature that describe this method in detail. The method used in this video is highly tailored for a single machine application. This is also an incorrect way to cite a reference. Please keep this section as general as possible.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section and all other sections as well.&lt;br /&gt;
# Check grammar in this section. For example, phrases like “are as follows” need to be followed by a colon and not a period. &lt;br /&gt;
# Consider rewriting the assumptions as a list in this section. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The example used in this section is exactly the same as the one in the youtube video. Please use a modification of this example or choose another example/method to demonstrate the solution technique. Your team should ideally create a numerical example independently. If you take a numerical example directly from a particular source, you will need to get explicit permission from the textbook author in writing and share that written permission with the instructors.&lt;br /&gt;
# The figure in this section is not numbered when all others are. Relabel this figure for consistency and its number to refer to it in-text.&lt;br /&gt;
# A numerical example should be simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments).&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section should only focus on real-world applications of the jobshop scheduling problem. But currently, this section includes additional information on solution techniques/complexity that is appropriate for the Introduction section. Please discuss the applications of the problem in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# The meaning of  “Operations applications” is unclear. Please explain or update if necessary.&lt;br /&gt;
# The current conclusion section does not properly summarize the problem. Please refer to other Wiki examples for an idea to update the section accordingly.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Please reference media sources like reference 5 appropriately.&lt;br /&gt;
# A simple Google Scholar search would give you many &amp;quot;formal&amp;quot; references.&lt;br /&gt;
&lt;br /&gt;
== [[Optimization in game theory]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: remove cornell IDs. &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Why only a subsection on &amp;quot;Nash Equilibrium&amp;quot; is included in &amp;quot;Theory&amp;quot; section? Please re-format.&lt;br /&gt;
# Please edit references.&lt;br /&gt;
# Add a mathematical description of the problem and a pseudocode/flowchart for the Lemke-Howson algorithm.  &lt;br /&gt;
# Rephrase “This algorithm utilizes iterated pivoting much like the simplex algorithm used in the simplex algorithm used in linear programming”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please organize the last part in a more readable format. Questions may be in bold and numbered, answers are more direct, etc.&lt;br /&gt;
# Remember to cite all images and tables. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Very good, link the reference and cite all sources. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summarizing especially from theory sentences and avoid long sentences. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Incorrect reference style. Please correct.&lt;br /&gt;
&lt;br /&gt;
== [[Trust-region methods]] ==&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
** Avoid pronouns such as “we”. This goes for all other sections as well.&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Organization of ideas in this section needs work.&lt;br /&gt;
# You have not defined explicitly why the Cauchy point is important to compute beyond a vague allusion to performance improvements, which is also wrong (it is useful because of its guarantees for convergence, not performance) It is also misspelled.&lt;br /&gt;
# Please format the algorithm in proper algorithmic pseudocode format.&lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style.&lt;br /&gt;
&lt;br /&gt;
*There are numerous misspellings, grammatical errors, and incorrect claims. Please fix these.&lt;br /&gt;
&lt;br /&gt;
== [[Momentum]] ==&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Apart from an explanation on momentum, it is necessary to briefly point out the limitations of SGD and why momentum could help with these limitations. Please update it accordingly.&lt;br /&gt;
# Remove bold on “Momentum”.&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# &lt;br /&gt;
# The definition of the update rule for SGD with momentum looks incorrect, specifically the first expression. Please fix it and also explain all the parameters used.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “W”, “V`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “you”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;. Since writing all iterations is not feasible, at least present a few iterations for both cases.&lt;br /&gt;
# Please try to label the plots that explains what each line color means.&lt;br /&gt;
# Starting point for SGD with momentum is different in explanation and the table. Please fix the same.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please use correct terminology like “optimizing non-convex functions” and not “training non-convex models”.&lt;br /&gt;
* References&lt;br /&gt;
# Almost all references used are URLs. Please try to add journal/conference articles or books for references, instead of directly citing the URLs. Please check the list below and run a quick Google (Scholar) search to identify relevant literature.&lt;br /&gt;
&lt;br /&gt;
== [[Stochastic dynamic programming|Stochastic Dynamic programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions &lt;br /&gt;
# Remove the grey box background of equations.&lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Outer-approximation (OA)|Outer-approximation]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic &lt;br /&gt;
# See formatting guideline below&lt;br /&gt;
# Avoid opinionated statements such as “MINLP problems are usually the hardest to solve”.&lt;br /&gt;
# Rearrange the text such that the MINLP formulation is in the theory section and keep the introduction in words only.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Consider left aligning equations and optimization problem formulations by the “=”. See [[Stochastic programming|https://optimization.cbe.cornell.edu/index.php?title=Stochastic_programming]] for an example&lt;br /&gt;
# The sentence “The Outer-Approximation (OA) algorithm was first proposed by Duran and and Grossmann in 1986 to solve MINLP problems.” needs a reference. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# “Minimize” and “subject to” should be “min” and “s.t.” in MathType&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Does not explicitly point out why OA is applicable (and/or preferred) in these applications, rather than other MINLP approaches (show that the problem formulations are amenable to a solution approach through OA)&lt;br /&gt;
# The sentence “... an active research area and there exists a vast number of applications in fields such as engineering, computational chemistry, and finance.” needs references. &lt;br /&gt;
# Posting GAMS code on the page is generally inappropriate and discouraged. Please check with the TAs or me if you have a strong desire to post GAMS codes on the Wiki page. A typical textbook should not be limited to a specific software package. If the GAMS code must be posted, please also post ALL other software implementation versions, such as Pyomo and JuliaOPT, among others.&lt;br /&gt;
# Consider reformatting to make steps more readable. Inserting spaces and breaking down steps would help. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Too short. Consider discussion on future research direction and discussion on uncertainty&lt;br /&gt;
# Please review abbreviations throughout the page. Why is MINLP redefined here? “Outer-Approximation is a well known efficient approach for solving convex mixed-integer nonlinear programs (MINLP)”. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove &amp;quot;Template:Reflist&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== [[Unit commitment problem]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction and avoid discussions of examples or specific applications in this section.&lt;br /&gt;
# The sentence “Nonlinear, Non-convex programming optimization problem.” doesn’t make sense by itself and Non-convex shouldn’t be capitalized.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Figure/image format should be revised to better display the content.&lt;br /&gt;
# Uppercase characters are used randomly (e.g., “non-convex transmission Constraints”) . Please follow correct language conventions for sentence structure.&lt;br /&gt;
# Avoid inserting inline citations after words like “written in matrix form as equation [3]..” or “presented in [3]...” as it is a bit informal when you don’t explicitly name the subject. Also these two sentences are grammatically incorrect and appear to be missing an ending period and comma, respectively. &lt;br /&gt;
# Don’t say “written in matrix form as equation..” and just cite the reference, actually write out the equation. &lt;br /&gt;
# Properly label the figure in this section with a figure number and improve visibility by making it larger. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Label the figures in this section properly with figure numbers.&lt;br /&gt;
# Fix typo “while minimize” to “while minimizing”. &lt;br /&gt;
# Avoid pronouns such as “we”. &lt;br /&gt;
# Use the equation editor when typing equations. &lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
# The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# I suggest changing the order of the subtitles here. For example, Single-Period Unit Commitment. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Frank-Wolfe]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# I suggest highlighting disadvantages along with advantages. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# “[n x 1] matrix” please use the equation editor to express mathematical descriptions and symbols (p,b, etc)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please show at least a few iterations. Even for smaller examples if needed. Report the final solution. &lt;br /&gt;
# Please use the LaTex code or equation editor for min and include s.t., etc.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. For your example, please explicitly state that the derivative is taken etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications: &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Same as the introduction. Pros and cons should be evaluated together!&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Line search methods|Line Search Method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Expand the introduction and avoid discussion on some of the specific steps in the solution process. &lt;br /&gt;
# Provide references here. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The phrase “are as follows” in the steepest descent method discussion needs to be followed by a colon. &lt;br /&gt;
# Rephrase “has a nice convergence theory” and cite a reference for this claim.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Add citation after “.. proposed by Phillip Wolfe in 1969.”&lt;br /&gt;
# Figure 1 is between two sections. Please fix this issue. &lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# Add some space between iterations or subsection break&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# Too few references in this section. &lt;br /&gt;
# Last paragraph makes some claims without references. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Piecewise linear approximation|Piecewise Linear Approximation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The content of this section is good, but there are some issues with sentence clarity and some other grammatical errors. Please revisit this section and make changes accordingly. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Fix typo “to force the x’ values become associated with”. &lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Some of these longer sentences are hard to read. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Expand the conclusion section to be longer than one sentence. The conclusion section to include a brief summary of what was discussed above, an emphasis on it’s significance, and a brief discussion of future extensions and research direction if applicable.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to sources when possible.&lt;br /&gt;
&lt;br /&gt;
== [[Mathematical programming with equilibrium constraints|Mathematical Programming with Equilibrium constraints]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes several terms like variational inequalities, constraint qualifications that were not discussed in the class. Please add a sentence to explain them before using them.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The meaning of parameter vector x is unclear. Please add more information or update if necessary.&lt;br /&gt;
# Equations and symbols in the PIPA subsection are not formatted correctly. Please use the same formatting for all equations, so they read as mathematical equations and not text. This goes for all other sections as well.&lt;br /&gt;
# Use equations instead of images to represent math programs and equations in the Implicit Descent and SQP subsection.&lt;br /&gt;
# Apart from the steps for each solution technique, please also add a few sentences that describe each method.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please define the terms like NCP, MP before abbreviating them. Also try not to unnecessarily abbreviate simple terms.&lt;br /&gt;
# Equations should be typed by LaTex. Images for equations are unacceptable.&lt;br /&gt;
# GAMS code is strongly discouraged. Please solve the problem &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The selected numerical example is fine but is directly solved with the MPEC solver in GAMS. Try to solve it manually like the homework/in-class problems step by step using the steps described in the previous section by choosing any of the methods.&lt;br /&gt;
# Avoid using figures in the equations (subject to etc)&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Add references to “power management, highway pricing, chemical process engineering, and traffic planning.”&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# This Wiki contains very few references. Please check the list below and run a quick Google (Scholar) search to identify relevant literature.&lt;br /&gt;
&lt;br /&gt;
== [[Wing shape optimization|Wing shape Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC. Any formatting issue will incur a penalty in the grading.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction is missing several references (e.g., “software packages like computational fluid dynamics..”, sentences containing things that aren’t common knowledge, performance claims, etc.)&lt;br /&gt;
# Avoid discussion involving finer details of subject methods in this section. &lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. Same applies to box of content!&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Properly cite the CFD package, don’t just include a link. &lt;br /&gt;
# Properly label the figure with a figure number.&lt;br /&gt;
# Consider removing white space between isolated sentences to improve readability. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# If you’ve already defined an abbreviation (CFD), there is no need to define it again. Just use the abbreviation.&lt;br /&gt;
# Avoid pronouns such as “we” or “they”.&lt;br /&gt;
# Phrases like “under the following” need to be followed by a colon.&lt;br /&gt;
# Properly label the figure with a figure number and consider making them larger to improve visibility. Call the reader&#039;s attention to the figures in text by referencing the figure number.&lt;br /&gt;
# “As seen in the video below” is stated yet there are only images present and it may be initially unclear to the reader which figure is being referenced here. &lt;br /&gt;
# Avoid inserting inline citations like “[4] introduces an..”  as it is a bit informal when you don’t explicitly name the subject.&lt;br /&gt;
# Don’t just cite the reference when discussing the problem formulation, explicitly write the model formulation and solution process using LaTex or equation visual editor.&lt;br /&gt;
# Your team should ideally create a numerical example independently. If you take a numerical example directly from a textbook, etc., you will need to get explicit permission from the author in writing and share that written permission with me.&lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
# The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Some characters are randomly capitalized in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# These variables should be defined before the conclusion section, they are out of place here. Also, please use normal text when explaining variables except for the variable symbol. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Interior-point method for NLP|Interior point method for NLP]] ==&lt;br /&gt;
&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
** Need discussion about the concept of “central path” and the notion of self concordance&lt;br /&gt;
** Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
** Fix typo “optimisation”.&lt;br /&gt;
== [[AdaGrad|Adagrad]] ==&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the first sentence, “..take the following numerical example” should be followed by a colon. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is too short; include specific applications in which input features are sparse and Adagrad excels.&lt;br /&gt;
* &lt;br /&gt;
* References &lt;br /&gt;
&lt;br /&gt;
# References not properly formatted&lt;br /&gt;
&lt;br /&gt;
== [[McCormick envelopes|McCormick Envelopes]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: OK but I suggest removing NetID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# First sentence is hard to read. Please consider keeping sentences below 25-30 words. &lt;br /&gt;
# No references provided. Please cite all sources. &lt;br /&gt;
# Figure 1 is provided in the middle between two sections. Please include in the introduction section. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# When using mathematical expressions and symbols, please use the equation editor. (e.g., x*y, exy + y, sin (x+y) - x2)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution. &lt;br /&gt;
# The solution technique should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# GAMS code is unnecessary. Please provide detailed step-by-step calculation results.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each. &lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section: &lt;br /&gt;
* References&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;br /&gt;
&lt;br /&gt;
== [[Branch and bound (BB) for MINLP|Branch and Bound for MINLP]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
** Remove NetIDS&lt;br /&gt;
** Please remove abbreviations from the title (i.e. BB).&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please cite sources appropriately: References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Introduction is very short for a well-recognized topic. Please expand significantly. You may refer to the Wiki examples to get an idea on writing the Introduction to a topic.&lt;br /&gt;
# An illustration might be useful here.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The algorithm described here considers only binary integer variables. However, MINLP problems may include non-binary integer variables too. Please update the method or provide a short description of the assumptions that the MINLP problem needs to satisfy in order for the presented technique to be applicable.&lt;br /&gt;
# Use linked citations please as the Wiki template above. &lt;br /&gt;
# Please provide steps in a more organized way. Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Step 2 is missing yet it is referenced in the text multiple times. Please address this in addition to the above comment.&lt;br /&gt;
# An illustration might be useful here as well. &lt;br /&gt;
# Please explain what a Gomory Cut is. If the topic is available on optimization.cb.cornell.edu, you can link it.    &lt;br /&gt;
# The current equations seem to be simple text written in Italics. All mathematical symbols and equations should be formatted via LaTex.&lt;br /&gt;
# Please format the math programs with equations and notations using formulations in lecture notes as templates.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution.&lt;br /&gt;
# Please show a step-by-step solution in the example. The solution is incomplete. The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
# Please use the equation editor for equations or mathematical symbols. - All mathematical symbols and equations should be formatted via LaTex - this is a learning objective of the Wiki assignment. You can find some useful links on converting your equations/symbols into LaTex code here: (&amp;lt;nowiki&amp;gt;https://optimization.cbe.cornell.edu/index.php?title=Help:Contents&amp;lt;/nowiki&amp;gt;). Again, any formatting issue will incur a &amp;quot;compound&amp;quot; penalty in the grading.&lt;br /&gt;
# This example does not follow the MINLP structure discussed in the above section since binary variables are missing. Branch and bound may not be appropriate for such problems. Please provide an appropriate numerical example and solve it according to the above comments.&lt;br /&gt;
# Make sure your example is not taken from a book as that is strictly disallowed. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is not well-formatted. Please provide 3 applications and explain each in a few sentences and how BB for MINLP could be used. Also, please eliminate having multiple sections (Application, Mathematical problem, industrial application). All these could be merged together.&lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section:&lt;br /&gt;
# The sentence is hard to understand &amp;quot;a scheme that grows exponentially because&amp;quot; please use a simple language. Is it also theoretically correct? It is also not mentioned and explained earlier. Thus, please avoid introducing new concepts or terms at the end. &lt;br /&gt;
# Please use summarizing sentences to describe earlier sections instead of introducing new concepts/discussion. &lt;br /&gt;
* References&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources. A quick Google scholar search could provide relevant references.&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4936</id>
		<title>2021 Cornell Optimization Open Textbook Feedback</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4936"/>
		<updated>2021-12-07T15:33:51Z</updated>

		<summary type="html">&lt;p&gt;Asa273: Moved comments on compressed sensing to Gdoc&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[Lagrangean duality|Lagrangian duality]] ==&lt;br /&gt;
* Author list, sections and TOC&lt;br /&gt;
# Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor and avoid HTML formatting on the section titles.&lt;br /&gt;
# Remove cornell ID from Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes sentences on constructing the dual problem and is referred to as Lagrangian relaxation (LR). This is incorrect, please fix the definition of LR.&lt;br /&gt;
# Definitions of LR and its relation to duality should be double checked and re-written.&lt;br /&gt;
# Only one reference is present in this section. Please add more relevant references by expanding this section.&lt;br /&gt;
# Consider merging the “introduction” and “history” sections.&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The Lagrangian variables associated with equality constraints h(x) are unbounded but the Lagrangian dual problem states them as non-negative. Please fix the same.&lt;br /&gt;
# Also to construct a dual, we do not change minimization to maximization directly. We observed such things in the examples in lecture notes due to simplification. The lagrangian dual problem would be minimize (,).&lt;br /&gt;
# Adding to the previous point, the Lagrangian is a lower bound on the original objective; the solution to the primal and dual or only equivalent if the duality gap is 0. You reference this in one section, but this is after your statement “Hence, solving the dual problem, which is a function of the Lagrangian multipliers (𝜆*) yields the same solution as the primal problem, which is a function of the original variables (x*). “. Please clarify the specific conditions that must hold for the solution of the dual to be equal to the primal’s.&lt;br /&gt;
# You refer to the “Complementary Slackness Theorem”, but don’t actually write the mathematical representation of complementary slackness. Please fix this. Also consider including the derivation of the complementary slackness condition, as it is both easy and short. Boyd is a good reference for this.&lt;br /&gt;
# Last step of the “process” subsection also needs updating according to the previous comments.&lt;br /&gt;
# The inline notations should also be typed using LaTex.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Only one dual variable is associated with each constraint. The numerical example uses two for the first and second constraint which is unnecessary. Please update it accordingly for both constraints. This particular example will only have two dual variables instead of the five dual variables used currently.&lt;br /&gt;
# All consecutive steps need to be updated since the dual variables would be updated.&lt;br /&gt;
# After substitution the nonlinear function should be further simplified. The current expression reads like a highly nonlinear function but can be easily simplified.&lt;br /&gt;
# Similar to the comments in the methodology section, inverting minimize to maximize is incorrect. Please update the dual objective function and domain of dual variables accordingly.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Bullet points could be used to state the last four real-world examples that explain the physical meaning of the primal and dual problems.&lt;br /&gt;
# Add references for the last set of applications. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# This section contains a few typos. Please fix the same.&lt;br /&gt;
* References&lt;br /&gt;
# Some citations&#039; hyperlinks are displaying.&lt;br /&gt;
&lt;br /&gt;
== [[Disjunctive inequalities|Disjunctive Inequalities]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section and semester&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# No citations are present in this section.&lt;br /&gt;
# “mixed-integer programming (MIP)” should be used instead of “multiple integer programming (MIP)”. Please fix this error.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The abbreviation MILP is not previously defined. Please fix this issue.&lt;br /&gt;
# You consistently use the negative sign instead of the NOT operator for y (-y instead of ¬y). &lt;br /&gt;
# Some inconsistencies with the spacing of variables, constraints, etc., under the “General” section that need to be fixed.&lt;br /&gt;
# Typo in “This is shown below by M1, M2, y1, and y1:” where y1 needs to be changed to y2. Why use two different Big-M variables here? Elsewhere in the Wiki you only use one so this could lead to confusion with a general audience. Also if this was taken from the lecture notes then it needs to be cited.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please reformulate and solve a complete numerical example rather than just reformulating a general example. Demonstrate the use of Big-M and Convex Hull formulation in an optimization problem that provides details such as individual steps in the problem solving process and final results. The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results.&lt;br /&gt;
# Add space between vee (V) operator and brackets in first line of Latex&lt;br /&gt;
# Please format variables correctly, for example, use &amp;lt;math&amp;gt;x_1&amp;lt;/math&amp;gt; instead of x1.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please format the equations appropriately either by using latex code or the visual editor. These images are NOT acceptable!&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# There is no conclusion presented in this section at all.&lt;br /&gt;
* References&lt;br /&gt;
# The included references have NOT been used anywhere in the Wiki. Add references for sentences that are not common knowledge and please link them appropriately with the text in Wiki. If the figures used here were not original works, you must also cite them. &lt;br /&gt;
# There are many papers on this topic. A simple Google (Scholar) search could provide you with sufficient references to cite. &lt;br /&gt;
# Many important references of this topic are missing.&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
==[[Stochastic programming|Stochastic Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell IDs&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
# This section only includes two sentences on Stochastic programming (SP), while the rest gives examples of uncertainty. Please discuss the need for SP in the presence of uncertainty. Also, discussion on robust optimization and its limitations should be removed since it is out of place.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please avoid direct inline linkbacks to Wikipedia.&lt;br /&gt;
# The symbol “xi” in the methodology subsection should be explained.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Copying a numerical example &amp;quot;entirely&amp;quot; from a textbook is inappropriate. Your team should come up with a &amp;quot;numerical&amp;quot; case.&lt;br /&gt;
# No specific application context is needed for a numerical example.&lt;br /&gt;
# The inline notations (`x1`, `s1`) should also be typed using LaTex.&lt;br /&gt;
# Label all tables with a table number for better readability. &lt;br /&gt;
# Properly format the solution table with the label attached rather than the following sentence. The solution table looks different from the others, please fix this for consistency. &lt;br /&gt;
* A section to discuss and/or illustrate the applications;&lt;br /&gt;
# I suggest eliminating citing the last name of the first author (i.e. Zhou et al.)&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# URLs of some citations are not properly formatted (not showing the hyperlinks).&lt;br /&gt;
&lt;br /&gt;
== [[Exponential transformation|Exponential Transformation]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction.&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Last sentence with 51 words is hard to read. &lt;br /&gt;
# Second Sentence: please change the word “they” as it could make the meaning ambiguous&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
# If you use abbreviations, please introduce them (e.g. NLP,MINLP)&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please explain the transformation in words along with equations&lt;br /&gt;
# Terms like posynomial should be described in detail.&lt;br /&gt;
# Please move the numerical example to the section below&lt;br /&gt;
# The “(eq 1)” is not needed here.&lt;br /&gt;
# Please expand this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the third equation of the numerical example, it is confusing to have coefficients after numbers. Some readers may read it as an exponent.&lt;br /&gt;
# Last equation in this section after “further linearization” is incorrect. This equation cannot be further linearized, please fix this.&lt;br /&gt;
# Please explain the steps in the numerical examples in detail. The step-by-step solution should be provided. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Missing part of text: “Proof of convexity of with positive definite test of Hessian…”&lt;br /&gt;
# Applications are not numerical examples. Please refer to this link for example of applications: [[Duality|https://optimization.cbe.cornell.edu/index.php?title=Duality]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
# The section current applications is redundant&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
# Under current applications, do not just use a hyperlink to describe an application. Actually describe it. And properly inline citation style should be used instead of the hyperlink. &lt;br /&gt;
# The convexification application of MINLP can be further simplified for binary variables. Please refer to the lecture slides for more information.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references by using this as Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
&lt;br /&gt;
== [[Sparse Reconstruction with Compressed Sensing|Sparse reconstruction with Compressed Sensing]] ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [[Portfolio optimization|Portfolio Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell id&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introductory sentence should be rephrased. The action of minimizing the risks does not inherently maximize the gains, rather PO aims to maximize gains whilst minimizing risks. &lt;br /&gt;
# Amount of whitespace can be reduced by changing the orientation of Figure 1 and the sentences in this section.&lt;br /&gt;
# Define terms such as risk, return, portfolio, etc., when you introduce them. Assume that the reader may not know much about finance. This goes for all other sections as well. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# A brief mention of modern portfolio theory (i.e.. Markowitz) would be appropriate in this section. &lt;br /&gt;
# Several grammatical errors here involving sentence structure and clarity. Some questionable semantics (e.g., “The portfolio optimization mainly assumes two directions.”) and syntax (phrases such as “.. is as follows” should be followed by a colon). Misuse of commas and missing commas in this section. Two sentences introducing E(rp) and w should be combined into one.&lt;br /&gt;
# Use LaTex to distinguish variables written within a sentence, such as m and n. &lt;br /&gt;
# Rephrase “Cut the relevant information and conditions in the portfolio optimization, as well as the final requirements into the relevant variables, constraints and linear functions of the linear programming problem.”&lt;br /&gt;
# An explanation of a few common constraints would be helpful, rather than just including a table. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Solving the numerical example by GAMS is inappropriate. Please provide detailed step-by-step calculation results.&lt;br /&gt;
# All tables need to be labeled.&lt;br /&gt;
# Include figure number in label for consistency. &lt;br /&gt;
# Fix misspelling “dolling decision variables”. &lt;br /&gt;
# Use LaTex for all variables, equations, and constraints here.&lt;br /&gt;
# Example 2 table is hard to read, so making it bigger would help. &lt;br /&gt;
# Remove the “Using excel as the solver” part from the sentence before the solution discussion. &lt;br /&gt;
# Some grammatical errors here (phrases such as “.. is as follows” should be followed by a colon). &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Rephrase “Portfolio optimization can be used to screen investment projects that meet investors, rationally allocate investment amounts, etc.”&lt;br /&gt;
# Not sure “relevant” is the correct word choice here. &lt;br /&gt;
# You need more specific examples with the utility of portfolio optimization, this section is quite general as is. Some more detail and focus on real-world applications in the financial industry that relate to retirement planning, financial security, economic stability, etc., would be helpful. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Need some commas here.&lt;br /&gt;
# The sentence “Linear programming has been around since the 1940’s and has such a wide base of applications” is not necessary. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove white space between end of sentences and reference numbers.&lt;br /&gt;
&lt;br /&gt;
== [[Chance-constraint method|Chance constraint method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please consider correcting a few grammatical errors: “pre-planned for”, “god”, “certain levels of feasibility is guaranteed in what are”, and “Performance of a system”&lt;br /&gt;
# In “Chance-constraint”, it is capitalized randomly throughout the introduction. Please correct.   &lt;br /&gt;
# Please use technical language to briefly introduce chance-constrained programming. Words like “acts of god”, “cost of doing business” are not appropriate for a  technical Wiki.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Xi is an uncertainty/randomness variable. It is better to use clear language. &lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others.&lt;br /&gt;
# Theory is insufficient. Please expand and explain different approaches. &lt;br /&gt;
# Please add pros and cons explicitly as a list. &lt;br /&gt;
# Explain the physical meaning for examples of chance constraints along with all the notations used.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please remove this example as it is directly from this book. The example should be purely numerical without any background.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others. &lt;br /&gt;
# Please change the table format so as not to confuse the reader. &lt;br /&gt;
# Multiple instances of [Chart to be added] are missing.&lt;br /&gt;
# Example is incomplete. &lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please connect several grammatical and spelling errors: “real life application”, Energy creation, particularly in renewable sources, have high variabilities”, and others&lt;br /&gt;
# “Zhao, Xue, Cao, and Zhang”. No need to list all authors within the article. Provide a reference is sufficient. If authors must be mentioned, (Zhao et al.) should be ok.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Uniqueness and universality earlier are not clear to me. If they are not discussed earlier in the application, it would be better not to introduce new discussions in the conclusion.&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
==  [[Bayesian Optimization]] ==&lt;br /&gt;
* Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor on the section titles.&lt;br /&gt;
* Contents: The section titles should NOT be in bold to avoid strange format in TOC. Any formatting issue will incur a penalty in the grading.&lt;br /&gt;
* Author list: Remove cornell ID, Please check names&lt;br /&gt;
* Introduction&lt;br /&gt;
# The introduction is too general and not substantial enough. For example, simply saying BayesOpt is useful when the objective function is unknown obscures exactly HOW it is useful (namely, computational efficiency in applications where ground truth sampling is expensive). Discussion on applications should be moved to a separate section.&lt;br /&gt;
# Machine learning rarely includes black-box functions to be optimized. Bayesian optimization is almost never used for optimizing ML loss functions but can instead be used for hyperparameter optimization. Please update such claims in this section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Captions need reformatting.&lt;br /&gt;
# Consider italicizing keywords rather than bolding.&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Discussion on acquisition functions should include comparisons, tradeoffs, and reasons to use one over the other. Should also note that expected improvement is the most widely used in practice, and explain.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Please write equations in the Wiki instead of attaching images for equations.&lt;br /&gt;
# Acquisition function figure could be made larger and clearer to improve readability.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any references to functions or methods in code ‘e.g. fmin’ should be properly formatted as code-stylized text.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Avoid including a figure of the code for this example and explicitly describe the steps to the modeling and solution process instead. &lt;br /&gt;
# Avoid pronouns such as “our” and “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please do not use brackets to enclose lists.&lt;br /&gt;
# Some claims here should be supported by references. Please cite each source after its sentence. &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to “pop” machine learning blogs where anyone can be an author. (e.g. towardsdatascience)&lt;br /&gt;
# All references are URLs. Please cite publications and literature.&lt;br /&gt;
# A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
Notes on grammar: Needs some work. Several instances where colons are inappropriately inserted mid sentence or in subheadings. Explanations are not terse. Several instances of switching between personal and impersonal style of writing, which is distracting.&lt;br /&gt;
&lt;br /&gt;
== [[Conjugate gradient methods]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Introduction&lt;br /&gt;
# All inline notations (e.g., `x`, `A`) should be typed using LaTex.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
# Is Gauss-Newton no longer referenced?&lt;br /&gt;
# Theorems listed in the first section should be accompanied with high level explanation, not just a list of the theorems themselves. The page should read like an article, with proper flow.&lt;br /&gt;
# Please indent equation blocks.&lt;br /&gt;
# Please properly format pseudocode.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Steps should be accompanied with explanation, or reference to the corresponding step in the pseudocode.&lt;br /&gt;
# Please properly format in a more organized manner, aligning equations appropriately and demarcating steps appropriately.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
# Consider including 2 additional examples of applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Consider adding future research directions&lt;br /&gt;
* References&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Too few references.&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Geometric programming|Geometric Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Examples of applications in this section use the same reference. Please cite their individual sources.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The symbol denoting the domain in the definition of a monomial is unclear. Please clarify it or fix this if it is incorrect.&lt;br /&gt;
# Definition of posynomial refers to section 2.1 which is missing from the Wiki (sections are not numbered in the main text).&lt;br /&gt;
# In the generalized posynomial subsection, bullet points do not tell us why h(x) is posynomial. Either provide reasons or simply state that h(x) is posynomial. Also explain why h3 is a generalized posynomial.&lt;br /&gt;
# Additional theory on the feasibility analysis could be provided in this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the transformation example, the last two constraints could also be simplified. Please update them as well.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The figure in this section needs to be labeled. &lt;br /&gt;
# The figure needs to be resized and perhaps aligned to the center.  &lt;br /&gt;
* A conclusion section:&lt;br /&gt;
# Please avoid vague language such as: “This makes”.&lt;br /&gt;
# Please avoid opinionated statements: “one of the best ways”.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# This Wiki has very few references. A quick Google Scholar search may provide relevant references.&lt;br /&gt;
&lt;br /&gt;
== [[Adam]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Some grammatical errors here, mostly related to the need for commas in certain places (e.g., “Before Adam..”).&lt;br /&gt;
# Some minor errors with parts of speech throughout the section, need to revisit phrases such as “which has broader scope in future for”, etc. &lt;br /&gt;
# Try splitting up some of the longer sentences in this section, a couple are hard to read.&lt;br /&gt;
# Avoid definitive statements about Adam being the best or always better solver, as this is simply not true (the choice of the “best” optimizer is setting-dependent). Use language such as “Research has shown that Adam has demonstrated superior experimental performance over..” and then cite academic references to back this claim. &lt;br /&gt;
# What does adam stand for? Introduction is insufficient. Please expand. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Revise grammar here, noticing some missing commas and uncapitalized word after period.&lt;br /&gt;
# Rephrase “second one is to update the old position with the updated position”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section, and actual subscripts instead of “m_t”, etc. &lt;br /&gt;
# Avoid inserting inline citations after words like “According to..” or “This article..” as it is a bit informal. This could be rephrased or changed to something like “According to author,^[2] …” with author name inserted. &lt;br /&gt;
# Remove white space before the period in RMSP discussion.&lt;br /&gt;
# Please provide a pseudocode. &lt;br /&gt;
# Please use list the two methods here “Adam is a combination of two gradient descent methods which are explained below”&lt;br /&gt;
# Please expand the theory section significantly. Theoretical convergence properties should be discussed, even if briefly.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Same comment as before, consider replacing inline citations after words like “According to..”. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to blogs and use peer-reviewed academic references instead. &lt;br /&gt;
# Too few references.&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[A-star algorithm|a* algorithm]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor and avoid HTML formatting on the section titles.&lt;br /&gt;
* An introduction of the topic:&lt;br /&gt;
# Weird spacing between paragraphs. Please fix this issue.&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. &lt;br /&gt;
# Please consider correcting a few grammatical errors: “Optimal path”, “cross country”, missing period at end of first paragraph, other random capitalizations, etc.&lt;br /&gt;
# There are no citations in the introduction. Please cite every source.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add the mathematical description of the algorithm.&lt;br /&gt;
# Reference style varies in sentences. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please fix grammatical and spelling errors as (“from current position to the goal”, “There are a lot of discussions”, etc). Also, many hyphens are missing as “non playable”.&lt;br /&gt;
# In algorithms, it is a standard to add high-level description (i.e. pseudocode or flowchart). Please incorporate it. &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section (e.g., “f(n)...”, “h(n)..”, etc.). This goes for other sections as well.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The numerical example does not show the full computations the algorithm performs. Please show the computation on a smaller example.&lt;br /&gt;
# Instead of writing things like “The above image..”, label each figure and use the figure number to refer to it in text. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# No references in the applications. Please cite every source &lt;br /&gt;
# Preferably, add at least an additional application.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion should summarize descriptions. Please modify it to provide a summary.  &lt;br /&gt;
# Please pay attention to the length and structure of sentences here and in the full page. First sentence is hard to read.&lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format and are not linked correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Incorrect reference style. Please follow the example and use the template.&lt;br /&gt;
&lt;br /&gt;
== [[Job shop scheduling|Job-Shop Scheduling Problem]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The current introduction to the jobshop scheduling problem has only two sentences in addition to the parameter description. Introduction typically contains information about the problem, its importance in the real-world, and some information about the solution techniques and their types to solve the problem. Please add some information that covers the above.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# It is unclear whether the assumptions stated in this section are required to apply the following solution techniques. Please clarify the same. Also use complete sentences to state them.&lt;br /&gt;
# The branch and bounds method described in this section only discusses the solution technique for problems with one machines. However, branch and bound is a general technique that can be applied to any MILP problems with varying scales. Please update the “methods” section to be as general as possible.&lt;br /&gt;
# Since this Wiki focuses on jobshop scheduling, at least two methods are expected. Branch and bound is a general MILP technique, so, it is recommended to add a tailored technique that can only solve specific jobshop scheduling problems. Solving the numerical example with this technique is not necessary.&lt;br /&gt;
# Reference to the branch and bound technique described in this section is a “youtube” video. Please add references in literature that describe this method in detail. The method used in this video is highly tailored for a single machine application. This is also an incorrect way to cite a reference. Please keep this section as general as possible.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section and all other sections as well.&lt;br /&gt;
# Check grammar in this section. For example, phrases like “are as follows” need to be followed by a colon and not a period. &lt;br /&gt;
# Consider rewriting the assumptions as a list in this section. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The example used in this section is exactly the same as the one in the youtube video. Please use a modification of this example or choose another example/method to demonstrate the solution technique. Your team should ideally create a numerical example independently. If you take a numerical example directly from a particular source, you will need to get explicit permission from the textbook author in writing and share that written permission with the instructors.&lt;br /&gt;
# The figure in this section is not numbered when all others are. Relabel this figure for consistency and its number to refer to it in-text.&lt;br /&gt;
# A numerical example should be simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments).&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section should only focus on real-world applications of the jobshop scheduling problem. But currently, this section includes additional information on solution techniques/complexity that is appropriate for the Introduction section. Please discuss the applications of the problem in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# The meaning of  “Operations applications” is unclear. Please explain or update if necessary.&lt;br /&gt;
# The current conclusion section does not properly summarize the problem. Please refer to other Wiki examples for an idea to update the section accordingly.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Please reference media sources like reference 5 appropriately.&lt;br /&gt;
# A simple Google Scholar search would give you many &amp;quot;formal&amp;quot; references.&lt;br /&gt;
&lt;br /&gt;
== [[Optimization in game theory]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: remove cornell IDs. &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Why only a subsection on &amp;quot;Nash Equilibrium&amp;quot; is included in &amp;quot;Theory&amp;quot; section? Please re-format.&lt;br /&gt;
# Please edit references.&lt;br /&gt;
# Add a mathematical description of the problem and a pseudocode/flowchart for the Lemke-Howson algorithm.  &lt;br /&gt;
# Rephrase “This algorithm utilizes iterated pivoting much like the simplex algorithm used in the simplex algorithm used in linear programming”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please organize the last part in a more readable format. Questions may be in bold and numbered, answers are more direct, etc.&lt;br /&gt;
# Remember to cite all images and tables. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Very good, link the reference and cite all sources. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summarizing especially from theory sentences and avoid long sentences. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Incorrect reference style. Please correct.&lt;br /&gt;
&lt;br /&gt;
== [[Trust-region methods]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
# Remove cornell IDs. Author is also spelled incorrectly. &lt;br /&gt;
# Add the course section.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xk”, “f`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “we”. This goes for all other sections as well.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Organization of ideas in this section needs work.&lt;br /&gt;
# You have not defined explicitly why the Cauchy point is important to compute beyond a vague allusion to performance improvements, which is also wrong (it is useful because of its guarantees for convergence, not performance) It is also misspelled.&lt;br /&gt;
# Each approach should have accompanying explanation and motivation for why it is being discussed. It is not enough to outline the algorithm.&lt;br /&gt;
# Please make sure symbols are properly subscripted and superscripted (e.g. “pk” should be “p_k”&lt;br /&gt;
# Please format the algorithm in proper algorithmic pseudocode format.&lt;br /&gt;
# Little to no discussion on global convergence guarantees&lt;br /&gt;
# Please include discussion about the advantages and disadvantages of the algorithm&lt;br /&gt;
# Fix typo “couchy point”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any code functions (uminfunc) should have proper text formatting.&lt;br /&gt;
# The graph needs a better caption explaining how the axes are labeled and what data points are being shown.&lt;br /&gt;
# Please increase the quality of the figure. It is hard to see the red line. &lt;br /&gt;
# Add citation to “The Rosenbrock function is a non-convex function, introduced by Howard H. Rosenbrock in 1960, which is often used as a performance test problem for optimization algorithms.”&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The content in this section as it is currently does NOT describe applications, but rather different approaches within the trust region methodology. Please provide specific applications (e.g. TRPO in reinforcement learning).&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summary, future research directions for example is a good start.&lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style.&lt;br /&gt;
# Please consider having the references as this Wiki template, &amp;lt;nowiki&amp;gt;https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
*There are numerous misspellings, grammatical errors, and incorrect claims. Please fix these.&lt;br /&gt;
&lt;br /&gt;
== [[Momentum]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Apart from an explanation on momentum, it is necessary to briefly point out the limitations of SGD and why momentum could help with these limitations. Please update it accordingly.&lt;br /&gt;
# Remove bold on “Momentum”.&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Equation formatting is very poor and should be formalized.&lt;br /&gt;
# It is important to use technical language for this Wiki. Although a layman’s explanation is appreciated, it would be better to skip using words like “zig zagging”. Try to explain all concepts in a technical language with few simplifications but NOT vice versa.&lt;br /&gt;
# The definition of the update rule for SGD with momentum looks incorrect, specifically the first expression. Please fix it and also explain all the parameters used.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “W”, “V`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “you”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;. Since writing all iterations is not feasible, at least present a few iterations for both cases.&lt;br /&gt;
# Please try to label the plots that explains what each line color means.&lt;br /&gt;
# Starting point for SGD with momentum is different in explanation and the table. Please fix the same.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please use correct terminology like “optimizing non-convex functions” and not “training non-convex models”.&lt;br /&gt;
# Adam, Adadelta, and RMSprop are variants of SGD that already use momentum. Please double check the writing and update if necessary.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please refrain from using words like “zig zag” effects.&lt;br /&gt;
* References&lt;br /&gt;
# Almost all references used are URLs. Please try to add journal/conference articles or books for references, instead of directly citing the URLs. Please check the list below and run a quick Google (Scholar) search to identify relevant literature.&lt;br /&gt;
&lt;br /&gt;
== [[Stochastic dynamic programming|Stochastic Dynamic programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions &lt;br /&gt;
# Remove the grey box background of equations.&lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Outer-approximation (OA)|Outer-approximation]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic &lt;br /&gt;
# See formatting guideline below&lt;br /&gt;
# Avoid opinionated statements such as “MINLP problems are usually the hardest to solve”.&lt;br /&gt;
# Rearrange the text such that the MINLP formulation is in the theory section and keep the introduction in words only.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Consider left aligning equations and optimization problem formulations by the “=”. See [[Stochastic programming|https://optimization.cbe.cornell.edu/index.php?title=Stochastic_programming]] for an example&lt;br /&gt;
# The sentence “The Outer-Approximation (OA) algorithm was first proposed by Duran and and Grossmann in 1986 to solve MINLP problems.” needs a reference. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# “Minimize” and “subject to” should be “min” and “s.t.” in MathType&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Does not explicitly point out why OA is applicable (and/or preferred) in these applications, rather than other MINLP approaches (show that the problem formulations are amenable to a solution approach through OA)&lt;br /&gt;
# The sentence “... an active research area and there exists a vast number of applications in fields such as engineering, computational chemistry, and finance.” needs references. &lt;br /&gt;
# Posting GAMS code on the page is generally inappropriate and discouraged. Please check with the TAs or me if you have a strong desire to post GAMS codes on the Wiki page. A typical textbook should not be limited to a specific software package. If the GAMS code must be posted, please also post ALL other software implementation versions, such as Pyomo and JuliaOPT, among others.&lt;br /&gt;
# Consider reformatting to make steps more readable. Inserting spaces and breaking down steps would help. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Too short. Consider discussion on future research direction and discussion on uncertainty&lt;br /&gt;
# Please review abbreviations throughout the page. Why is MINLP redefined here? “Outer-Approximation is a well known efficient approach for solving convex mixed-integer nonlinear programs (MINLP)”. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove &amp;quot;Template:Reflist&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== [[Unit commitment problem]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction and avoid discussions of examples or specific applications in this section.&lt;br /&gt;
# The sentence “Nonlinear, Non-convex programming optimization problem.” doesn’t make sense by itself and Non-convex shouldn’t be capitalized.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Figure/image format should be revised to better display the content.&lt;br /&gt;
# Uppercase characters are used randomly (e.g., “non-convex transmission Constraints”) . Please follow correct language conventions for sentence structure.&lt;br /&gt;
# Avoid inserting inline citations after words like “written in matrix form as equation [3]..” or “presented in [3]...” as it is a bit informal when you don’t explicitly name the subject. Also these two sentences are grammatically incorrect and appear to be missing an ending period and comma, respectively. &lt;br /&gt;
# Don’t say “written in matrix form as equation..” and just cite the reference, actually write out the equation. &lt;br /&gt;
# Properly label the figure in this section with a figure number and improve visibility by making it larger. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Label the figures in this section properly with figure numbers.&lt;br /&gt;
# Fix typo “while minimize” to “while minimizing”. &lt;br /&gt;
# Avoid pronouns such as “we”. &lt;br /&gt;
# Use the equation editor when typing equations. &lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
# The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# I suggest changing the order of the subtitles here. For example, Single-Period Unit Commitment. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Frank-Wolfe]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# I suggest highlighting disadvantages along with advantages. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# “[n x 1] matrix” please use the equation editor to express mathematical descriptions and symbols (p,b, etc)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please show at least a few iterations. Even for smaller examples if needed. Report the final solution. &lt;br /&gt;
# Please use the LaTex code or equation editor for min and include s.t., etc.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. For your example, please explicitly state that the derivative is taken etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications: &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Same as the introduction. Pros and cons should be evaluated together!&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Line search methods|Line Search Method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Expand the introduction and avoid discussion on some of the specific steps in the solution process. &lt;br /&gt;
# Provide references here. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The phrase “are as follows” in the steepest descent method discussion needs to be followed by a colon. &lt;br /&gt;
# Rephrase “has a nice convergence theory” and cite a reference for this claim.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Add citation after “.. proposed by Phillip Wolfe in 1969.”&lt;br /&gt;
# Figure 1 is between two sections. Please fix this issue. &lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# Add some space between iterations or subsection break&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# Too few references in this section. &lt;br /&gt;
# Last paragraph makes some claims without references. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Piecewise linear approximation|Piecewise Linear Approximation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The content of this section is good, but there are some issues with sentence clarity and some other grammatical errors. Please revisit this section and make changes accordingly. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Fix typo “to force the x’ values become associated with”. &lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Some of these longer sentences are hard to read. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Expand the conclusion section to be longer than one sentence. The conclusion section to include a brief summary of what was discussed above, an emphasis on it’s significance, and a brief discussion of future extensions and research direction if applicable.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to sources when possible.&lt;br /&gt;
&lt;br /&gt;
== [[Mathematical programming with equilibrium constraints|Mathematical Programming with Equilibrium constraints]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes several terms like variational inequalities, constraint qualifications that were not discussed in the class. Please add a sentence to explain them before using them.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The meaning of parameter vector x is unclear. Please add more information or update if necessary.&lt;br /&gt;
# Equations and symbols in the PIPA subsection are not formatted correctly. Please use the same formatting for all equations, so they read as mathematical equations and not text. This goes for all other sections as well.&lt;br /&gt;
# Use equations instead of images to represent math programs and equations in the Implicit Descent and SQP subsection.&lt;br /&gt;
# Apart from the steps for each solution technique, please also add a few sentences that describe each method.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please define the terms like NCP, MP before abbreviating them. Also try not to unnecessarily abbreviate simple terms.&lt;br /&gt;
# Equations should be typed by LaTex. Images for equations are unacceptable.&lt;br /&gt;
# GAMS code is strongly discouraged. Please solve the problem &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The selected numerical example is fine but is directly solved with the MPEC solver in GAMS. Try to solve it manually like the homework/in-class problems step by step using the steps described in the previous section by choosing any of the methods.&lt;br /&gt;
# Avoid using figures in the equations (subject to etc)&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Add references to “power management, highway pricing, chemical process engineering, and traffic planning.”&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# This Wiki contains very few references. Please check the list below and run a quick Google (Scholar) search to identify relevant literature.&lt;br /&gt;
&lt;br /&gt;
== [[Wing shape optimization|Wing shape Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC. Any formatting issue will incur a penalty in the grading.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction is missing several references (e.g., “software packages like computational fluid dynamics..”, sentences containing things that aren’t common knowledge, performance claims, etc.)&lt;br /&gt;
# Avoid discussion involving finer details of subject methods in this section. &lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. Same applies to box of content!&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Properly cite the CFD package, don’t just include a link. &lt;br /&gt;
# Properly label the figure with a figure number.&lt;br /&gt;
# Consider removing white space between isolated sentences to improve readability. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# If you’ve already defined an abbreviation (CFD), there is no need to define it again. Just use the abbreviation.&lt;br /&gt;
# Avoid pronouns such as “we” or “they”.&lt;br /&gt;
# Phrases like “under the following” need to be followed by a colon.&lt;br /&gt;
# Properly label the figure with a figure number and consider making them larger to improve visibility. Call the reader&#039;s attention to the figures in text by referencing the figure number.&lt;br /&gt;
# “As seen in the video below” is stated yet there are only images present and it may be initially unclear to the reader which figure is being referenced here. &lt;br /&gt;
# Avoid inserting inline citations like “[4] introduces an..”  as it is a bit informal when you don’t explicitly name the subject.&lt;br /&gt;
# Don’t just cite the reference when discussing the problem formulation, explicitly write the model formulation and solution process using LaTex or equation visual editor.&lt;br /&gt;
# Your team should ideally create a numerical example independently. If you take a numerical example directly from a textbook, etc., you will need to get explicit permission from the author in writing and share that written permission with me.&lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
# The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Some characters are randomly capitalized in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# These variables should be defined before the conclusion section, they are out of place here. Also, please use normal text when explaining variables except for the variable symbol. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Interior-point method for NLP|Interior point method for NLP]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Primal-Dual formulation and comparison to the Barrier Method is not discussed.&lt;br /&gt;
# Include brief discussion about big O convergence rates.&lt;br /&gt;
# Need discussion about the concept of “central path” and the notion of self concordance&lt;br /&gt;
# Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Graphs and images are incorrectly formatted to the page. Consider proper alignment with respect to the text body.&lt;br /&gt;
# Use explicitly typed Latex equations instead of images to represent math programs and equations.&lt;br /&gt;
# Fix typo “optimisation”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xi ”, “μ”, etc.).&lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# There are formatting issues with figures 2,3. Please make sure to embed them within their respective sections. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section &lt;br /&gt;
# Minor character code typos in the conclusion.&lt;br /&gt;
# Also, please add more discussion in this section. Future research directions is a good start.&lt;br /&gt;
# There is a box &amp;quot;􏰐&amp;quot;&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[AdaGrad|Adagrad]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Include discussion on its variants (most important is AdaDelta).&lt;br /&gt;
# Include disadvantages of Adagrad, since this provides motivation for the discussion on the variants and improvements of Adagrad&lt;br /&gt;
# Include comparisons to other popular optimizers (particularly important is comparisons to regular SGD and Adam)&lt;br /&gt;
# Different convergence rates are possible depending on the setting where Adagrad is used, but this is not mentioned on the page currently. As such the regret bound section should be more thoroughly explained.&lt;br /&gt;
# Algorithm image is blurry. Either increase the fidelity or write the pseudocode directly in the wiki editor.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the first sentence, “..take the following numerical example” should be followed by a colon. &lt;br /&gt;
# Fix typo “trayectory”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is too short; include specific applications in which input features are sparse and Adagrad excels.&lt;br /&gt;
# Add reference to the claim “Mainly, it is a good choice for deep learning models with sparse input features”.&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References &lt;br /&gt;
&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources (even if the base algorithm itself comes from a singular paper)&lt;br /&gt;
&lt;br /&gt;
== [[McCormick envelopes|McCormick Envelopes]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: OK but I suggest removing NetID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# First sentence is hard to read. Please consider keeping sentences below 25-30 words. &lt;br /&gt;
# No references provided. Please cite all sources. &lt;br /&gt;
# Figure 1 is provided in the middle between two sections. Please include in the introduction section. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# When using mathematical expressions and symbols, please use the equation editor. (e.g., x*y, exy + y, sin (x+y) - x2)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution. &lt;br /&gt;
# The solution technique should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# GAMS code is unnecessary. Please provide detailed step-by-step calculation results.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each. &lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section: &lt;br /&gt;
* References&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;br /&gt;
&lt;br /&gt;
== [[Branch and bound (BB) for MINLP|Branch and Bound for MINLP]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
** Remove NetIDS&lt;br /&gt;
** Please remove abbreviations from the title (i.e. BB).&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please cite sources appropriately: References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Introduction is very short for a well-recognized topic. Please expand significantly. You may refer to the Wiki examples to get an idea on writing the Introduction to a topic.&lt;br /&gt;
# An illustration might be useful here.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The algorithm described here considers only binary integer variables. However, MINLP problems may include non-binary integer variables too. Please update the method or provide a short description of the assumptions that the MINLP problem needs to satisfy in order for the presented technique to be applicable.&lt;br /&gt;
# Use linked citations please as the Wiki template above. &lt;br /&gt;
# Please provide steps in a more organized way. Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Step 2 is missing yet it is referenced in the text multiple times. Please address this in addition to the above comment.&lt;br /&gt;
# An illustration might be useful here as well. &lt;br /&gt;
# Please explain what a Gomory Cut is. If the topic is available on optimization.cb.cornell.edu, you can link it.    &lt;br /&gt;
# The current equations seem to be simple text written in Italics. All mathematical symbols and equations should be formatted via LaTex.&lt;br /&gt;
# Please format the math programs with equations and notations using formulations in lecture notes as templates.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution.&lt;br /&gt;
# Please show a step-by-step solution in the example. The solution is incomplete. The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
# Please use the equation editor for equations or mathematical symbols. - All mathematical symbols and equations should be formatted via LaTex - this is a learning objective of the Wiki assignment. You can find some useful links on converting your equations/symbols into LaTex code here: (&amp;lt;nowiki&amp;gt;https://optimization.cbe.cornell.edu/index.php?title=Help:Contents&amp;lt;/nowiki&amp;gt;). Again, any formatting issue will incur a &amp;quot;compound&amp;quot; penalty in the grading.&lt;br /&gt;
# This example does not follow the MINLP structure discussed in the above section since binary variables are missing. Branch and bound may not be appropriate for such problems. Please provide an appropriate numerical example and solve it according to the above comments.&lt;br /&gt;
# Make sure your example is not taken from a book as that is strictly disallowed. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is not well-formatted. Please provide 3 applications and explain each in a few sentences and how BB for MINLP could be used. Also, please eliminate having multiple sections (Application, Mathematical problem, industrial application). All these could be merged together.&lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section:&lt;br /&gt;
# The sentence is hard to understand &amp;quot;a scheme that grows exponentially because&amp;quot; please use a simple language. Is it also theoretically correct? It is also not mentioned and explained earlier. Thus, please avoid introducing new concepts or terms at the end. &lt;br /&gt;
# Please use summarizing sentences to describe earlier sections instead of introducing new concepts/discussion. &lt;br /&gt;
* References&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources. A quick Google scholar search could provide relevant references.&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4930</id>
		<title>2021 Cornell Optimization Open Textbook Feedback</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4930"/>
		<updated>2021-12-07T05:12:37Z</updated>

		<summary type="html">&lt;p&gt;Asa273: /* Geometric Programming */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[Lagrangean duality|Lagrangian duality]] ==&lt;br /&gt;
* Author list, sections and TOC&lt;br /&gt;
# Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor and avoid HTML formatting on the section titles.&lt;br /&gt;
# Remove cornell ID from Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes sentences on constructing the dual problem and is referred to as Lagrangian relaxation (LR). This is incorrect, please fix the definition of LR.&lt;br /&gt;
# Definitions of LR and its relation to duality should be double checked and re-written.&lt;br /&gt;
# Only one reference is present in this section. Please add more relevant references by expanding this section.&lt;br /&gt;
# Consider merging the “introduction” and “history” sections.&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The Lagrangian variables associated with equality constraints h(x) are unbounded but the Lagrangian dual problem states them as non-negative. Please fix the same.&lt;br /&gt;
# Also to construct a dual, we do not change minimization to maximization directly. We observed such things in the examples in lecture notes due to simplification. The lagrangian dual problem would be minimize (,).&lt;br /&gt;
# Adding to the previous point, the Lagrangian is a lower bound on the original objective; the solution to the primal and dual or only equivalent if the duality gap is 0. You reference this in one section, but this is after your statement “Hence, solving the dual problem, which is a function of the Lagrangian multipliers (𝜆*) yields the same solution as the primal problem, which is a function of the original variables (x*). “. Please clarify the specific conditions that must hold for the solution of the dual to be equal to the primal’s.&lt;br /&gt;
# You refer to the “Complementary Slackness Theorem”, but don’t actually write the mathematical representation of complementary slackness. Please fix this. Also consider including the derivation of the complementary slackness condition, as it is both easy and short. Boyd is a good reference for this.&lt;br /&gt;
# Last step of the “process” subsection also needs updating according to the previous comments.&lt;br /&gt;
# The inline notations should also be typed using LaTex.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Only one dual variable is associated with each constraint. The numerical example uses two for the first and second constraint which is unnecessary. Please update it accordingly for both constraints. This particular example will only have two dual variables instead of the five dual variables used currently.&lt;br /&gt;
# All consecutive steps need to be updated since the dual variables would be updated.&lt;br /&gt;
# After substitution the nonlinear function should be further simplified. The current expression reads like a highly nonlinear function but can be easily simplified.&lt;br /&gt;
# Similar to the comments in the methodology section, inverting minimize to maximize is incorrect. Please update the dual objective function and domain of dual variables accordingly.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Bullet points could be used to state the last four real-world examples that explain the physical meaning of the primal and dual problems.&lt;br /&gt;
# Add references for the last set of applications. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# This section contains a few typos. Please fix the same.&lt;br /&gt;
* References&lt;br /&gt;
# Some citations&#039; hyperlinks are displaying.&lt;br /&gt;
&lt;br /&gt;
== [[Disjunctive inequalities|Disjunctive Inequalities]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section and semester&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# No citations are present in this section.&lt;br /&gt;
# “mixed-integer programming (MIP)” should be used instead of “multiple integer programming (MIP)”. Please fix this error.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The abbreviation MILP is not previously defined. Please fix this issue.&lt;br /&gt;
# You consistently use the negative sign instead of the NOT operator for y (-y instead of ¬y). &lt;br /&gt;
# Some inconsistencies with the spacing of variables, constraints, etc., under the “General” section that need to be fixed.&lt;br /&gt;
# Typo in “This is shown below by M1, M2, y1, and y1:” where y1 needs to be changed to y2. Why use two different Big-M variables here? Elsewhere in the Wiki you only use one so this could lead to confusion with a general audience. Also if this was taken from the lecture notes then it needs to be cited.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please reformulate and solve a complete numerical example rather than just reformulating a general example. Demonstrate the use of Big-M and Convex Hull formulation in an optimization problem that provides details such as individual steps in the problem solving process and final results. The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results.&lt;br /&gt;
# Add space between vee (V) operator and brackets in first line of Latex&lt;br /&gt;
# Please format variables correctly, for example, use &amp;lt;math&amp;gt;x_1&amp;lt;/math&amp;gt; instead of x1.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please format the equations appropriately either by using latex code or the visual editor. These images are NOT acceptable!&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# There is no conclusion presented in this section at all.&lt;br /&gt;
* References&lt;br /&gt;
# The included references have NOT been used anywhere in the Wiki. Add references for sentences that are not common knowledge and please link them appropriately with the text in Wiki. If the figures used here were not original works, you must also cite them. &lt;br /&gt;
# There are many papers on this topic. A simple Google (Scholar) search could provide you with sufficient references to cite. &lt;br /&gt;
# Many important references of this topic are missing.&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
==[[Stochastic programming|Stochastic Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell IDs&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
# This section only includes two sentences on Stochastic programming (SP), while the rest gives examples of uncertainty. Please discuss the need for SP in the presence of uncertainty. Also, discussion on robust optimization and its limitations should be removed since it is out of place.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please avoid direct inline linkbacks to Wikipedia.&lt;br /&gt;
# The symbol “xi” in the methodology subsection should be explained.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Copying a numerical example &amp;quot;entirely&amp;quot; from a textbook is inappropriate. Your team should come up with a &amp;quot;numerical&amp;quot; case.&lt;br /&gt;
# No specific application context is needed for a numerical example.&lt;br /&gt;
# The inline notations (`x1`, `s1`) should also be typed using LaTex.&lt;br /&gt;
# Label all tables with a table number for better readability. &lt;br /&gt;
# Properly format the solution table with the label attached rather than the following sentence. The solution table looks different from the others, please fix this for consistency. &lt;br /&gt;
* A section to discuss and/or illustrate the applications;&lt;br /&gt;
# I suggest eliminating citing the last name of the first author (i.e. Zhou et al.)&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# URLs of some citations are not properly formatted (not showing the hyperlinks).&lt;br /&gt;
&lt;br /&gt;
== [[Exponential transformation|Exponential Transformation]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction.&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Last sentence with 51 words is hard to read. &lt;br /&gt;
# Second Sentence: please change the word “they” as it could make the meaning ambiguous&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
# If you use abbreviations, please introduce them (e.g. NLP,MINLP)&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please explain the transformation in words along with equations&lt;br /&gt;
# Terms like posynomial should be described in detail.&lt;br /&gt;
# Please move the numerical example to the section below&lt;br /&gt;
# The “(eq 1)” is not needed here.&lt;br /&gt;
# Please expand this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the third equation of the numerical example, it is confusing to have coefficients after numbers. Some readers may read it as an exponent.&lt;br /&gt;
# Last equation in this section after “further linearization” is incorrect. This equation cannot be further linearized, please fix this.&lt;br /&gt;
# Please explain the steps in the numerical examples in detail. The step-by-step solution should be provided. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Missing part of text: “Proof of convexity of with positive definite test of Hessian…”&lt;br /&gt;
# Applications are not numerical examples. Please refer to this link for example of applications: [[Duality|https://optimization.cbe.cornell.edu/index.php?title=Duality]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
# The section current applications is redundant&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
# Under current applications, do not just use a hyperlink to describe an application. Actually describe it. And properly inline citation style should be used instead of the hyperlink. &lt;br /&gt;
# The convexification application of MINLP can be further simplified for binary variables. Please refer to the lecture slides for more information.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references by using this as Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
&lt;br /&gt;
== [[Sparse Reconstruction with Compressed Sensing|Sparse reconstruction with Compressed Sensing]] ==&lt;br /&gt;
This Wiki needs a significant rewrite. Please go through the comments for details.&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction section should include information about the problem and its implications presented briefly. Please use full sentences to write this Wiki. You may use tools like Grammarly to check sentence formation and grammar.&lt;br /&gt;
# This section includes several typos like “sub modual”. Please fix them throughout the wiki and delete them if not required.&lt;br /&gt;
# Many abbreviations are used before previously defining them. Please define these abbreviations before using them in the text.&lt;br /&gt;
# This section is incomprehensible in its current form. Please rewrite with proper comprehension.&lt;br /&gt;
# Equations and math symbols need proper reformatting. The current version reads like text (along with equations) copy-pasted from a specific source. All mathematical symbols and equations should be formatted via LaTex - this is a learning objective of the Wiki assignment. You can find some useful links on converting your equations/symbols into LaTex code here: (https://optimization.cbe.cornell.edu/index.php?title=Help:Contents).&lt;br /&gt;
# Try to place the figure at the top of the Wiki between the main text.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# I suggest the use of more formal abstract illustrations. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Equations and symbols need proper reformatting.&lt;br /&gt;
# Lemmas and theorems are not expected for this Wiki. Sparse reconstruction is a straightforward concept but is unnecessarily complicated here. Please refer to other Wiki examples to get an idea of what the Wiki should convey.&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Numerical example is missing.&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion section is missing.&lt;br /&gt;
* References&lt;br /&gt;
# The current reference list is not correctly formatted. References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Portfolio optimization|Portfolio Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell id&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introductory sentence should be rephrased. The action of minimizing the risks does not inherently maximize the gains, rather PO aims to maximize gains whilst minimizing risks. &lt;br /&gt;
# Amount of whitespace can be reduced by changing the orientation of Figure 1 and the sentences in this section.&lt;br /&gt;
# Define terms such as risk, return, portfolio, etc., when you introduce them. Assume that the reader may not know much about finance. This goes for all other sections as well. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# A brief mention of modern portfolio theory (i.e.. Markowitz) would be appropriate in this section. &lt;br /&gt;
# Several grammatical errors here involving sentence structure and clarity. Some questionable semantics (e.g., “The portfolio optimization mainly assumes two directions.”) and syntax (phrases such as “.. is as follows” should be followed by a colon). Misuse of commas and missing commas in this section. Two sentences introducing E(rp) and w should be combined into one.&lt;br /&gt;
# Use LaTex to distinguish variables written within a sentence, such as m and n. &lt;br /&gt;
# Rephrase “Cut the relevant information and conditions in the portfolio optimization, as well as the final requirements into the relevant variables, constraints and linear functions of the linear programming problem.”&lt;br /&gt;
# An explanation of a few common constraints would be helpful, rather than just including a table. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Solving the numerical example by GAMS is inappropriate. Please provide detailed step-by-step calculation results.&lt;br /&gt;
# All tables need to be labeled.&lt;br /&gt;
# Include figure number in label for consistency. &lt;br /&gt;
# Fix misspelling “dolling decision variables”. &lt;br /&gt;
# Use LaTex for all variables, equations, and constraints here.&lt;br /&gt;
# Example 2 table is hard to read, so making it bigger would help. &lt;br /&gt;
# Remove the “Using excel as the solver” part from the sentence before the solution discussion. &lt;br /&gt;
# Some grammatical errors here (phrases such as “.. is as follows” should be followed by a colon). &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Rephrase “Portfolio optimization can be used to screen investment projects that meet investors, rationally allocate investment amounts, etc.”&lt;br /&gt;
# Not sure “relevant” is the correct word choice here. &lt;br /&gt;
# You need more specific examples with the utility of portfolio optimization, this section is quite general as is. Some more detail and focus on real-world applications in the financial industry that relate to retirement planning, financial security, economic stability, etc., would be helpful. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Need some commas here.&lt;br /&gt;
# The sentence “Linear programming has been around since the 1940’s and has such a wide base of applications” is not necessary. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove white space between end of sentences and reference numbers.&lt;br /&gt;
&lt;br /&gt;
== [[Chance-constraint method|Chance constraint method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please consider correcting a few grammatical errors: “pre-planned for”, “god”, “certain levels of feasibility is guaranteed in what are”, and “Performance of a system”&lt;br /&gt;
# In “Chance-constraint”, it is capitalized randomly throughout the introduction. Please correct.   &lt;br /&gt;
# Please use technical language to briefly introduce chance-constrained programming. Words like “acts of god”, “cost of doing business” are not appropriate for a  technical Wiki.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Xi is an uncertainty/randomness variable. It is better to use clear language. &lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others.&lt;br /&gt;
# Theory is insufficient. Please expand and explain different approaches. &lt;br /&gt;
# Please add pros and cons explicitly as a list. &lt;br /&gt;
# Explain the physical meaning for examples of chance constraints along with all the notations used.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please remove this example as it is directly from this book. The example should be purely numerical without any background.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others. &lt;br /&gt;
# Please change the table format so as not to confuse the reader. &lt;br /&gt;
# Multiple instances of [Chart to be added] are missing.&lt;br /&gt;
# Example is incomplete. &lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please connect several grammatical and spelling errors: “real life application”, Energy creation, particularly in renewable sources, have high variabilities”, and others&lt;br /&gt;
# “Zhao, Xue, Cao, and Zhang”. No need to list all authors within the article. Provide a reference is sufficient. If authors must be mentioned, (Zhao et al.) should be ok.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Uniqueness and universality earlier are not clear to me. If they are not discussed earlier in the application, it would be better not to introduce new discussions in the conclusion.&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
==  [[Bayesian Optimization]] ==&lt;br /&gt;
* Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor on the section titles.&lt;br /&gt;
* Contents: The section titles should NOT be in bold to avoid strange format in TOC. Any formatting issue will incur a penalty in the grading.&lt;br /&gt;
* Author list: Remove cornell ID, Please check names&lt;br /&gt;
* Introduction&lt;br /&gt;
# The introduction is too general and not substantial enough. For example, simply saying BayesOpt is useful when the objective function is unknown obscures exactly HOW it is useful (namely, computational efficiency in applications where ground truth sampling is expensive). Discussion on applications should be moved to a separate section.&lt;br /&gt;
# Machine learning rarely includes black-box functions to be optimized. Bayesian optimization is almost never used for optimizing ML loss functions but can instead be used for hyperparameter optimization. Please update such claims in this section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Captions need reformatting.&lt;br /&gt;
# Consider italicizing keywords rather than bolding.&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Discussion on acquisition functions should include comparisons, tradeoffs, and reasons to use one over the other. Should also note that expected improvement is the most widely used in practice, and explain.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Please write equations in the Wiki instead of attaching images for equations.&lt;br /&gt;
# Acquisition function figure could be made larger and clearer to improve readability.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any references to functions or methods in code ‘e.g. fmin’ should be properly formatted as code-stylized text.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Avoid including a figure of the code for this example and explicitly describe the steps to the modeling and solution process instead. &lt;br /&gt;
# Avoid pronouns such as “our” and “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please do not use brackets to enclose lists.&lt;br /&gt;
# Some claims here should be supported by references. Please cite each source after its sentence. &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to “pop” machine learning blogs where anyone can be an author. (e.g. towardsdatascience)&lt;br /&gt;
# All references are URLs. Please cite publications and literature.&lt;br /&gt;
# A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
Notes on grammar: Needs some work. Several instances where colons are inappropriately inserted mid sentence or in subheadings. Explanations are not terse. Several instances of switching between personal and impersonal style of writing, which is distracting.&lt;br /&gt;
&lt;br /&gt;
== [[Conjugate gradient methods]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Introduction&lt;br /&gt;
# All inline notations (e.g., `x`, `A`) should be typed using LaTex.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
# Is Gauss-Newton no longer referenced?&lt;br /&gt;
# Theorems listed in the first section should be accompanied with high level explanation, not just a list of the theorems themselves. The page should read like an article, with proper flow.&lt;br /&gt;
# Please indent equation blocks.&lt;br /&gt;
# Please properly format pseudocode.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Steps should be accompanied with explanation, or reference to the corresponding step in the pseudocode.&lt;br /&gt;
# Please properly format in a more organized manner, aligning equations appropriately and demarcating steps appropriately.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
# Consider including 2 additional examples of applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Consider adding future research directions&lt;br /&gt;
* References&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Too few references.&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Geometric programming|Geometric Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Examples of applications in this section use the same reference. Please cite their individual sources.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The symbol denoting the domain in the definition of a monomial is unclear. Please clarify it or fix this if it is incorrect.&lt;br /&gt;
# Definition of posynomial refers to section 2.1 which is missing from the Wiki (sections are not numbered in the main text).&lt;br /&gt;
# In the generalized posynomial subsection, bullet points do not tell us why h(x) is posynomial. Either provide reasons or simply state that h(x) is posynomial. Also explain why h3 is a generalized posynomial.&lt;br /&gt;
# Additional theory on the feasibility analysis could be provided in this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the transformation example, the last two constraints could also be simplified. Please update them as well.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The figure in this section needs to be labeled. &lt;br /&gt;
# The figure needs to be resized and perhaps aligned to the center.  &lt;br /&gt;
* A conclusion section:&lt;br /&gt;
# Please avoid vague language such as: “This makes”.&lt;br /&gt;
# Please avoid opinionated statements: “one of the best ways”.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# This Wiki has very few references. A quick Google Scholar search may provide relevant references.&lt;br /&gt;
&lt;br /&gt;
== [[Adam]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Some grammatical errors here, mostly related to the need for commas in certain places (e.g., “Before Adam..”).&lt;br /&gt;
# Some minor errors with parts of speech throughout the section, need to revisit phrases such as “which has broader scope in future for”, etc. &lt;br /&gt;
# Try splitting up some of the longer sentences in this section, a couple are hard to read.&lt;br /&gt;
# Avoid definitive statements about Adam being the best or always better solver, as this is simply not true (the choice of the “best” optimizer is setting-dependent). Use language such as “Research has shown that Adam has demonstrated superior experimental performance over..” and then cite academic references to back this claim. &lt;br /&gt;
# What does adam stand for? Introduction is insufficient. Please expand. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Revise grammar here, noticing some missing commas and uncapitalized word after period.&lt;br /&gt;
# Rephrase “second one is to update the old position with the updated position”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section, and actual subscripts instead of “m_t”, etc. &lt;br /&gt;
# Avoid inserting inline citations after words like “According to..” or “This article..” as it is a bit informal. This could be rephrased or changed to something like “According to author,^[2] …” with author name inserted. &lt;br /&gt;
# Remove white space before the period in RMSP discussion.&lt;br /&gt;
# Please provide a pseudocode. &lt;br /&gt;
# Please use list the two methods here “Adam is a combination of two gradient descent methods which are explained below”&lt;br /&gt;
# Please expand the theory section significantly. Theoretical convergence properties should be discussed, even if briefly.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Same comment as before, consider replacing inline citations after words like “According to..”. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to blogs and use peer-reviewed academic references instead. &lt;br /&gt;
# Too few references.&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[A-star algorithm|a* algorithm]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor and avoid HTML formatting on the section titles.&lt;br /&gt;
* An introduction of the topic:&lt;br /&gt;
# Weird spacing between paragraphs. Please fix this issue.&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. &lt;br /&gt;
# Please consider correcting a few grammatical errors: “Optimal path”, “cross country”, missing period at end of first paragraph, other random capitalizations, etc.&lt;br /&gt;
# There are no citations in the introduction. Please cite every source.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add the mathematical description of the algorithm.&lt;br /&gt;
# Reference style varies in sentences. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please fix grammatical and spelling errors as (“from current position to the goal”, “There are a lot of discussions”, etc). Also, many hyphens are missing as “non playable”.&lt;br /&gt;
# In algorithms, it is a standard to add high-level description (i.e. pseudocode or flowchart). Please incorporate it. &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section (e.g., “f(n)...”, “h(n)..”, etc.). This goes for other sections as well.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The numerical example does not show the full computations the algorithm performs. Please show the computation on a smaller example.&lt;br /&gt;
# Instead of writing things like “The above image..”, label each figure and use the figure number to refer to it in text. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# No references in the applications. Please cite every source &lt;br /&gt;
# Preferably, add at least an additional application.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion should summarize descriptions. Please modify it to provide a summary.  &lt;br /&gt;
# Please pay attention to the length and structure of sentences here and in the full page. First sentence is hard to read.&lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format and are not linked correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Incorrect reference style. Please follow the example and use the template.&lt;br /&gt;
&lt;br /&gt;
== [[Job shop scheduling|Job-Shop Scheduling Problem]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The current introduction to the jobshop scheduling problem has only two sentences in addition to the parameter description. Introduction typically contains information about the problem, its importance in the real-world, and some information about the solution techniques and their types to solve the problem. Please add some information that covers the above.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# It is unclear whether the assumptions stated in this section are required to apply the following solution techniques. Please clarify the same. Also use complete sentences to state them.&lt;br /&gt;
# The branch and bounds method described in this section only discusses the solution technique for problems with one machines. However, branch and bound is a general technique that can be applied to any MILP problems with varying scales. Please update the “methods” section to be as general as possible.&lt;br /&gt;
# Since this Wiki focuses on jobshop scheduling, at least two methods are expected. Branch and bound is a general MILP technique, so, it is recommended to add a tailored technique that can only solve specific jobshop scheduling problems. Solving the numerical example with this technique is not necessary.&lt;br /&gt;
# Reference to the branch and bound technique described in this section is a “youtube” video. Please add references in literature that describe this method in detail. The method used in this video is highly tailored for a single machine application. This is also an incorrect way to cite a reference. Please keep this section as general as possible.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section and all other sections as well.&lt;br /&gt;
# Check grammar in this section. For example, phrases like “are as follows” need to be followed by a colon and not a period. &lt;br /&gt;
# Consider rewriting the assumptions as a list in this section. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The example used in this section is exactly the same as the one in the youtube video. Please use a modification of this example or choose another example/method to demonstrate the solution technique. Your team should ideally create a numerical example independently. If you take a numerical example directly from a particular source, you will need to get explicit permission from the textbook author in writing and share that written permission with the instructors.&lt;br /&gt;
# The figure in this section is not numbered when all others are. Relabel this figure for consistency and its number to refer to it in-text.&lt;br /&gt;
# A numerical example should be simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments).&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section should only focus on real-world applications of the jobshop scheduling problem. But currently, this section includes additional information on solution techniques/complexity that is appropriate for the Introduction section. Please discuss the applications of the problem in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# The meaning of  “Operations applications” is unclear. Please explain or update if necessary.&lt;br /&gt;
# The current conclusion section does not properly summarize the problem. Please refer to other Wiki examples for an idea to update the section accordingly.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Please reference media sources like reference 5 appropriately.&lt;br /&gt;
# A simple Google Scholar search would give you many &amp;quot;formal&amp;quot; references.&lt;br /&gt;
&lt;br /&gt;
== [[Optimization in game theory]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: remove cornell IDs. &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Why only a subsection on &amp;quot;Nash Equilibrium&amp;quot; is included in &amp;quot;Theory&amp;quot; section? Please re-format.&lt;br /&gt;
# Please edit references.&lt;br /&gt;
# Add a mathematical description of the problem and a pseudocode/flowchart for the Lemke-Howson algorithm.  &lt;br /&gt;
# Rephrase “This algorithm utilizes iterated pivoting much like the simplex algorithm used in the simplex algorithm used in linear programming”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please organize the last part in a more readable format. Questions may be in bold and numbered, answers are more direct, etc.&lt;br /&gt;
# Remember to cite all images and tables. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Very good, link the reference and cite all sources. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summarizing especially from theory sentences and avoid long sentences. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Incorrect reference style. Please correct.&lt;br /&gt;
&lt;br /&gt;
== [[Trust-region methods]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
# Remove cornell IDs. Author is also spelled incorrectly. &lt;br /&gt;
# Add the course section.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xk”, “f`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “we”. This goes for all other sections as well.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Organization of ideas in this section needs work.&lt;br /&gt;
# You have not defined explicitly why the Cauchy point is important to compute beyond a vague allusion to performance improvements, which is also wrong (it is useful because of its guarantees for convergence, not performance) It is also misspelled.&lt;br /&gt;
# Each approach should have accompanying explanation and motivation for why it is being discussed. It is not enough to outline the algorithm.&lt;br /&gt;
# Please make sure symbols are properly subscripted and superscripted (e.g. “pk” should be “p_k”&lt;br /&gt;
# Please format the algorithm in proper algorithmic pseudocode format.&lt;br /&gt;
# Little to no discussion on global convergence guarantees&lt;br /&gt;
# Please include discussion about the advantages and disadvantages of the algorithm&lt;br /&gt;
# Fix typo “couchy point”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any code functions (uminfunc) should have proper text formatting.&lt;br /&gt;
# The graph needs a better caption explaining how the axes are labeled and what data points are being shown.&lt;br /&gt;
# Please increase the quality of the figure. It is hard to see the red line. &lt;br /&gt;
# Add citation to “The Rosenbrock function is a non-convex function, introduced by Howard H. Rosenbrock in 1960, which is often used as a performance test problem for optimization algorithms.”&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The content in this section as it is currently does NOT describe applications, but rather different approaches within the trust region methodology. Please provide specific applications (e.g. TRPO in reinforcement learning).&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summary, future research directions for example is a good start.&lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style.&lt;br /&gt;
# Please consider having the references as this Wiki template, &amp;lt;nowiki&amp;gt;https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
*There are numerous misspellings, grammatical errors, and incorrect claims. Please fix these.&lt;br /&gt;
&lt;br /&gt;
== [[Momentum]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Apart from an explanation on momentum, it is necessary to briefly point out the limitations of SGD and why momentum could help with these limitations. Please update it accordingly.&lt;br /&gt;
# Remove bold on “Momentum”.&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Equation formatting is very poor and should be formalized.&lt;br /&gt;
# It is important to use technical language for this Wiki. Although a layman’s explanation is appreciated, it would be better to skip using words like “zig zagging”. Try to explain all concepts in a technical language with few simplifications but NOT vice versa.&lt;br /&gt;
# The definition of the update rule for SGD with momentum looks incorrect, specifically the first expression. Please fix it and also explain all the parameters used.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “W”, “V`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “you”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;. Since writing all iterations is not feasible, at least present a few iterations for both cases.&lt;br /&gt;
# Please try to label the plots that explains what each line color means.&lt;br /&gt;
# Starting point for SGD with momentum is different in explanation and the table. Please fix the same.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please use correct terminology like “optimizing non-convex functions” and not “training non-convex models”.&lt;br /&gt;
# Adam, Adadelta, and RMSprop are variants of SGD that already use momentum. Please double check the writing and update if necessary.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please refrain from using words like “zig zag” effects.&lt;br /&gt;
* References&lt;br /&gt;
# Almost all references used are URLs. Please try to add journal/conference articles or books for references, instead of directly citing the URLs. Please check the list below and run a quick Google (Scholar) search to identify relevant literature.&lt;br /&gt;
&lt;br /&gt;
== [[Stochastic dynamic programming|Stochastic Dynamic programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions &lt;br /&gt;
# Remove the grey box background of equations.&lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Outer-approximation (OA)|Outer-approximation]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic &lt;br /&gt;
# See formatting guideline below&lt;br /&gt;
# Avoid opinionated statements such as “MINLP problems are usually the hardest to solve”.&lt;br /&gt;
# Rearrange the text such that the MINLP formulation is in the theory section and keep the introduction in words only.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Consider left aligning equations and optimization problem formulations by the “=”. See [[Stochastic programming|https://optimization.cbe.cornell.edu/index.php?title=Stochastic_programming]] for an example&lt;br /&gt;
# The sentence “The Outer-Approximation (OA) algorithm was first proposed by Duran and and Grossmann in 1986 to solve MINLP problems.” needs a reference. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# “Minimize” and “subject to” should be “min” and “s.t.” in MathType&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Does not explicitly point out why OA is applicable (and/or preferred) in these applications, rather than other MINLP approaches (show that the problem formulations are amenable to a solution approach through OA)&lt;br /&gt;
# The sentence “... an active research area and there exists a vast number of applications in fields such as engineering, computational chemistry, and finance.” needs references. &lt;br /&gt;
# Posting GAMS code on the page is generally inappropriate and discouraged. Please check with the TAs or me if you have a strong desire to post GAMS codes on the Wiki page. A typical textbook should not be limited to a specific software package. If the GAMS code must be posted, please also post ALL other software implementation versions, such as Pyomo and JuliaOPT, among others.&lt;br /&gt;
# Consider reformatting to make steps more readable. Inserting spaces and breaking down steps would help. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Too short. Consider discussion on future research direction and discussion on uncertainty&lt;br /&gt;
# Please review abbreviations throughout the page. Why is MINLP redefined here? “Outer-Approximation is a well known efficient approach for solving convex mixed-integer nonlinear programs (MINLP)”. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove &amp;quot;Template:Reflist&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== [[Unit commitment problem]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction and avoid discussions of examples or specific applications in this section.&lt;br /&gt;
# The sentence “Nonlinear, Non-convex programming optimization problem.” doesn’t make sense by itself and Non-convex shouldn’t be capitalized.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Figure/image format should be revised to better display the content.&lt;br /&gt;
# Uppercase characters are used randomly (e.g., “non-convex transmission Constraints”) . Please follow correct language conventions for sentence structure.&lt;br /&gt;
# Avoid inserting inline citations after words like “written in matrix form as equation [3]..” or “presented in [3]...” as it is a bit informal when you don’t explicitly name the subject. Also these two sentences are grammatically incorrect and appear to be missing an ending period and comma, respectively. &lt;br /&gt;
# Don’t say “written in matrix form as equation..” and just cite the reference, actually write out the equation. &lt;br /&gt;
# Properly label the figure in this section with a figure number and improve visibility by making it larger. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Label the figures in this section properly with figure numbers.&lt;br /&gt;
# Fix typo “while minimize” to “while minimizing”. &lt;br /&gt;
# Avoid pronouns such as “we”. &lt;br /&gt;
# Use the equation editor when typing equations. &lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
# The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# I suggest changing the order of the subtitles here. For example, Single-Period Unit Commitment. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Frank-Wolfe]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# I suggest highlighting disadvantages along with advantages. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# “[n x 1] matrix” please use the equation editor to express mathematical descriptions and symbols (p,b, etc)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please show at least a few iterations. Even for smaller examples if needed. Report the final solution. &lt;br /&gt;
# Please use the LaTex code or equation editor for min and include s.t., etc.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. For your example, please explicitly state that the derivative is taken etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications: &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Same as the introduction. Pros and cons should be evaluated together!&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Line search methods|Line Search Method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Expand the introduction and avoid discussion on some of the specific steps in the solution process. &lt;br /&gt;
# Provide references here. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The phrase “are as follows” in the steepest descent method discussion needs to be followed by a colon. &lt;br /&gt;
# Rephrase “has a nice convergence theory” and cite a reference for this claim.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Add citation after “.. proposed by Phillip Wolfe in 1969.”&lt;br /&gt;
# Figure 1 is between two sections. Please fix this issue. &lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# Add some space between iterations or subsection break&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# Too few references in this section. &lt;br /&gt;
# Last paragraph makes some claims without references. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Piecewise linear approximation|Piecewise Linear Approximation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The content of this section is good, but there are some issues with sentence clarity and some other grammatical errors. Please revisit this section and make changes accordingly. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Fix typo “to force the x’ values become associated with”. &lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Some of these longer sentences are hard to read. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Expand the conclusion section to be longer than one sentence. The conclusion section to include a brief summary of what was discussed above, an emphasis on it’s significance, and a brief discussion of future extensions and research direction if applicable.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to sources when possible.&lt;br /&gt;
&lt;br /&gt;
== [[Mathematical programming with equilibrium constraints|Mathematical Programming with Equilibrium constraints]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes several terms like variational inequalities, constraint qualifications that were not discussed in the class. Please add a sentence to explain them before using them.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The meaning of parameter vector x is unclear. Please add more information or update if necessary.&lt;br /&gt;
# Equations and symbols in the PIPA subsection are not formatted correctly. Please use the same formatting for all equations, so they read as mathematical equations and not text. This goes for all other sections as well.&lt;br /&gt;
# Use equations instead of images to represent math programs and equations in the Implicit Descent and SQP subsection.&lt;br /&gt;
# Apart from the steps for each solution technique, please also add a few sentences that describe each method.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please define the terms like NCP, MP before abbreviating them. Also try not to unnecessarily abbreviate simple terms.&lt;br /&gt;
# Equations should be typed by LaTex. Images for equations are unacceptable.&lt;br /&gt;
# GAMS code is strongly discouraged. Please solve the problem &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The selected numerical example is fine but is directly solved with the MPEC solver in GAMS. Try to solve it manually like the homework/in-class problems step by step using the steps described in the previous section by choosing any of the methods.&lt;br /&gt;
# Avoid using figures in the equations (subject to etc)&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Add references to “power management, highway pricing, chemical process engineering, and traffic planning.”&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# This Wiki contains very few references. Please check the list below and run a quick Google (Scholar) search to identify relevant literature.&lt;br /&gt;
&lt;br /&gt;
== [[Wing shape optimization|Wing shape Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC. Any formatting issue will incur a penalty in the grading.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction is missing several references (e.g., “software packages like computational fluid dynamics..”, sentences containing things that aren’t common knowledge, performance claims, etc.)&lt;br /&gt;
# Avoid discussion involving finer details of subject methods in this section. &lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. Same applies to box of content!&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Properly cite the CFD package, don’t just include a link. &lt;br /&gt;
# Properly label the figure with a figure number.&lt;br /&gt;
# Consider removing white space between isolated sentences to improve readability. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# If you’ve already defined an abbreviation (CFD), there is no need to define it again. Just use the abbreviation.&lt;br /&gt;
# Avoid pronouns such as “we” or “they”.&lt;br /&gt;
# Phrases like “under the following” need to be followed by a colon.&lt;br /&gt;
# Properly label the figure with a figure number and consider making them larger to improve visibility. Call the reader&#039;s attention to the figures in text by referencing the figure number.&lt;br /&gt;
# “As seen in the video below” is stated yet there are only images present and it may be initially unclear to the reader which figure is being referenced here. &lt;br /&gt;
# Avoid inserting inline citations like “[4] introduces an..”  as it is a bit informal when you don’t explicitly name the subject.&lt;br /&gt;
# Don’t just cite the reference when discussing the problem formulation, explicitly write the model formulation and solution process using LaTex or equation visual editor.&lt;br /&gt;
# Your team should ideally create a numerical example independently. If you take a numerical example directly from a textbook, etc., you will need to get explicit permission from the author in writing and share that written permission with me.&lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
# The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Some characters are randomly capitalized in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# These variables should be defined before the conclusion section, they are out of place here. Also, please use normal text when explaining variables except for the variable symbol. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Interior-point method for NLP|Interior point method for NLP]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Primal-Dual formulation and comparison to the Barrier Method is not discussed.&lt;br /&gt;
# Include brief discussion about big O convergence rates.&lt;br /&gt;
# Need discussion about the concept of “central path” and the notion of self concordance&lt;br /&gt;
# Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Graphs and images are incorrectly formatted to the page. Consider proper alignment with respect to the text body.&lt;br /&gt;
# Use explicitly typed Latex equations instead of images to represent math programs and equations.&lt;br /&gt;
# Fix typo “optimisation”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xi ”, “μ”, etc.).&lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# There are formatting issues with figures 2,3. Please make sure to embed them within their respective sections. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section &lt;br /&gt;
# Minor character code typos in the conclusion.&lt;br /&gt;
# Also, please add more discussion in this section. Future research directions is a good start.&lt;br /&gt;
# There is a box &amp;quot;􏰐&amp;quot;&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[AdaGrad|Adagrad]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Include discussion on its variants (most important is AdaDelta).&lt;br /&gt;
# Include disadvantages of Adagrad, since this provides motivation for the discussion on the variants and improvements of Adagrad&lt;br /&gt;
# Include comparisons to other popular optimizers (particularly important is comparisons to regular SGD and Adam)&lt;br /&gt;
# Different convergence rates are possible depending on the setting where Adagrad is used, but this is not mentioned on the page currently. As such the regret bound section should be more thoroughly explained.&lt;br /&gt;
# Algorithm image is blurry. Either increase the fidelity or write the pseudocode directly in the wiki editor.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the first sentence, “..take the following numerical example” should be followed by a colon. &lt;br /&gt;
# Fix typo “trayectory”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is too short; include specific applications in which input features are sparse and Adagrad excels.&lt;br /&gt;
# Add reference to the claim “Mainly, it is a good choice for deep learning models with sparse input features”.&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References &lt;br /&gt;
&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources (even if the base algorithm itself comes from a singular paper)&lt;br /&gt;
&lt;br /&gt;
== [[McCormick envelopes|McCormick Envelopes]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: OK but I suggest removing NetID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# First sentence is hard to read. Please consider keeping sentences below 25-30 words. &lt;br /&gt;
# No references provided. Please cite all sources. &lt;br /&gt;
# Figure 1 is provided in the middle between two sections. Please include in the introduction section. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# When using mathematical expressions and symbols, please use the equation editor. (e.g., x*y, exy + y, sin (x+y) - x2)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution. &lt;br /&gt;
# The solution technique should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# GAMS code is unnecessary. Please provide detailed step-by-step calculation results.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each. &lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section: &lt;br /&gt;
* References&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;br /&gt;
&lt;br /&gt;
== [[Branch and bound (BB) for MINLP|Branch and Bound for MINLP]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
** Remove NetIDS&lt;br /&gt;
** Please remove abbreviations from the title (i.e. BB).&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please cite sources appropriately: References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Introduction is very short for a well-recognized topic. Please expand significantly. You may refer to the Wiki examples to get an idea on writing the Introduction to a topic.&lt;br /&gt;
# An illustration might be useful here.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The algorithm described here considers only binary integer variables. However, MINLP problems may include non-binary integer variables too. Please update the method or provide a short description of the assumptions that the MINLP problem needs to satisfy in order for the presented technique to be applicable.&lt;br /&gt;
# Use linked citations please as the Wiki template above. &lt;br /&gt;
# Please provide steps in a more organized way. Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Step 2 is missing yet it is referenced in the text multiple times. Please address this in addition to the above comment.&lt;br /&gt;
# An illustration might be useful here as well. &lt;br /&gt;
# Please explain what a Gomory Cut is. If the topic is available on optimization.cb.cornell.edu, you can link it.    &lt;br /&gt;
# The current equations seem to be simple text written in Italics. All mathematical symbols and equations should be formatted via LaTex.&lt;br /&gt;
# Please format the math programs with equations and notations using formulations in lecture notes as templates.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution.&lt;br /&gt;
# Please show a step-by-step solution in the example. The solution is incomplete. The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
# Please use the equation editor for equations or mathematical symbols. - All mathematical symbols and equations should be formatted via LaTex - this is a learning objective of the Wiki assignment. You can find some useful links on converting your equations/symbols into LaTex code here: (&amp;lt;nowiki&amp;gt;https://optimization.cbe.cornell.edu/index.php?title=Help:Contents&amp;lt;/nowiki&amp;gt;). Again, any formatting issue will incur a &amp;quot;compound&amp;quot; penalty in the grading.&lt;br /&gt;
# This example does not follow the MINLP structure discussed in the above section since binary variables are missing. Branch and bound may not be appropriate for such problems. Please provide an appropriate numerical example and solve it according to the above comments.&lt;br /&gt;
# Make sure your example is not taken from a book as that is strictly disallowed. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is not well-formatted. Please provide 3 applications and explain each in a few sentences and how BB for MINLP could be used. Also, please eliminate having multiple sections (Application, Mathematical problem, industrial application). All these could be merged together.&lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section:&lt;br /&gt;
# The sentence is hard to understand &amp;quot;a scheme that grows exponentially because&amp;quot; please use a simple language. Is it also theoretically correct? It is also not mentioned and explained earlier. Thus, please avoid introducing new concepts or terms at the end. &lt;br /&gt;
# Please use summarizing sentences to describe earlier sections instead of introducing new concepts/discussion. &lt;br /&gt;
* References&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources. A quick Google scholar search could provide relevant references.&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4802</id>
		<title>2021 Cornell Optimization Open Textbook Feedback</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4802"/>
		<updated>2021-12-06T03:10:32Z</updated>

		<summary type="html">&lt;p&gt;Asa273: /* McCormick Envelopes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[Lagrangean duality|Lagrangian duality]] ==&lt;br /&gt;
* Author list, sections and TOC&lt;br /&gt;
# Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor and avoid HTML formatting on the section titles.&lt;br /&gt;
# Remove cornell ID from Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes sentences on constructing the dual problem and is referred to as Lagrangian relaxation (LR). This is incorrect, please fix the definition of LR.&lt;br /&gt;
# Definitions of LR and its relation to duality should be double checked and re-written.&lt;br /&gt;
# Only one reference is present in this section. Please add more relevant references by expanding this section.&lt;br /&gt;
# Consider merging the “introduction” and “history” sections.&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The Lagrangian variables associated with equality constraints h(x) are unbounded but the Lagrangian dual problem states them as non-negative. Please fix the same.&lt;br /&gt;
# Also to construct a dual, we do not change minimization to maximization directly. We observed such things in the examples in lecture notes due to simplification. The lagrangian dual problem would be minimize (,).&lt;br /&gt;
# Adding to the previous point, the Lagrangian is a lower bound on the original objective; the solution to the primal and dual or only equivalent if the duality gap is 0. You reference this in one section, but this is after your statement “Hence, solving the dual problem, which is a function of the Lagrangian multipliers (𝜆*) yields the same solution as the primal problem, which is a function of the original variables (x*). “. Please clarify the specific conditions that must hold for the solution of the dual to be equal to the primal’s.&lt;br /&gt;
# You refer to the “Complementary Slackness Theorem”, but don’t actually write the mathematical representation of complementary slackness. Please fix this. Also consider including the derivation of the complementary slackness condition, as it is both easy and short. Boyd is a good reference for this.&lt;br /&gt;
# Last step of the “process” subsection also needs updating according to the previous comments.&lt;br /&gt;
# The inline notations should also be typed using LaTex.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Only one dual variable is associated with each constraint. The numerical example uses two for the first and second constraint which is unnecessary. Please update it accordingly for both constraints. This particular example will only have two dual variables instead of the five dual variables used currently.&lt;br /&gt;
# All consecutive steps need to be updated since the dual variables would be updated.&lt;br /&gt;
# After substitution the nonlinear function should be further simplified. The current expression reads like a highly nonlinear function but can be easily simplified.&lt;br /&gt;
# Similar to the comments in the methodology section, inverting minimize to maximize is incorrect. Please update the dual objective function and domain of dual variables accordingly.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Bullet points could be used to state the last four real-world examples that explain the physical meaning of the primal and dual problems.&lt;br /&gt;
# Add references for the last set of applications. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# This section contains a few typos. Please fix the same.&lt;br /&gt;
* References&lt;br /&gt;
# Some citations&#039; hyperlinks are displaying.&lt;br /&gt;
&lt;br /&gt;
== [[Disjunctive inequalities|Disjunctive Inequalities]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section and semester&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# No citations are present in this section.&lt;br /&gt;
# “mixed-integer programming (MIP)” should be used instead of “multiple integer programming (MIP)”. Please fix this error.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The abbreviation MILP is not previously defined. Please fix this issue.&lt;br /&gt;
# You consistently use the negative sign instead of the NOT operator for y (-y instead of ¬y). &lt;br /&gt;
# Some inconsistencies with the spacing of variables, constraints, etc., under the “General” section that need to be fixed.&lt;br /&gt;
# Typo in “This is shown below by M1, M2, y1, and y1:” where y1 needs to be changed to y2. Why use two different Big-M variables here? Elsewhere in the Wiki you only use one so this could lead to confusion with a general audience. Also if this was taken from the lecture notes then it needs to be cited.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please reformulate and solve a complete numerical example rather than just reformulating a general example. Demonstrate the use of Big-M and Convex Hull formulation in an optimization problem that provides details such as individual steps in the problem solving process and final results. The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results.&lt;br /&gt;
# Add space between vee (V) operator and brackets in first line of Latex&lt;br /&gt;
# Please format variables correctly, for example, use &amp;lt;math&amp;gt;x_1&amp;lt;/math&amp;gt; instead of x1.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please format the equations appropriately either by using latex code or the visual editor. These images are NOT acceptable!&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# There is no conclusion presented in this section at all.&lt;br /&gt;
* References&lt;br /&gt;
# The included references have NOT been used anywhere in the Wiki. Add references for sentences that are not common knowledge and please link them appropriately with the text in Wiki. If the figures used here were not original works, you must also cite them. &lt;br /&gt;
# There are many papers on this topic. A simple Google (Scholar) search could provide you with sufficient references to cite. &lt;br /&gt;
# Many important references of this topic are missing.&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
==[[Stochastic programming|Stochastic Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell IDs&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
# This section only includes two sentences on Stochastic programming (SP), while the rest gives examples of uncertainty. Please discuss the need for SP in the presence of uncertainty. Also, discussion on robust optimization and its limitations should be removed since it is out of place.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please avoid direct inline linkbacks to Wikipedia.&lt;br /&gt;
# The symbol “xi” in the methodology subsection should be explained.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Copying a numerical example &amp;quot;entirely&amp;quot; from a textbook is inappropriate. Your team should come up with a &amp;quot;numerical&amp;quot; case.&lt;br /&gt;
# No specific application context is needed for a numerical example.&lt;br /&gt;
# The inline notations (`x1`, `s1`) should also be typed using LaTex.&lt;br /&gt;
# Label all tables with a table number for better readability. &lt;br /&gt;
# Properly format the solution table with the label attached rather than the following sentence. The solution table looks different from the others, please fix this for consistency. &lt;br /&gt;
* A section to discuss and/or illustrate the applications;&lt;br /&gt;
# I suggest eliminating citing the last name of the first author (i.e. Zhou et al.)&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# URLs of some citations are not properly formatted (not showing the hyperlinks).&lt;br /&gt;
&lt;br /&gt;
== [[Exponential transformation|Exponential Transformation]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction.&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Last sentence with 51 words is hard to read. &lt;br /&gt;
# Second Sentence: please change the word “they” as it could make the meaning ambiguous&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
# If you use abbreviations, please introduce them (e.g. NLP,MINLP)&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please explain the transformation in words along with equations&lt;br /&gt;
# Terms like posynomial should be described in detail.&lt;br /&gt;
# Please move the numerical example to the section below&lt;br /&gt;
# The “(eq 1)” is not needed here.&lt;br /&gt;
# Please expand this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the third equation of the numerical example, it is confusing to have coefficients after numbers. Some readers may read it as an exponent.&lt;br /&gt;
# Last equation in this section after “further linearization” is incorrect. This equation cannot be further linearized, please fix this.&lt;br /&gt;
# Please explain the steps in the numerical examples in detail. The step-by-step solution should be provided. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Missing part of text: “Proof of convexity of with positive definite test of Hessian…”&lt;br /&gt;
# Applications are not numerical examples. Please refer to this link for example of applications: [[Duality|https://optimization.cbe.cornell.edu/index.php?title=Duality]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
# The section current applications is redundant&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
# Under current applications, do not just use a hyperlink to describe an application. Actually describe it. And properly inline citation style should be used instead of the hyperlink. &lt;br /&gt;
# The convexification application of MINLP can be further simplified for binary variables. Please refer to the lecture slides for more information.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references by using this as Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
&lt;br /&gt;
== [[Sparse Reconstruction with Compressed Sensing|Sparse reconstruction with Compressed Sensing]] ==&lt;br /&gt;
This Wiki needs a significant rewrite. Please go through the comments for details.&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction section should include information about the problem and its implications presented briefly. Please use full sentences to write this Wiki. You may use tools like Grammarly to check sentence formation and grammar.&lt;br /&gt;
# This section includes several typos like “sub modual”. Please fix them throughout the wiki and delete them if not required.&lt;br /&gt;
# Many abbreviations are used before previously defining them. Please define these abbreviations before using them in the text.&lt;br /&gt;
# This section is incomprehensible in its current form. Please rewrite with proper comprehension.&lt;br /&gt;
# Equations and math symbols need proper reformatting. The current version reads like text (along with equations) copy-pasted from a specific source. All mathematical symbols and equations should be formatted via LaTex - this is a learning objective of the Wiki assignment. You can find some useful links on converting your equations/symbols into LaTex code here: (https://optimization.cbe.cornell.edu/index.php?title=Help:Contents).&lt;br /&gt;
# Try to place the figure at the top of the Wiki between the main text.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# I suggest the use of more formal abstract illustrations. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Equations and symbols need proper reformatting.&lt;br /&gt;
# Lemmas and theorems are not expected for this Wiki. Sparse reconstruction is a straightforward concept but is unnecessarily complicated here. Please refer to other Wiki examples to get an idea of what the Wiki should convey.&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Numerical example is missing.&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion section is missing.&lt;br /&gt;
* References&lt;br /&gt;
# The current reference list is not correctly formatted. References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Portfolio optimization|Portfolio Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell id&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introductory sentence should be rephrased. The action of minimizing the risks does not inherently maximize the gains, rather PO aims to maximize gains whilst minimizing risks. &lt;br /&gt;
# Amount of whitespace can be reduced by changing the orientation of Figure 1 and the sentences in this section.&lt;br /&gt;
# Define terms such as risk, return, portfolio, etc., when you introduce them. Assume that the reader may not know much about finance. This goes for all other sections as well. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# A brief mention of modern portfolio theory (i.e.. Markowitz) would be appropriate in this section. &lt;br /&gt;
# Several grammatical errors here involving sentence structure and clarity. Some questionable semantics (e.g., “The portfolio optimization mainly assumes two directions.”) and syntax (phrases such as “.. is as follows” should be followed by a colon). Misuse of commas and missing commas in this section. Two sentences introducing E(rp) and w should be combined into one.&lt;br /&gt;
# Use LaTex to distinguish variables written within a sentence, such as m and n. &lt;br /&gt;
# Rephrase “Cut the relevant information and conditions in the portfolio optimization, as well as the final requirements into the relevant variables, constraints and linear functions of the linear programming problem.”&lt;br /&gt;
# An explanation of a few common constraints would be helpful, rather than just including a table. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Solving the numerical example by GAMS is inappropriate. Please provide detailed step-by-step calculation results.&lt;br /&gt;
# All tables need to be labeled.&lt;br /&gt;
# Include figure number in label for consistency. &lt;br /&gt;
# Fix misspelling “dolling decision variables”. &lt;br /&gt;
# Use LaTex for all variables, equations, and constraints here.&lt;br /&gt;
# Example 2 table is hard to read, so making it bigger would help. &lt;br /&gt;
# Remove the “Using excel as the solver” part from the sentence before the solution discussion. &lt;br /&gt;
# Some grammatical errors here (phrases such as “.. is as follows” should be followed by a colon). &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Rephrase “Portfolio optimization can be used to screen investment projects that meet investors, rationally allocate investment amounts, etc.”&lt;br /&gt;
# Not sure “relevant” is the correct word choice here. &lt;br /&gt;
# You need more specific examples with the utility of portfolio optimization, this section is quite general as is. Some more detail and focus on real-world applications in the financial industry that relate to retirement planning, financial security, economic stability, etc., would be helpful. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Need some commas here.&lt;br /&gt;
# The sentence “Linear programming has been around since the 1940’s and has such a wide base of applications” is not necessary. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove white space between end of sentences and reference numbers.&lt;br /&gt;
&lt;br /&gt;
== [[Chance-constraint method|Chance constraint method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please consider correcting a few grammatical errors: “pre-planned for”, “god”, “certain levels of feasibility is guaranteed in what are”, and “Performance of a system”&lt;br /&gt;
# In “Chance-constraint”, it is capitalized randomly throughout the introduction. Please correct.   &lt;br /&gt;
# Please use technical language to briefly introduce chance-constrained programming. Words like “acts of god”, “cost of doing business” are not appropriate for a  technical Wiki.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Xi is an uncertainty/randomness variable. It is better to use clear language. &lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others.&lt;br /&gt;
# Theory is insufficient. Please expand and explain different approaches. &lt;br /&gt;
# Please add pros and cons explicitly as a list. &lt;br /&gt;
# Explain the physical meaning for examples of chance constraints along with all the notations used.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please remove this example as it is directly from this book. The example should be purely numerical without any background.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others. &lt;br /&gt;
# Please change the table format so as not to confuse the reader. &lt;br /&gt;
# Multiple instances of [Chart to be added] are missing.&lt;br /&gt;
# Example is incomplete. &lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please connect several grammatical and spelling errors: “real life application”, Energy creation, particularly in renewable sources, have high variabilities”, and others&lt;br /&gt;
# “Zhao, Xue, Cao, and Zhang”. No need to list all authors within the article. Provide a reference is sufficient. If authors must be mentioned, (Zhao et al.) should be ok.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Uniqueness and universality earlier are not clear to me. If they are not discussed earlier in the application, it would be better not to introduce new discussions in the conclusion.&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
==  [[Bayesian Optimization]] ==&lt;br /&gt;
* Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor on the section titles.&lt;br /&gt;
* Contents: The section titles should NOT be in bold to avoid strange format in TOC. Any formatting issue will incur a penalty in the grading.&lt;br /&gt;
* Author list: Remove cornell ID, Please check names&lt;br /&gt;
* Introduction&lt;br /&gt;
# The introduction is too general and not substantial enough. For example, simply saying BayesOpt is useful when the objective function is unknown obscures exactly HOW it is useful (namely, computational efficiency in applications where ground truth sampling is expensive). Discussion on applications should be moved to a separate section.&lt;br /&gt;
# Machine learning rarely includes black-box functions to be optimized. Bayesian optimization is almost never used for optimizing ML loss functions but can instead be used for hyperparameter optimization. Please update such claims in this section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Captions need reformatting.&lt;br /&gt;
# Consider italicizing keywords rather than bolding.&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Discussion on acquisition functions should include comparisons, tradeoffs, and reasons to use one over the other. Should also note that expected improvement is the most widely used in practice, and explain.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Please write equations in the Wiki instead of attaching images for equations.&lt;br /&gt;
# Acquisition function figure could be made larger and clearer to improve readability.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any references to functions or methods in code ‘e.g. fmin’ should be properly formatted as code-stylized text.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Avoid including a figure of the code for this example and explicitly describe the steps to the modeling and solution process instead. &lt;br /&gt;
# Avoid pronouns such as “our” and “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please do not use brackets to enclose lists.&lt;br /&gt;
# Some claims here should be supported by references. Please cite each source after its sentence. &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to “pop” machine learning blogs where anyone can be an author. (e.g. towardsdatascience)&lt;br /&gt;
# All references are URLs. Please cite publications and literature.&lt;br /&gt;
# A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
Notes on grammar: Needs some work. Several instances where colons are inappropriately inserted mid sentence or in subheadings. Explanations are not terse. Several instances of switching between personal and impersonal style of writing, which is distracting.&lt;br /&gt;
&lt;br /&gt;
== [[Conjugate gradient methods]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Introduction&lt;br /&gt;
# All inline notations (e.g., `x`, `A`) should be typed using LaTex.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
# Is Gauss-Newton no longer referenced?&lt;br /&gt;
# Theorems listed in the first section should be accompanied with high level explanation, not just a list of the theorems themselves. The page should read like an article, with proper flow.&lt;br /&gt;
# Please indent equation blocks.&lt;br /&gt;
# Please properly format pseudocode.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Steps should be accompanied with explanation, or reference to the corresponding step in the pseudocode.&lt;br /&gt;
# Please properly format in a more organized manner, aligning equations appropriately and demarcating steps appropriately.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
# Consider including 2 additional examples of applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Consider adding future research directions&lt;br /&gt;
* References&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Too few references.&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Geometric programming|Geometric Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Examples of applications in this section use the same reference. Please cite their individual sources.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The symbol denoting the domain in the definition of a monomial is unclear. Please clarify it or fix this if it is incorrect.&lt;br /&gt;
# Definition of posynomial refers to section 2.1 which is missing from the Wiki (sections are not numbered in the main text).&lt;br /&gt;
# In the generalized posynomial subsection, bullet points do not tell us why h(x) is posynomial. Either provide reasons or simply state that h(x) is posynomial. Also explain why h3 is a generalized posynomial.&lt;br /&gt;
# Additional theory on the feasibility analysis could be provided in this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the transformation example, the last two constraints could also be simplified by applying a natural logarithm on both sides. Please update them as well.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The figure in this section needs to be labeled. &lt;br /&gt;
# The figure needs to be resized and perhaps aligned to the center.  &lt;br /&gt;
* A conclusion section:&lt;br /&gt;
# Please avoid vague language such as: “This makes”.&lt;br /&gt;
# Please avoid opinionated statements: “one of the best ways”.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# This Wiki has very few references. A quick Google Scholar search may provide relevant references.&lt;br /&gt;
&lt;br /&gt;
== [[Adam]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Some grammatical errors here, mostly related to the need for commas in certain places (e.g., “Before Adam..”).&lt;br /&gt;
# Some minor errors with parts of speech throughout the section, need to revisit phrases such as “which has broader scope in future for”, etc. &lt;br /&gt;
# Try splitting up some of the longer sentences in this section, a couple are hard to read.&lt;br /&gt;
# Avoid definitive statements about Adam being the best or always better solver, as this is simply not true (the choice of the “best” optimizer is setting-dependent). Use language such as “Research has shown that Adam has demonstrated superior experimental performance over..” and then cite academic references to back this claim. &lt;br /&gt;
# What does adam stand for? Introduction is insufficient. Please expand. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Revise grammar here, noticing some missing commas and uncapitalized word after period.&lt;br /&gt;
# Rephrase “second one is to update the old position with the updated position”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section, and actual subscripts instead of “m_t”, etc. &lt;br /&gt;
# Avoid inserting inline citations after words like “According to..” or “This article..” as it is a bit informal. This could be rephrased or changed to something like “According to author,^[2] …” with author name inserted. &lt;br /&gt;
# Remove white space before the period in RMSP discussion.&lt;br /&gt;
# Please provide a pseudocode. &lt;br /&gt;
# Please use list the two methods here “Adam is a combination of two gradient descent methods which are explained below”&lt;br /&gt;
# Please expand the theory section significantly. Theoretical convergence properties should be discussed, even if briefly.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Same comment as before, consider replacing inline citations after words like “According to..”. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to blogs and use peer-reviewed academic references instead. &lt;br /&gt;
# Too few references.&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[A-star algorithm|a* algorithm]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor and avoid HTML formatting on the section titles.&lt;br /&gt;
* An introduction of the topic:&lt;br /&gt;
# Weird spacing between paragraphs. Please fix this issue.&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. &lt;br /&gt;
# Please consider correcting a few grammatical errors: “Optimal path”, “cross country”, missing period at end of first paragraph, other random capitalizations, etc.&lt;br /&gt;
# There are no citations in the introduction. Please cite every source.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add the mathematical description of the algorithm.&lt;br /&gt;
# Reference style varies in sentences. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please fix grammatical and spelling errors as (“from current position to the goal”, “There are a lot of discussions”, etc). Also, many hyphens are missing as “non playable”.&lt;br /&gt;
# In algorithms, it is a standard to add high-level description (i.e. pseudocode or flowchart). Please incorporate it. &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section (e.g., “f(n)...”, “h(n)..”, etc.). This goes for other sections as well.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The numerical example does not show the full computations the algorithm performs. Please show the computation on a smaller example.&lt;br /&gt;
# Instead of writing things like “The above image..”, label each figure and use the figure number to refer to it in text. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# No references in the applications. Please cite every source &lt;br /&gt;
# Preferably, add at least an additional application.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion should summarize descriptions. Please modify it to provide a summary.  &lt;br /&gt;
# Please pay attention to the length and structure of sentences here and in the full page. First sentence is hard to read.&lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format and are not linked correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Incorrect reference style. Please follow the example and use the template.&lt;br /&gt;
&lt;br /&gt;
== [[Job shop scheduling|Job-Shop Scheduling Problem]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The current introduction to the jobshop scheduling problem has only two sentences in addition to the parameter description. Introduction typically contains information about the problem, its importance in the real-world, and some information about the solution techniques and their types to solve the problem. Please add some information that covers the above.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# It is unclear whether the assumptions stated in this section are required to apply the following solution techniques. Please clarify the same. Also use complete sentences to state them.&lt;br /&gt;
# The branch and bounds method described in this section only discusses the solution technique for problems with one machines. However, branch and bound is a general technique that can be applied to any MILP problems with varying scales. Please update the “methods” section to be as general as possible.&lt;br /&gt;
# Since this Wiki focuses on jobshop scheduling, at least two methods are expected. Branch and bound is a general MILP technique, so, it is recommended to add a tailored technique that can only solve specific jobshop scheduling problems. Solving the numerical example with this technique is not necessary.&lt;br /&gt;
# Reference to the branch and bound technique described in this section is a “youtube” video. Please add references in literature that describe this method in detail. The method used in this video is highly tailored for a single machine application. This is also an incorrect way to cite a reference. Please keep this section as general as possible.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section and all other sections as well.&lt;br /&gt;
# Check grammar in this section. For example, phrases like “are as follows” need to be followed by a colon and not a period. &lt;br /&gt;
# Consider rewriting the assumptions as a list in this section. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The example used in this section is exactly the same as the one in the youtube video. Please use a modification of this example or choose another example/method to demonstrate the solution technique. Your team should ideally create a numerical example independently. If you take a numerical example directly from a particular source, you will need to get explicit permission from the textbook author in writing and share that written permission with the instructors.&lt;br /&gt;
# The figure in this section is not numbered when all others are. Relabel this figure for consistency and its number to refer to it in-text.&lt;br /&gt;
# A numerical example should be simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments).&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section should only focus on real-world applications of the jobshop scheduling problem. But currently, this section includes additional information on solution techniques/complexity that is appropriate for the Introduction section. Please discuss the applications of the problem in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# The meaning of  “Operations applications” is unclear. Please explain or update if necessary.&lt;br /&gt;
# The current conclusion section does not properly summarize the problem. Please refer to other Wiki examples for an idea to update the section accordingly.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Please reference media sources like reference 5 appropriately.&lt;br /&gt;
# A simple Google Scholar search would give you many &amp;quot;formal&amp;quot; references.&lt;br /&gt;
&lt;br /&gt;
== [[Optimization in game theory]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: remove cornell IDs. &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Why only a subsection on &amp;quot;Nash Equilibrium&amp;quot; is included in &amp;quot;Theory&amp;quot; section? Please re-format.&lt;br /&gt;
# Please edit references.&lt;br /&gt;
# Add a mathematical description of the problem and a pseudocode/flowchart for the Lemke-Howson algorithm.  &lt;br /&gt;
# Rephrase “This algorithm utilizes iterated pivoting much like the simplex algorithm used in the simplex algorithm used in linear programming”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please organize the last part in a more readable format. Questions may be in bold and numbered, answers are more direct, etc.&lt;br /&gt;
# Remember to cite all images and tables. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Very good, link the reference and cite all sources. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summarizing especially from theory sentences and avoid long sentences. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Incorrect reference style. Please correct.&lt;br /&gt;
&lt;br /&gt;
== [[Trust-region methods]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
# Remove cornell IDs. Author is also spelled incorrectly. &lt;br /&gt;
# Add the course section.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xk”, “f`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “we”. This goes for all other sections as well.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Organization of ideas in this section needs work.&lt;br /&gt;
# You have not defined explicitly why the Cauchy point is important to compute beyond a vague allusion to performance improvements, which is also wrong (it is useful because of its guarantees for convergence, not performance) It is also misspelled.&lt;br /&gt;
# Each approach should have accompanying explanation and motivation for why it is being discussed. It is not enough to outline the algorithm.&lt;br /&gt;
# Please make sure symbols are properly subscripted and superscripted (e.g. “pk” should be “p_k”&lt;br /&gt;
# Please format the algorithm in proper algorithmic pseudocode format.&lt;br /&gt;
# Little to no discussion on global convergence guarantees&lt;br /&gt;
# Please include discussion about the advantages and disadvantages of the algorithm&lt;br /&gt;
# Fix typo “couchy point”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any code functions (uminfunc) should have proper text formatting.&lt;br /&gt;
# The graph needs a better caption explaining how the axes are labeled and what data points are being shown.&lt;br /&gt;
# Please increase the quality of the figure. It is hard to see the red line. &lt;br /&gt;
# Add citation to “The Rosenbrock function is a non-convex function, introduced by Howard H. Rosenbrock in 1960, which is often used as a performance test problem for optimization algorithms.”&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The content in this section as it is currently does NOT describe applications, but rather different approaches within the trust region methodology. Please provide specific applications (e.g. TRPO in reinforcement learning).&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summary, future research directions for example is a good start.&lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style.&lt;br /&gt;
# Please consider having the references as this Wiki template, &amp;lt;nowiki&amp;gt;https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
*There are numerous misspellings, grammatical errors, and incorrect claims. Please fix these.&lt;br /&gt;
&lt;br /&gt;
== [[Momentum]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Apart from an explanation on momentum, it is necessary to briefly point out the limitations of SGD and why momentum could help with these limitations. Please update it accordingly.&lt;br /&gt;
# Remove bold on “Momentum”.&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Equation formatting is very poor and should be formalized.&lt;br /&gt;
# It is important to use technical language for this Wiki. Although a layman’s explanation is appreciated, it would be better to skip using words like “zig zagging”. Try to explain all concepts in a technical language with few simplifications but NOT vice versa.&lt;br /&gt;
# The definition of the update rule for SGD with momentum looks incorrect, specifically the first expression. Please fix it and also explain all the parameters used.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “W”, “V`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “you”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;. Since writing all iterations is not feasible, at least present a few iterations for both cases.&lt;br /&gt;
# Please try to label the plots that explains what each line color means.&lt;br /&gt;
# Starting point for SGD with momentum is different in explanation and the table. Please fix the same.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please use correct terminology like “optimizing non-convex functions” and not “training non-convex models”.&lt;br /&gt;
# Adam, Adadelta, and RMSprop are variants of SGD that already use momentum. Please double check the writing and update if necessary.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please refrain from using words like “zig zag” effects.&lt;br /&gt;
* References&lt;br /&gt;
# Almost all references used are URLs. Please try to add journal/conference articles or books for references, instead of directly citing the URLs. Please check the list below and run a quick Google (Scholar) search to identify relevant literature.&lt;br /&gt;
&lt;br /&gt;
== [[Stochastic dynamic programming|Stochastic Dynamic programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions &lt;br /&gt;
# Remove the grey box background of equations.&lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Outer-approximation (OA)|Outer-approximation]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic &lt;br /&gt;
# See formatting guideline below&lt;br /&gt;
# Avoid opinionated statements such as “MINLP problems are usually the hardest to solve”.&lt;br /&gt;
# Rearrange the text such that the MINLP formulation is in the theory section and keep the introduction in words only.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Consider left aligning equations and optimization problem formulations by the “=”. See [[Stochastic programming|https://optimization.cbe.cornell.edu/index.php?title=Stochastic_programming]] for an example&lt;br /&gt;
# The sentence “The Outer-Approximation (OA) algorithm was first proposed by Duran and and Grossmann in 1986 to solve MINLP problems.” needs a reference. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# “Minimize” and “subject to” should be “min” and “s.t.” in MathType&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Does not explicitly point out why OA is applicable (and/or preferred) in these applications, rather than other MINLP approaches (show that the problem formulations are amenable to a solution approach through OA)&lt;br /&gt;
# The sentence “... an active research area and there exists a vast number of applications in fields such as engineering, computational chemistry, and finance.” needs references. &lt;br /&gt;
# Posting GAMS code on the page is generally inappropriate and discouraged. Please check with the TAs or me if you have a strong desire to post GAMS codes on the Wiki page. A typical textbook should not be limited to a specific software package. If the GAMS code must be posted, please also post ALL other software implementation versions, such as Pyomo and JuliaOPT, among others.&lt;br /&gt;
# Consider reformatting to make steps more readable. Inserting spaces and breaking down steps would help. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Too short. Consider discussion on future research direction and discussion on uncertainty&lt;br /&gt;
# Please review abbreviations throughout the page. Why is MINLP redefined here? “Outer-Approximation is a well known efficient approach for solving convex mixed-integer nonlinear programs (MINLP)”. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove &amp;quot;Template:Reflist&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== [[Unit commitment problem]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction and avoid discussions of examples or specific applications in this section.&lt;br /&gt;
# The sentence “Nonlinear, Non-convex programming optimization problem.” doesn’t make sense by itself and Non-convex shouldn’t be capitalized.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Figure/image format should be revised to better display the content.&lt;br /&gt;
# Uppercase characters are used randomly (e.g., “non-convex transmission Constraints”) . Please follow correct language conventions for sentence structure.&lt;br /&gt;
# Avoid inserting inline citations after words like “written in matrix form as equation [3]..” or “presented in [3]...” as it is a bit informal when you don’t explicitly name the subject. Also these two sentences are grammatically incorrect and appear to be missing an ending period and comma, respectively. &lt;br /&gt;
# Don’t say “written in matrix form as equation..” and just cite the reference, actually write out the equation. &lt;br /&gt;
# Properly label the figure in this section with a figure number and improve visibility by making it larger. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Label the figures in this section properly with figure numbers.&lt;br /&gt;
# Fix typo “while minimize” to “while minimizing”. &lt;br /&gt;
# Avoid pronouns such as “we”. &lt;br /&gt;
# Use the equation editor when typing equations. &lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
# The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# I suggest changing the order of the subtitles here. For example, Single-Period Unit Commitment. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Frank-Wolfe]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# I suggest highlighting disadvantages along with advantages. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# “[n x 1] matrix” please use the equation editor to express mathematical descriptions and symbols (p,b, etc)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please show at least a few iterations. Even for smaller examples if needed. Report the final solution. &lt;br /&gt;
# Please use the LaTex code or equation editor for min and include s.t., etc.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. For your example, please explicitly state that the derivative is taken etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications: &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Same as the introduction. Pros and cons should be evaluated together!&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Line search methods|Line Search Method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Expand the introduction and avoid discussion on some of the specific steps in the solution process. &lt;br /&gt;
# Provide references here. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The phrase “are as follows” in the steepest descent method discussion needs to be followed by a colon. &lt;br /&gt;
# Rephrase “has a nice convergence theory” and cite a reference for this claim.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Add citation after “.. proposed by Phillip Wolfe in 1969.”&lt;br /&gt;
# Figure 1 is between two sections. Please fix this issue. &lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# Add some space between iterations or subsection break&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# Too few references in this section. &lt;br /&gt;
# Last paragraph makes some claims without references. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Piecewise linear approximation|Piecewise Linear Approximation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The content of this section is good, but there are some issues with sentence clarity and some other grammatical errors. Please revisit this section and make changes accordingly. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Fix typo “to force the x’ values become associated with”. &lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Some of these longer sentences are hard to read. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Expand the conclusion section to be longer than one sentence. The conclusion section to include a brief summary of what was discussed above, an emphasis on it’s significance, and a brief discussion of future extensions and research direction if applicable.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to sources when possible.&lt;br /&gt;
&lt;br /&gt;
== [[Mathematical programming with equilibrium constraints|Mathematical Programming with Equilibrium constraints]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes several terms like variational inequalities, constraint qualifications that were not discussed in the class. Please add a sentence to explain them before using them.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The meaning of parameter vector x is unclear. Please add more information or update if necessary.&lt;br /&gt;
# Equations and symbols in the PIPA subsection are not formatted correctly. Please use the same formatting for all equations, so they read as mathematical equations and not text. This goes for all other sections as well.&lt;br /&gt;
# Use equations instead of images to represent math programs and equations in the Implicit Descent and SQP subsection.&lt;br /&gt;
# Apart from the steps for each solution technique, please also add a few sentences that describe each method.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please define the terms like NCP, MP before abbreviating them. Also try not to unnecessarily abbreviate simple terms.&lt;br /&gt;
# Equations should be typed by LaTex. Images for equations are unacceptable.&lt;br /&gt;
# GAMS code is strongly discouraged. Please solve the problem &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The selected numerical example is fine but is directly solved with the MPEC solver in GAMS. Try to solve it manually like the homework/in-class problems step by step using the steps described in the previous section by choosing any of the methods.&lt;br /&gt;
# Avoid using figures in the equations (subject to etc)&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Add references to “power management, highway pricing, chemical process engineering, and traffic planning.”&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# This Wiki contains very few references. Please check the list below and run a quick Google (Scholar) search to identify relevant literature.&lt;br /&gt;
&lt;br /&gt;
== [[Wing shape optimization|Wing shape Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC. Any formatting issue will incur a penalty in the grading.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction is missing several references (e.g., “software packages like computational fluid dynamics..”, sentences containing things that aren’t common knowledge, performance claims, etc.)&lt;br /&gt;
# Avoid discussion involving finer details of subject methods in this section. &lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. Same applies to box of content!&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Properly cite the CFD package, don’t just include a link. &lt;br /&gt;
# Properly label the figure with a figure number.&lt;br /&gt;
# Consider removing white space between isolated sentences to improve readability. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# If you’ve already defined an abbreviation (CFD), there is no need to define it again. Just use the abbreviation.&lt;br /&gt;
# Avoid pronouns such as “we” or “they”.&lt;br /&gt;
# Phrases like “under the following” need to be followed by a colon.&lt;br /&gt;
# Properly label the figure with a figure number and consider making them larger to improve visibility. Call the reader&#039;s attention to the figures in text by referencing the figure number.&lt;br /&gt;
# “As seen in the video below” is stated yet there are only images present and it may be initially unclear to the reader which figure is being referenced here. &lt;br /&gt;
# Avoid inserting inline citations like “[4] introduces an..”  as it is a bit informal when you don’t explicitly name the subject.&lt;br /&gt;
# Don’t just cite the reference when discussing the problem formulation, explicitly write the model formulation and solution process using LaTex or equation visual editor.&lt;br /&gt;
# Your team should ideally create a numerical example independently. If you take a numerical example directly from a textbook, etc., you will need to get explicit permission from the author in writing and share that written permission with me.&lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
# The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Some characters are randomly capitalized in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# These variables should be defined before the conclusion section, they are out of place here. Also, please use normal text when explaining variables except for the variable symbol. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Interior-point method for NLP|Interior point method for NLP]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Primal-Dual formulation and comparison to the Barrier Method is not discussed.&lt;br /&gt;
# Include brief discussion about big O convergence rates.&lt;br /&gt;
# Need discussion about the concept of “central path” and the notion of self concordance&lt;br /&gt;
# Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Graphs and images are incorrectly formatted to the page. Consider proper alignment with respect to the text body.&lt;br /&gt;
# Use explicitly typed Latex equations instead of images to represent math programs and equations.&lt;br /&gt;
# Fix typo “optimisation”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xi ”, “μ”, etc.).&lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# There are formatting issues with figures 2,3. Please make sure to embed them within their respective sections. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section &lt;br /&gt;
# Minor character code typos in the conclusion.&lt;br /&gt;
# Also, please add more discussion in this section. Future research directions is a good start.&lt;br /&gt;
# There is a box &amp;quot;􏰐&amp;quot;&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[AdaGrad|Adagrad]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Include discussion on its variants (most important is AdaDelta).&lt;br /&gt;
# Include disadvantages of Adagrad, since this provides motivation for the discussion on the variants and improvements of Adagrad&lt;br /&gt;
# Include comparisons to other popular optimizers (particularly important is comparisons to regular SGD and Adam)&lt;br /&gt;
# Different convergence rates are possible depending on the setting where Adagrad is used, but this is not mentioned on the page currently. As such the regret bound section should be more thoroughly explained.&lt;br /&gt;
# Algorithm image is blurry. Either increase the fidelity or write the pseudocode directly in the wiki editor.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the first sentence, “..take the following numerical example” should be followed by a colon. &lt;br /&gt;
# Fix typo “trayectory”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is too short; include specific applications in which input features are sparse and Adagrad excels.&lt;br /&gt;
# Add reference to the claim “Mainly, it is a good choice for deep learning models with sparse input features”.&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References &lt;br /&gt;
&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources (even if the base algorithm itself comes from a singular paper)&lt;br /&gt;
&lt;br /&gt;
== [[McCormick envelopes|McCormick Envelopes]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: OK but I suggest removing NetID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# First sentence is hard to read. Please consider keeping sentences below 25-30 words. &lt;br /&gt;
# No references provided. Please cite all sources. &lt;br /&gt;
# Figure 1 is provided in the middle between two sections. Please include in the introduction section. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# When using mathematical expressions and symbols, please use the equation editor. (e.g., x*y, exy + y, sin (x+y) - x2)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution. &lt;br /&gt;
# The solution technique should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# GAMS code is unnecessary. Please provide detailed step-by-step calculation results.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each. &lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section: &lt;br /&gt;
* References&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;br /&gt;
&lt;br /&gt;
== [[Branch and bound (BB) for MINLP|Branch and Bound for MINLP]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
** Remove NetIDS&lt;br /&gt;
** Please remove abbreviations from the title (i.e. BB).&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please cite sources appropriately: References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Introduction is very short for a well-recognized topic. Please expand significantly. You may refer to the Wiki examples to get an idea on writing the Introduction to a topic.&lt;br /&gt;
# An illustration might be useful here.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The algorithm described here considers only binary integer variables. However, MINLP problems may include non-binary integer variables too. Please update the method or provide a short description of the assumptions that the MINLP problem needs to satisfy in order for the presented technique to be applicable.&lt;br /&gt;
# Use linked citations please as the Wiki template above. &lt;br /&gt;
# Please provide steps in a more organized way. Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Step 2 is missing yet it is referenced in the text multiple times. Please address this in addition to the above comment.&lt;br /&gt;
# An illustration might be useful here as well. &lt;br /&gt;
# Please explain what a Gomory Cut is. If the topic is available on optimization.cb.cornell.edu, you can link it.    &lt;br /&gt;
# The current equations seem to be simple text written in Italics. All mathematical symbols and equations should be formatted via LaTex.&lt;br /&gt;
# Please format the math programs with equations and notations using formulations in lecture notes as templates.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution.&lt;br /&gt;
# Please show a step-by-step solution in the example. The solution is incomplete. The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
# Please use the equation editor for equations or mathematical symbols. - All mathematical symbols and equations should be formatted via LaTex - this is a learning objective of the Wiki assignment. You can find some useful links on converting your equations/symbols into LaTex code here: (&amp;lt;nowiki&amp;gt;https://optimization.cbe.cornell.edu/index.php?title=Help:Contents&amp;lt;/nowiki&amp;gt;). Again, any formatting issue will incur a &amp;quot;compound&amp;quot; penalty in the grading.&lt;br /&gt;
# This example does not follow the MINLP structure discussed in the above section since binary variables are missing. Branch and bound may not be appropriate for such problems. Please provide an appropriate numerical example and solve it according to the above comments.&lt;br /&gt;
# Make sure your example is not taken from a book as that is strictly disallowed. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is not well-formatted. Please provide 3 applications and explain each in a few sentences and how BB for MINLP could be used. Also, please eliminate having multiple sections (Application, Mathematical problem, industrial application). All these could be merged together.&lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section:&lt;br /&gt;
# The sentence is hard to understand &amp;quot;a scheme that grows exponentially because&amp;quot; please use a simple language. Is it also theoretically correct? It is also not mentioned and explained earlier. Thus, please avoid introducing new concepts or terms at the end. &lt;br /&gt;
# Please use summarizing sentences to describe earlier sections instead of introducing new concepts/discussion. &lt;br /&gt;
* References&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources. A quick Google scholar search could provide relevant references.&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4801</id>
		<title>2021 Cornell Optimization Open Textbook Feedback</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4801"/>
		<updated>2021-12-06T03:09:01Z</updated>

		<summary type="html">&lt;p&gt;Asa273: /* McCormick Envelopes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[Lagrangean duality|Lagrangian duality]] ==&lt;br /&gt;
* Author list, sections and TOC&lt;br /&gt;
# Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor and avoid HTML formatting on the section titles.&lt;br /&gt;
# Remove cornell ID from Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes sentences on constructing the dual problem and is referred to as Lagrangian relaxation (LR). This is incorrect, please fix the definition of LR.&lt;br /&gt;
# Definitions of LR and its relation to duality should be double checked and re-written.&lt;br /&gt;
# Only one reference is present in this section. Please add more relevant references by expanding this section.&lt;br /&gt;
# Consider merging the “introduction” and “history” sections.&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The Lagrangian variables associated with equality constraints h(x) are unbounded but the Lagrangian dual problem states them as non-negative. Please fix the same.&lt;br /&gt;
# Also to construct a dual, we do not change minimization to maximization directly. We observed such things in the examples in lecture notes due to simplification. The lagrangian dual problem would be minimize (,).&lt;br /&gt;
# Adding to the previous point, the Lagrangian is a lower bound on the original objective; the solution to the primal and dual or only equivalent if the duality gap is 0. You reference this in one section, but this is after your statement “Hence, solving the dual problem, which is a function of the Lagrangian multipliers (𝜆*) yields the same solution as the primal problem, which is a function of the original variables (x*). “. Please clarify the specific conditions that must hold for the solution of the dual to be equal to the primal’s.&lt;br /&gt;
# You refer to the “Complementary Slackness Theorem”, but don’t actually write the mathematical representation of complementary slackness. Please fix this. Also consider including the derivation of the complementary slackness condition, as it is both easy and short. Boyd is a good reference for this.&lt;br /&gt;
# Last step of the “process” subsection also needs updating according to the previous comments.&lt;br /&gt;
# The inline notations should also be typed using LaTex.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Only one dual variable is associated with each constraint. The numerical example uses two for the first and second constraint which is unnecessary. Please update it accordingly for both constraints. This particular example will only have two dual variables instead of the five dual variables used currently.&lt;br /&gt;
# All consecutive steps need to be updated since the dual variables would be updated.&lt;br /&gt;
# After substitution the nonlinear function should be further simplified. The current expression reads like a highly nonlinear function but can be easily simplified.&lt;br /&gt;
# Similar to the comments in the methodology section, inverting minimize to maximize is incorrect. Please update the dual objective function and domain of dual variables accordingly.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Bullet points could be used to state the last four real-world examples that explain the physical meaning of the primal and dual problems.&lt;br /&gt;
# Add references for the last set of applications. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# This section contains a few typos. Please fix the same.&lt;br /&gt;
* References&lt;br /&gt;
# Some citations&#039; hyperlinks are displaying.&lt;br /&gt;
&lt;br /&gt;
== [[Disjunctive inequalities|Disjunctive Inequalities]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section and semester&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# No citations are present in this section.&lt;br /&gt;
# “mixed-integer programming (MIP)” should be used instead of “multiple integer programming (MIP)”. Please fix this error.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The abbreviation MILP is not previously defined. Please fix this issue.&lt;br /&gt;
# You consistently use the negative sign instead of the NOT operator for y (-y instead of ¬y). &lt;br /&gt;
# Some inconsistencies with the spacing of variables, constraints, etc., under the “General” section that need to be fixed.&lt;br /&gt;
# Typo in “This is shown below by M1, M2, y1, and y1:” where y1 needs to be changed to y2. Why use two different Big-M variables here? Elsewhere in the Wiki you only use one so this could lead to confusion with a general audience. Also if this was taken from the lecture notes then it needs to be cited.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please reformulate and solve a complete numerical example rather than just reformulating a general example. Demonstrate the use of Big-M and Convex Hull formulation in an optimization problem that provides details such as individual steps in the problem solving process and final results. The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results.&lt;br /&gt;
# Add space between vee (V) operator and brackets in first line of Latex&lt;br /&gt;
# Please format variables correctly, for example, use &amp;lt;math&amp;gt;x_1&amp;lt;/math&amp;gt; instead of x1.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please format the equations appropriately either by using latex code or the visual editor. These images are NOT acceptable!&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# There is no conclusion presented in this section at all.&lt;br /&gt;
* References&lt;br /&gt;
# The included references have NOT been used anywhere in the Wiki. Add references for sentences that are not common knowledge and please link them appropriately with the text in Wiki. If the figures used here were not original works, you must also cite them. &lt;br /&gt;
# There are many papers on this topic. A simple Google (Scholar) search could provide you with sufficient references to cite. &lt;br /&gt;
# Many important references of this topic are missing.&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
==[[Stochastic programming|Stochastic Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell IDs&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
# This section only includes two sentences on Stochastic programming (SP), while the rest gives examples of uncertainty. Please discuss the need for SP in the presence of uncertainty. Also, discussion on robust optimization and its limitations should be removed since it is out of place.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please avoid direct inline linkbacks to Wikipedia.&lt;br /&gt;
# The symbol “xi” in the methodology subsection should be explained.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Copying a numerical example &amp;quot;entirely&amp;quot; from a textbook is inappropriate. Your team should come up with a &amp;quot;numerical&amp;quot; case.&lt;br /&gt;
# No specific application context is needed for a numerical example.&lt;br /&gt;
# The inline notations (`x1`, `s1`) should also be typed using LaTex.&lt;br /&gt;
# Label all tables with a table number for better readability. &lt;br /&gt;
# Properly format the solution table with the label attached rather than the following sentence. The solution table looks different from the others, please fix this for consistency. &lt;br /&gt;
* A section to discuss and/or illustrate the applications;&lt;br /&gt;
# I suggest eliminating citing the last name of the first author (i.e. Zhou et al.)&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# URLs of some citations are not properly formatted (not showing the hyperlinks).&lt;br /&gt;
&lt;br /&gt;
== [[Exponential transformation|Exponential Transformation]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction.&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Last sentence with 51 words is hard to read. &lt;br /&gt;
# Second Sentence: please change the word “they” as it could make the meaning ambiguous&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
# If you use abbreviations, please introduce them (e.g. NLP,MINLP)&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please explain the transformation in words along with equations&lt;br /&gt;
# Terms like posynomial should be described in detail.&lt;br /&gt;
# Please move the numerical example to the section below&lt;br /&gt;
# The “(eq 1)” is not needed here.&lt;br /&gt;
# Please expand this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the third equation of the numerical example, it is confusing to have coefficients after numbers. Some readers may read it as an exponent.&lt;br /&gt;
# Last equation in this section after “further linearization” is incorrect. This equation cannot be further linearized, please fix this.&lt;br /&gt;
# Please explain the steps in the numerical examples in detail. The step-by-step solution should be provided. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Missing part of text: “Proof of convexity of with positive definite test of Hessian…”&lt;br /&gt;
# Applications are not numerical examples. Please refer to this link for example of applications: [[Duality|https://optimization.cbe.cornell.edu/index.php?title=Duality]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
# The section current applications is redundant&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
# Under current applications, do not just use a hyperlink to describe an application. Actually describe it. And properly inline citation style should be used instead of the hyperlink. &lt;br /&gt;
# The convexification application of MINLP can be further simplified for binary variables. Please refer to the lecture slides for more information.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references by using this as Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
&lt;br /&gt;
== [[Sparse Reconstruction with Compressed Sensing|Sparse reconstruction with Compressed Sensing]] ==&lt;br /&gt;
This Wiki needs a significant rewrite. Please go through the comments for details.&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction section should include information about the problem and its implications presented briefly. Please use full sentences to write this Wiki. You may use tools like Grammarly to check sentence formation and grammar.&lt;br /&gt;
# This section includes several typos like “sub modual”. Please fix them throughout the wiki and delete them if not required.&lt;br /&gt;
# Many abbreviations are used before previously defining them. Please define these abbreviations before using them in the text.&lt;br /&gt;
# This section is incomprehensible in its current form. Please rewrite with proper comprehension.&lt;br /&gt;
# Equations and math symbols need proper reformatting. The current version reads like text (along with equations) copy-pasted from a specific source. All mathematical symbols and equations should be formatted via LaTex - this is a learning objective of the Wiki assignment. You can find some useful links on converting your equations/symbols into LaTex code here: (https://optimization.cbe.cornell.edu/index.php?title=Help:Contents).&lt;br /&gt;
# Try to place the figure at the top of the Wiki between the main text.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# I suggest the use of more formal abstract illustrations. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Equations and symbols need proper reformatting.&lt;br /&gt;
# Lemmas and theorems are not expected for this Wiki. Sparse reconstruction is a straightforward concept but is unnecessarily complicated here. Please refer to other Wiki examples to get an idea of what the Wiki should convey.&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Numerical example is missing.&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion section is missing.&lt;br /&gt;
* References&lt;br /&gt;
# The current reference list is not correctly formatted. References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Portfolio optimization|Portfolio Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell id&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introductory sentence should be rephrased. The action of minimizing the risks does not inherently maximize the gains, rather PO aims to maximize gains whilst minimizing risks. &lt;br /&gt;
# Amount of whitespace can be reduced by changing the orientation of Figure 1 and the sentences in this section.&lt;br /&gt;
# Define terms such as risk, return, portfolio, etc., when you introduce them. Assume that the reader may not know much about finance. This goes for all other sections as well. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# A brief mention of modern portfolio theory (i.e.. Markowitz) would be appropriate in this section. &lt;br /&gt;
# Several grammatical errors here involving sentence structure and clarity. Some questionable semantics (e.g., “The portfolio optimization mainly assumes two directions.”) and syntax (phrases such as “.. is as follows” should be followed by a colon). Misuse of commas and missing commas in this section. Two sentences introducing E(rp) and w should be combined into one.&lt;br /&gt;
# Use LaTex to distinguish variables written within a sentence, such as m and n. &lt;br /&gt;
# Rephrase “Cut the relevant information and conditions in the portfolio optimization, as well as the final requirements into the relevant variables, constraints and linear functions of the linear programming problem.”&lt;br /&gt;
# An explanation of a few common constraints would be helpful, rather than just including a table. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Solving the numerical example by GAMS is inappropriate. Please provide detailed step-by-step calculation results.&lt;br /&gt;
# All tables need to be labeled.&lt;br /&gt;
# Include figure number in label for consistency. &lt;br /&gt;
# Fix misspelling “dolling decision variables”. &lt;br /&gt;
# Use LaTex for all variables, equations, and constraints here.&lt;br /&gt;
# Example 2 table is hard to read, so making it bigger would help. &lt;br /&gt;
# Remove the “Using excel as the solver” part from the sentence before the solution discussion. &lt;br /&gt;
# Some grammatical errors here (phrases such as “.. is as follows” should be followed by a colon). &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Rephrase “Portfolio optimization can be used to screen investment projects that meet investors, rationally allocate investment amounts, etc.”&lt;br /&gt;
# Not sure “relevant” is the correct word choice here. &lt;br /&gt;
# You need more specific examples with the utility of portfolio optimization, this section is quite general as is. Some more detail and focus on real-world applications in the financial industry that relate to retirement planning, financial security, economic stability, etc., would be helpful. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Need some commas here.&lt;br /&gt;
# The sentence “Linear programming has been around since the 1940’s and has such a wide base of applications” is not necessary. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove white space between end of sentences and reference numbers.&lt;br /&gt;
&lt;br /&gt;
== [[Chance-constraint method|Chance constraint method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please consider correcting a few grammatical errors: “pre-planned for”, “god”, “certain levels of feasibility is guaranteed in what are”, and “Performance of a system”&lt;br /&gt;
# In “Chance-constraint”, it is capitalized randomly throughout the introduction. Please correct.   &lt;br /&gt;
# Please use technical language to briefly introduce chance-constrained programming. Words like “acts of god”, “cost of doing business” are not appropriate for a  technical Wiki.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Xi is an uncertainty/randomness variable. It is better to use clear language. &lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others.&lt;br /&gt;
# Theory is insufficient. Please expand and explain different approaches. &lt;br /&gt;
# Please add pros and cons explicitly as a list. &lt;br /&gt;
# Explain the physical meaning for examples of chance constraints along with all the notations used.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please remove this example as it is directly from this book. The example should be purely numerical without any background.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others. &lt;br /&gt;
# Please change the table format so as not to confuse the reader. &lt;br /&gt;
# Multiple instances of [Chart to be added] are missing.&lt;br /&gt;
# Example is incomplete. &lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please connect several grammatical and spelling errors: “real life application”, Energy creation, particularly in renewable sources, have high variabilities”, and others&lt;br /&gt;
# “Zhao, Xue, Cao, and Zhang”. No need to list all authors within the article. Provide a reference is sufficient. If authors must be mentioned, (Zhao et al.) should be ok.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Uniqueness and universality earlier are not clear to me. If they are not discussed earlier in the application, it would be better not to introduce new discussions in the conclusion.&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
==  [[Bayesian Optimization]] ==&lt;br /&gt;
* Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor on the section titles.&lt;br /&gt;
* Contents: The section titles should NOT be in bold to avoid strange format in TOC. Any formatting issue will incur a penalty in the grading.&lt;br /&gt;
* Author list: Remove cornell ID, Please check names&lt;br /&gt;
* Introduction&lt;br /&gt;
# The introduction is too general and not substantial enough. For example, simply saying BayesOpt is useful when the objective function is unknown obscures exactly HOW it is useful (namely, computational efficiency in applications where ground truth sampling is expensive). Discussion on applications should be moved to a separate section.&lt;br /&gt;
# Machine learning rarely includes black-box functions to be optimized. Bayesian optimization is almost never used for optimizing ML loss functions but can instead be used for hyperparameter optimization. Please update such claims in this section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Captions need reformatting.&lt;br /&gt;
# Consider italicizing keywords rather than bolding.&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Discussion on acquisition functions should include comparisons, tradeoffs, and reasons to use one over the other. Should also note that expected improvement is the most widely used in practice, and explain.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Please write equations in the Wiki instead of attaching images for equations.&lt;br /&gt;
# Acquisition function figure could be made larger and clearer to improve readability.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any references to functions or methods in code ‘e.g. fmin’ should be properly formatted as code-stylized text.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Avoid including a figure of the code for this example and explicitly describe the steps to the modeling and solution process instead. &lt;br /&gt;
# Avoid pronouns such as “our” and “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please do not use brackets to enclose lists.&lt;br /&gt;
# Some claims here should be supported by references. Please cite each source after its sentence. &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to “pop” machine learning blogs where anyone can be an author. (e.g. towardsdatascience)&lt;br /&gt;
# All references are URLs. Please cite publications and literature.&lt;br /&gt;
# A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
Notes on grammar: Needs some work. Several instances where colons are inappropriately inserted mid sentence or in subheadings. Explanations are not terse. Several instances of switching between personal and impersonal style of writing, which is distracting.&lt;br /&gt;
&lt;br /&gt;
== [[Conjugate gradient methods]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Introduction&lt;br /&gt;
# All inline notations (e.g., `x`, `A`) should be typed using LaTex.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
# Is Gauss-Newton no longer referenced?&lt;br /&gt;
# Theorems listed in the first section should be accompanied with high level explanation, not just a list of the theorems themselves. The page should read like an article, with proper flow.&lt;br /&gt;
# Please indent equation blocks.&lt;br /&gt;
# Please properly format pseudocode.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Steps should be accompanied with explanation, or reference to the corresponding step in the pseudocode.&lt;br /&gt;
# Please properly format in a more organized manner, aligning equations appropriately and demarcating steps appropriately.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
# Consider including 2 additional examples of applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Consider adding future research directions&lt;br /&gt;
* References&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Too few references.&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Geometric programming|Geometric Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Examples of applications in this section use the same reference. Please cite their individual sources.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The symbol denoting the domain in the definition of a monomial is unclear. Please clarify it or fix this if it is incorrect.&lt;br /&gt;
# Definition of posynomial refers to section 2.1 which is missing from the Wiki (sections are not numbered in the main text).&lt;br /&gt;
# In the generalized posynomial subsection, bullet points do not tell us why h(x) is posynomial. Either provide reasons or simply state that h(x) is posynomial. Also explain why h3 is a generalized posynomial.&lt;br /&gt;
# Additional theory on the feasibility analysis could be provided in this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the transformation example, the last two constraints could also be simplified by applying a natural logarithm on both sides. Please update them as well.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The figure in this section needs to be labeled. &lt;br /&gt;
# The figure needs to be resized and perhaps aligned to the center.  &lt;br /&gt;
* A conclusion section:&lt;br /&gt;
# Please avoid vague language such as: “This makes”.&lt;br /&gt;
# Please avoid opinionated statements: “one of the best ways”.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# This Wiki has very few references. A quick Google Scholar search may provide relevant references.&lt;br /&gt;
&lt;br /&gt;
== [[Adam]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Some grammatical errors here, mostly related to the need for commas in certain places (e.g., “Before Adam..”).&lt;br /&gt;
# Some minor errors with parts of speech throughout the section, need to revisit phrases such as “which has broader scope in future for”, etc. &lt;br /&gt;
# Try splitting up some of the longer sentences in this section, a couple are hard to read.&lt;br /&gt;
# Avoid definitive statements about Adam being the best or always better solver, as this is simply not true (the choice of the “best” optimizer is setting-dependent). Use language such as “Research has shown that Adam has demonstrated superior experimental performance over..” and then cite academic references to back this claim. &lt;br /&gt;
# What does adam stand for? Introduction is insufficient. Please expand. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Revise grammar here, noticing some missing commas and uncapitalized word after period.&lt;br /&gt;
# Rephrase “second one is to update the old position with the updated position”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section, and actual subscripts instead of “m_t”, etc. &lt;br /&gt;
# Avoid inserting inline citations after words like “According to..” or “This article..” as it is a bit informal. This could be rephrased or changed to something like “According to author,^[2] …” with author name inserted. &lt;br /&gt;
# Remove white space before the period in RMSP discussion.&lt;br /&gt;
# Please provide a pseudocode. &lt;br /&gt;
# Please use list the two methods here “Adam is a combination of two gradient descent methods which are explained below”&lt;br /&gt;
# Please expand the theory section significantly. Theoretical convergence properties should be discussed, even if briefly.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Same comment as before, consider replacing inline citations after words like “According to..”. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to blogs and use peer-reviewed academic references instead. &lt;br /&gt;
# Too few references.&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[A-star algorithm|a* algorithm]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor and avoid HTML formatting on the section titles.&lt;br /&gt;
* An introduction of the topic:&lt;br /&gt;
# Weird spacing between paragraphs. Please fix this issue.&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. &lt;br /&gt;
# Please consider correcting a few grammatical errors: “Optimal path”, “cross country”, missing period at end of first paragraph, other random capitalizations, etc.&lt;br /&gt;
# There are no citations in the introduction. Please cite every source.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add the mathematical description of the algorithm.&lt;br /&gt;
# Reference style varies in sentences. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please fix grammatical and spelling errors as (“from current position to the goal”, “There are a lot of discussions”, etc). Also, many hyphens are missing as “non playable”.&lt;br /&gt;
# In algorithms, it is a standard to add high-level description (i.e. pseudocode or flowchart). Please incorporate it. &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section (e.g., “f(n)...”, “h(n)..”, etc.). This goes for other sections as well.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The numerical example does not show the full computations the algorithm performs. Please show the computation on a smaller example.&lt;br /&gt;
# Instead of writing things like “The above image..”, label each figure and use the figure number to refer to it in text. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# No references in the applications. Please cite every source &lt;br /&gt;
# Preferably, add at least an additional application.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion should summarize descriptions. Please modify it to provide a summary.  &lt;br /&gt;
# Please pay attention to the length and structure of sentences here and in the full page. First sentence is hard to read.&lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format and are not linked correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Incorrect reference style. Please follow the example and use the template.&lt;br /&gt;
&lt;br /&gt;
== [[Job shop scheduling|Job-Shop Scheduling Problem]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The current introduction to the jobshop scheduling problem has only two sentences in addition to the parameter description. Introduction typically contains information about the problem, its importance in the real-world, and some information about the solution techniques and their types to solve the problem. Please add some information that covers the above.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# It is unclear whether the assumptions stated in this section are required to apply the following solution techniques. Please clarify the same. Also use complete sentences to state them.&lt;br /&gt;
# The branch and bounds method described in this section only discusses the solution technique for problems with one machines. However, branch and bound is a general technique that can be applied to any MILP problems with varying scales. Please update the “methods” section to be as general as possible.&lt;br /&gt;
# Since this Wiki focuses on jobshop scheduling, at least two methods are expected. Branch and bound is a general MILP technique, so, it is recommended to add a tailored technique that can only solve specific jobshop scheduling problems. Solving the numerical example with this technique is not necessary.&lt;br /&gt;
# Reference to the branch and bound technique described in this section is a “youtube” video. Please add references in literature that describe this method in detail. The method used in this video is highly tailored for a single machine application. This is also an incorrect way to cite a reference. Please keep this section as general as possible.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section and all other sections as well.&lt;br /&gt;
# Check grammar in this section. For example, phrases like “are as follows” need to be followed by a colon and not a period. &lt;br /&gt;
# Consider rewriting the assumptions as a list in this section. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The example used in this section is exactly the same as the one in the youtube video. Please use a modification of this example or choose another example/method to demonstrate the solution technique. Your team should ideally create a numerical example independently. If you take a numerical example directly from a particular source, you will need to get explicit permission from the textbook author in writing and share that written permission with the instructors.&lt;br /&gt;
# The figure in this section is not numbered when all others are. Relabel this figure for consistency and its number to refer to it in-text.&lt;br /&gt;
# A numerical example should be simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments).&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section should only focus on real-world applications of the jobshop scheduling problem. But currently, this section includes additional information on solution techniques/complexity that is appropriate for the Introduction section. Please discuss the applications of the problem in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# The meaning of  “Operations applications” is unclear. Please explain or update if necessary.&lt;br /&gt;
# The current conclusion section does not properly summarize the problem. Please refer to other Wiki examples for an idea to update the section accordingly.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Please reference media sources like reference 5 appropriately.&lt;br /&gt;
# A simple Google Scholar search would give you many &amp;quot;formal&amp;quot; references.&lt;br /&gt;
&lt;br /&gt;
== [[Optimization in game theory]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: remove cornell IDs. &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Why only a subsection on &amp;quot;Nash Equilibrium&amp;quot; is included in &amp;quot;Theory&amp;quot; section? Please re-format.&lt;br /&gt;
# Please edit references.&lt;br /&gt;
# Add a mathematical description of the problem and a pseudocode/flowchart for the Lemke-Howson algorithm.  &lt;br /&gt;
# Rephrase “This algorithm utilizes iterated pivoting much like the simplex algorithm used in the simplex algorithm used in linear programming”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please organize the last part in a more readable format. Questions may be in bold and numbered, answers are more direct, etc.&lt;br /&gt;
# Remember to cite all images and tables. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Very good, link the reference and cite all sources. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summarizing especially from theory sentences and avoid long sentences. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Incorrect reference style. Please correct.&lt;br /&gt;
&lt;br /&gt;
== [[Trust-region methods]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
# Remove cornell IDs. Author is also spelled incorrectly. &lt;br /&gt;
# Add the course section.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xk”, “f`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “we”. This goes for all other sections as well.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Organization of ideas in this section needs work.&lt;br /&gt;
# You have not defined explicitly why the Cauchy point is important to compute beyond a vague allusion to performance improvements, which is also wrong (it is useful because of its guarantees for convergence, not performance) It is also misspelled.&lt;br /&gt;
# Each approach should have accompanying explanation and motivation for why it is being discussed. It is not enough to outline the algorithm.&lt;br /&gt;
# Please make sure symbols are properly subscripted and superscripted (e.g. “pk” should be “p_k”&lt;br /&gt;
# Please format the algorithm in proper algorithmic pseudocode format.&lt;br /&gt;
# Little to no discussion on global convergence guarantees&lt;br /&gt;
# Please include discussion about the advantages and disadvantages of the algorithm&lt;br /&gt;
# Fix typo “couchy point”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any code functions (uminfunc) should have proper text formatting.&lt;br /&gt;
# The graph needs a better caption explaining how the axes are labeled and what data points are being shown.&lt;br /&gt;
# Please increase the quality of the figure. It is hard to see the red line. &lt;br /&gt;
# Add citation to “The Rosenbrock function is a non-convex function, introduced by Howard H. Rosenbrock in 1960, which is often used as a performance test problem for optimization algorithms.”&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The content in this section as it is currently does NOT describe applications, but rather different approaches within the trust region methodology. Please provide specific applications (e.g. TRPO in reinforcement learning).&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summary, future research directions for example is a good start.&lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style.&lt;br /&gt;
# Please consider having the references as this Wiki template, &amp;lt;nowiki&amp;gt;https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
*There are numerous misspellings, grammatical errors, and incorrect claims. Please fix these.&lt;br /&gt;
&lt;br /&gt;
== [[Momentum]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Apart from an explanation on momentum, it is necessary to briefly point out the limitations of SGD and why momentum could help with these limitations. Please update it accordingly.&lt;br /&gt;
# Remove bold on “Momentum”.&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Equation formatting is very poor and should be formalized.&lt;br /&gt;
# It is important to use technical language for this Wiki. Although a layman’s explanation is appreciated, it would be better to skip using words like “zig zagging”. Try to explain all concepts in a technical language with few simplifications but NOT vice versa.&lt;br /&gt;
# The definition of the update rule for SGD with momentum looks incorrect, specifically the first expression. Please fix it and also explain all the parameters used.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “W”, “V`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “you”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;. Since writing all iterations is not feasible, at least present a few iterations for both cases.&lt;br /&gt;
# Please try to label the plots that explains what each line color means.&lt;br /&gt;
# Starting point for SGD with momentum is different in explanation and the table. Please fix the same.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please use correct terminology like “optimizing non-convex functions” and not “training non-convex models”.&lt;br /&gt;
# Adam, Adadelta, and RMSprop are variants of SGD that already use momentum. Please double check the writing and update if necessary.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please refrain from using words like “zig zag” effects.&lt;br /&gt;
* References&lt;br /&gt;
# Almost all references used are URLs. Please try to add journal/conference articles or books for references, instead of directly citing the URLs. Please check the list below and run a quick Google (Scholar) search to identify relevant literature.&lt;br /&gt;
&lt;br /&gt;
== [[Stochastic dynamic programming|Stochastic Dynamic programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions &lt;br /&gt;
# Remove the grey box background of equations.&lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Outer-approximation (OA)|Outer-approximation]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic &lt;br /&gt;
# See formatting guideline below&lt;br /&gt;
# Avoid opinionated statements such as “MINLP problems are usually the hardest to solve”.&lt;br /&gt;
# Rearrange the text such that the MINLP formulation is in the theory section and keep the introduction in words only.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Consider left aligning equations and optimization problem formulations by the “=”. See [[Stochastic programming|https://optimization.cbe.cornell.edu/index.php?title=Stochastic_programming]] for an example&lt;br /&gt;
# The sentence “The Outer-Approximation (OA) algorithm was first proposed by Duran and and Grossmann in 1986 to solve MINLP problems.” needs a reference. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# “Minimize” and “subject to” should be “min” and “s.t.” in MathType&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Does not explicitly point out why OA is applicable (and/or preferred) in these applications, rather than other MINLP approaches (show that the problem formulations are amenable to a solution approach through OA)&lt;br /&gt;
# The sentence “... an active research area and there exists a vast number of applications in fields such as engineering, computational chemistry, and finance.” needs references. &lt;br /&gt;
# Posting GAMS code on the page is generally inappropriate and discouraged. Please check with the TAs or me if you have a strong desire to post GAMS codes on the Wiki page. A typical textbook should not be limited to a specific software package. If the GAMS code must be posted, please also post ALL other software implementation versions, such as Pyomo and JuliaOPT, among others.&lt;br /&gt;
# Consider reformatting to make steps more readable. Inserting spaces and breaking down steps would help. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Too short. Consider discussion on future research direction and discussion on uncertainty&lt;br /&gt;
# Please review abbreviations throughout the page. Why is MINLP redefined here? “Outer-Approximation is a well known efficient approach for solving convex mixed-integer nonlinear programs (MINLP)”. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove &amp;quot;Template:Reflist&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== [[Unit commitment problem]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction and avoid discussions of examples or specific applications in this section.&lt;br /&gt;
# The sentence “Nonlinear, Non-convex programming optimization problem.” doesn’t make sense by itself and Non-convex shouldn’t be capitalized.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Figure/image format should be revised to better display the content.&lt;br /&gt;
# Uppercase characters are used randomly (e.g., “non-convex transmission Constraints”) . Please follow correct language conventions for sentence structure.&lt;br /&gt;
# Avoid inserting inline citations after words like “written in matrix form as equation [3]..” or “presented in [3]...” as it is a bit informal when you don’t explicitly name the subject. Also these two sentences are grammatically incorrect and appear to be missing an ending period and comma, respectively. &lt;br /&gt;
# Don’t say “written in matrix form as equation..” and just cite the reference, actually write out the equation. &lt;br /&gt;
# Properly label the figure in this section with a figure number and improve visibility by making it larger. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Label the figures in this section properly with figure numbers.&lt;br /&gt;
# Fix typo “while minimize” to “while minimizing”. &lt;br /&gt;
# Avoid pronouns such as “we”. &lt;br /&gt;
# Use the equation editor when typing equations. &lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
# The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# I suggest changing the order of the subtitles here. For example, Single-Period Unit Commitment. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Frank-Wolfe]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# I suggest highlighting disadvantages along with advantages. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# “[n x 1] matrix” please use the equation editor to express mathematical descriptions and symbols (p,b, etc)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please show at least a few iterations. Even for smaller examples if needed. Report the final solution. &lt;br /&gt;
# Please use the LaTex code or equation editor for min and include s.t., etc.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. For your example, please explicitly state that the derivative is taken etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications: &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Same as the introduction. Pros and cons should be evaluated together!&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Line search methods|Line Search Method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Expand the introduction and avoid discussion on some of the specific steps in the solution process. &lt;br /&gt;
# Provide references here. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The phrase “are as follows” in the steepest descent method discussion needs to be followed by a colon. &lt;br /&gt;
# Rephrase “has a nice convergence theory” and cite a reference for this claim.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Add citation after “.. proposed by Phillip Wolfe in 1969.”&lt;br /&gt;
# Figure 1 is between two sections. Please fix this issue. &lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# Add some space between iterations or subsection break&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# Too few references in this section. &lt;br /&gt;
# Last paragraph makes some claims without references. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Piecewise linear approximation|Piecewise Linear Approximation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The content of this section is good, but there are some issues with sentence clarity and some other grammatical errors. Please revisit this section and make changes accordingly. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Fix typo “to force the x’ values become associated with”. &lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Some of these longer sentences are hard to read. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Expand the conclusion section to be longer than one sentence. The conclusion section to include a brief summary of what was discussed above, an emphasis on it’s significance, and a brief discussion of future extensions and research direction if applicable.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to sources when possible.&lt;br /&gt;
&lt;br /&gt;
== [[Mathematical programming with equilibrium constraints|Mathematical Programming with Equilibrium constraints]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes several terms like variational inequalities, constraint qualifications that were not discussed in the class. Please add a sentence to explain them before using them.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The meaning of parameter vector x is unclear. Please add more information or update if necessary.&lt;br /&gt;
# Equations and symbols in the PIPA subsection are not formatted correctly. Please use the same formatting for all equations, so they read as mathematical equations and not text. This goes for all other sections as well.&lt;br /&gt;
# Use equations instead of images to represent math programs and equations in the Implicit Descent and SQP subsection.&lt;br /&gt;
# Apart from the steps for each solution technique, please also add a few sentences that describe each method.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please define the terms like NCP, MP before abbreviating them. Also try not to unnecessarily abbreviate simple terms.&lt;br /&gt;
# Equations should be typed by LaTex. Images for equations are unacceptable.&lt;br /&gt;
# GAMS code is strongly discouraged. Please solve the problem &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The selected numerical example is fine but is directly solved with the MPEC solver in GAMS. Try to solve it manually like the homework/in-class problems step by step using the steps described in the previous section by choosing any of the methods.&lt;br /&gt;
# Avoid using figures in the equations (subject to etc)&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Add references to “power management, highway pricing, chemical process engineering, and traffic planning.”&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# This Wiki contains very few references. Please check the list below and run a quick Google (Scholar) search to identify relevant literature.&lt;br /&gt;
&lt;br /&gt;
== [[Wing shape optimization|Wing shape Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC. Any formatting issue will incur a penalty in the grading.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction is missing several references (e.g., “software packages like computational fluid dynamics..”, sentences containing things that aren’t common knowledge, performance claims, etc.)&lt;br /&gt;
# Avoid discussion involving finer details of subject methods in this section. &lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. Same applies to box of content!&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Properly cite the CFD package, don’t just include a link. &lt;br /&gt;
# Properly label the figure with a figure number.&lt;br /&gt;
# Consider removing white space between isolated sentences to improve readability. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# If you’ve already defined an abbreviation (CFD), there is no need to define it again. Just use the abbreviation.&lt;br /&gt;
# Avoid pronouns such as “we” or “they”.&lt;br /&gt;
# Phrases like “under the following” need to be followed by a colon.&lt;br /&gt;
# Properly label the figure with a figure number and consider making them larger to improve visibility. Call the reader&#039;s attention to the figures in text by referencing the figure number.&lt;br /&gt;
# “As seen in the video below” is stated yet there are only images present and it may be initially unclear to the reader which figure is being referenced here. &lt;br /&gt;
# Avoid inserting inline citations like “[4] introduces an..”  as it is a bit informal when you don’t explicitly name the subject.&lt;br /&gt;
# Don’t just cite the reference when discussing the problem formulation, explicitly write the model formulation and solution process using LaTex or equation visual editor.&lt;br /&gt;
# Your team should ideally create a numerical example independently. If you take a numerical example directly from a textbook, etc., you will need to get explicit permission from the author in writing and share that written permission with me.&lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
# The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Some characters are randomly capitalized in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# These variables should be defined before the conclusion section, they are out of place here. Also, please use normal text when explaining variables except for the variable symbol. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Interior-point method for NLP|Interior point method for NLP]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Primal-Dual formulation and comparison to the Barrier Method is not discussed.&lt;br /&gt;
# Include brief discussion about big O convergence rates.&lt;br /&gt;
# Need discussion about the concept of “central path” and the notion of self concordance&lt;br /&gt;
# Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Graphs and images are incorrectly formatted to the page. Consider proper alignment with respect to the text body.&lt;br /&gt;
# Use explicitly typed Latex equations instead of images to represent math programs and equations.&lt;br /&gt;
# Fix typo “optimisation”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xi ”, “μ”, etc.).&lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# There are formatting issues with figures 2,3. Please make sure to embed them within their respective sections. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section &lt;br /&gt;
# Minor character code typos in the conclusion.&lt;br /&gt;
# Also, please add more discussion in this section. Future research directions is a good start.&lt;br /&gt;
# There is a box &amp;quot;􏰐&amp;quot;&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[AdaGrad|Adagrad]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Include discussion on its variants (most important is AdaDelta).&lt;br /&gt;
# Include disadvantages of Adagrad, since this provides motivation for the discussion on the variants and improvements of Adagrad&lt;br /&gt;
# Include comparisons to other popular optimizers (particularly important is comparisons to regular SGD and Adam)&lt;br /&gt;
# Different convergence rates are possible depending on the setting where Adagrad is used, but this is not mentioned on the page currently. As such the regret bound section should be more thoroughly explained.&lt;br /&gt;
# Algorithm image is blurry. Either increase the fidelity or write the pseudocode directly in the wiki editor.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the first sentence, “..take the following numerical example” should be followed by a colon. &lt;br /&gt;
# Fix typo “trayectory”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is too short; include specific applications in which input features are sparse and Adagrad excels.&lt;br /&gt;
# Add reference to the claim “Mainly, it is a good choice for deep learning models with sparse input features”.&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References &lt;br /&gt;
&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources (even if the base algorithm itself comes from a singular paper)&lt;br /&gt;
&lt;br /&gt;
== [[McCormick envelopes|McCormick Envelopes]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: OK but I suggest removing NetID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# First sentence is hard to read. Please consider keeping sentences below 25-30 words. &lt;br /&gt;
# No references provided. Please cite all sources. &lt;br /&gt;
# Figure 1 is provided in the middle between two sections. Please include in the introduction section. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# When using mathematical expressions and symbols, please use the equation editor. (e.g., x*y, exy + y, sin (x+y) - x2)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution. &lt;br /&gt;
# The solution technique should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Solving the numerical example by GAMS is inappropriate. Please provide detailed step-by-step calculation results.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each. &lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section: &lt;br /&gt;
* References&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;br /&gt;
&lt;br /&gt;
== [[Branch and bound (BB) for MINLP|Branch and Bound for MINLP]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
** Remove NetIDS&lt;br /&gt;
** Please remove abbreviations from the title (i.e. BB).&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please cite sources appropriately: References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Introduction is very short for a well-recognized topic. Please expand significantly. You may refer to the Wiki examples to get an idea on writing the Introduction to a topic.&lt;br /&gt;
# An illustration might be useful here.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The algorithm described here considers only binary integer variables. However, MINLP problems may include non-binary integer variables too. Please update the method or provide a short description of the assumptions that the MINLP problem needs to satisfy in order for the presented technique to be applicable.&lt;br /&gt;
# Use linked citations please as the Wiki template above. &lt;br /&gt;
# Please provide steps in a more organized way. Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Step 2 is missing yet it is referenced in the text multiple times. Please address this in addition to the above comment.&lt;br /&gt;
# An illustration might be useful here as well. &lt;br /&gt;
# Please explain what a Gomory Cut is. If the topic is available on optimization.cb.cornell.edu, you can link it.    &lt;br /&gt;
# The current equations seem to be simple text written in Italics. All mathematical symbols and equations should be formatted via LaTex.&lt;br /&gt;
# Please format the math programs with equations and notations using formulations in lecture notes as templates.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution.&lt;br /&gt;
# Please show a step-by-step solution in the example. The solution is incomplete. The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
# Please use the equation editor for equations or mathematical symbols. - All mathematical symbols and equations should be formatted via LaTex - this is a learning objective of the Wiki assignment. You can find some useful links on converting your equations/symbols into LaTex code here: (&amp;lt;nowiki&amp;gt;https://optimization.cbe.cornell.edu/index.php?title=Help:Contents&amp;lt;/nowiki&amp;gt;). Again, any formatting issue will incur a &amp;quot;compound&amp;quot; penalty in the grading.&lt;br /&gt;
# This example does not follow the MINLP structure discussed in the above section since binary variables are missing. Branch and bound may not be appropriate for such problems. Please provide an appropriate numerical example and solve it according to the above comments.&lt;br /&gt;
# Make sure your example is not taken from a book as that is strictly disallowed. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is not well-formatted. Please provide 3 applications and explain each in a few sentences and how BB for MINLP could be used. Also, please eliminate having multiple sections (Application, Mathematical problem, industrial application). All these could be merged together.&lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section:&lt;br /&gt;
# The sentence is hard to understand &amp;quot;a scheme that grows exponentially because&amp;quot; please use a simple language. Is it also theoretically correct? It is also not mentioned and explained earlier. Thus, please avoid introducing new concepts or terms at the end. &lt;br /&gt;
# Please use summarizing sentences to describe earlier sections instead of introducing new concepts/discussion. &lt;br /&gt;
* References&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources. A quick Google scholar search could provide relevant references.&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4800</id>
		<title>2021 Cornell Optimization Open Textbook Feedback</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4800"/>
		<updated>2021-12-06T03:06:59Z</updated>

		<summary type="html">&lt;p&gt;Asa273: /* Branch and Bound for MINLP */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[Lagrangean duality|Lagrangian duality]] ==&lt;br /&gt;
* Author list, sections and TOC&lt;br /&gt;
# Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor and avoid HTML formatting on the section titles.&lt;br /&gt;
# Remove cornell ID from Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes sentences on constructing the dual problem and is referred to as Lagrangian relaxation (LR). This is incorrect, please fix the definition of LR.&lt;br /&gt;
# Definitions of LR and its relation to duality should be double checked and re-written.&lt;br /&gt;
# Only one reference is present in this section. Please add more relevant references by expanding this section.&lt;br /&gt;
# Consider merging the “introduction” and “history” sections.&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The Lagrangian variables associated with equality constraints h(x) are unbounded but the Lagrangian dual problem states them as non-negative. Please fix the same.&lt;br /&gt;
# Also to construct a dual, we do not change minimization to maximization directly. We observed such things in the examples in lecture notes due to simplification. The lagrangian dual problem would be minimize (,).&lt;br /&gt;
# Adding to the previous point, the Lagrangian is a lower bound on the original objective; the solution to the primal and dual or only equivalent if the duality gap is 0. You reference this in one section, but this is after your statement “Hence, solving the dual problem, which is a function of the Lagrangian multipliers (𝜆*) yields the same solution as the primal problem, which is a function of the original variables (x*). “. Please clarify the specific conditions that must hold for the solution of the dual to be equal to the primal’s.&lt;br /&gt;
# You refer to the “Complementary Slackness Theorem”, but don’t actually write the mathematical representation of complementary slackness. Please fix this. Also consider including the derivation of the complementary slackness condition, as it is both easy and short. Boyd is a good reference for this.&lt;br /&gt;
# Last step of the “process” subsection also needs updating according to the previous comments.&lt;br /&gt;
# The inline notations should also be typed using LaTex.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Only one dual variable is associated with each constraint. The numerical example uses two for the first and second constraint which is unnecessary. Please update it accordingly for both constraints. This particular example will only have two dual variables instead of the five dual variables used currently.&lt;br /&gt;
# All consecutive steps need to be updated since the dual variables would be updated.&lt;br /&gt;
# After substitution the nonlinear function should be further simplified. The current expression reads like a highly nonlinear function but can be easily simplified.&lt;br /&gt;
# Similar to the comments in the methodology section, inverting minimize to maximize is incorrect. Please update the dual objective function and domain of dual variables accordingly.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Bullet points could be used to state the last four real-world examples that explain the physical meaning of the primal and dual problems.&lt;br /&gt;
# Add references for the last set of applications. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# This section contains a few typos. Please fix the same.&lt;br /&gt;
* References&lt;br /&gt;
# Some citations&#039; hyperlinks are displaying.&lt;br /&gt;
&lt;br /&gt;
== [[Disjunctive inequalities|Disjunctive Inequalities]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section and semester&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# No citations are present in this section.&lt;br /&gt;
# “mixed-integer programming (MIP)” should be used instead of “multiple integer programming (MIP)”. Please fix this error.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The abbreviation MILP is not previously defined. Please fix this issue.&lt;br /&gt;
# You consistently use the negative sign instead of the NOT operator for y (-y instead of ¬y). &lt;br /&gt;
# Some inconsistencies with the spacing of variables, constraints, etc., under the “General” section that need to be fixed.&lt;br /&gt;
# Typo in “This is shown below by M1, M2, y1, and y1:” where y1 needs to be changed to y2. Why use two different Big-M variables here? Elsewhere in the Wiki you only use one so this could lead to confusion with a general audience. Also if this was taken from the lecture notes then it needs to be cited.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please reformulate and solve a complete numerical example rather than just reformulating a general example. Demonstrate the use of Big-M and Convex Hull formulation in an optimization problem that provides details such as individual steps in the problem solving process and final results. The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results.&lt;br /&gt;
# Add space between vee (V) operator and brackets in first line of Latex&lt;br /&gt;
# Please format variables correctly, for example, use &amp;lt;math&amp;gt;x_1&amp;lt;/math&amp;gt; instead of x1.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please format the equations appropriately either by using latex code or the visual editor. These images are NOT acceptable!&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# There is no conclusion presented in this section at all.&lt;br /&gt;
* References&lt;br /&gt;
# The included references have NOT been used anywhere in the Wiki. Add references for sentences that are not common knowledge and please link them appropriately with the text in Wiki. If the figures used here were not original works, you must also cite them. &lt;br /&gt;
# There are many papers on this topic. A simple Google (Scholar) search could provide you with sufficient references to cite. &lt;br /&gt;
# Many important references of this topic are missing.&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
==[[Stochastic programming|Stochastic Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell IDs&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
# This section only includes two sentences on Stochastic programming (SP), while the rest gives examples of uncertainty. Please discuss the need for SP in the presence of uncertainty. Also, discussion on robust optimization and its limitations should be removed since it is out of place.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please avoid direct inline linkbacks to Wikipedia.&lt;br /&gt;
# The symbol “xi” in the methodology subsection should be explained.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Copying a numerical example &amp;quot;entirely&amp;quot; from a textbook is inappropriate. Your team should come up with a &amp;quot;numerical&amp;quot; case.&lt;br /&gt;
# No specific application context is needed for a numerical example.&lt;br /&gt;
# The inline notations (`x1`, `s1`) should also be typed using LaTex.&lt;br /&gt;
# Label all tables with a table number for better readability. &lt;br /&gt;
# Properly format the solution table with the label attached rather than the following sentence. The solution table looks different from the others, please fix this for consistency. &lt;br /&gt;
* A section to discuss and/or illustrate the applications;&lt;br /&gt;
# I suggest eliminating citing the last name of the first author (i.e. Zhou et al.)&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# URLs of some citations are not properly formatted (not showing the hyperlinks).&lt;br /&gt;
&lt;br /&gt;
== [[Exponential transformation|Exponential Transformation]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction.&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Last sentence with 51 words is hard to read. &lt;br /&gt;
# Second Sentence: please change the word “they” as it could make the meaning ambiguous&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
# If you use abbreviations, please introduce them (e.g. NLP,MINLP)&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please explain the transformation in words along with equations&lt;br /&gt;
# Terms like posynomial should be described in detail.&lt;br /&gt;
# Please move the numerical example to the section below&lt;br /&gt;
# The “(eq 1)” is not needed here.&lt;br /&gt;
# Please expand this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the third equation of the numerical example, it is confusing to have coefficients after numbers. Some readers may read it as an exponent.&lt;br /&gt;
# Last equation in this section after “further linearization” is incorrect. This equation cannot be further linearized, please fix this.&lt;br /&gt;
# Please explain the steps in the numerical examples in detail. The step-by-step solution should be provided. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Missing part of text: “Proof of convexity of with positive definite test of Hessian…”&lt;br /&gt;
# Applications are not numerical examples. Please refer to this link for example of applications: [[Duality|https://optimization.cbe.cornell.edu/index.php?title=Duality]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
# The section current applications is redundant&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
# Under current applications, do not just use a hyperlink to describe an application. Actually describe it. And properly inline citation style should be used instead of the hyperlink. &lt;br /&gt;
# The convexification application of MINLP can be further simplified for binary variables. Please refer to the lecture slides for more information.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references by using this as Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
&lt;br /&gt;
== [[Sparse Reconstruction with Compressed Sensing|Sparse reconstruction with Compressed Sensing]] ==&lt;br /&gt;
This Wiki needs a significant rewrite. Please go through the comments for details.&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction section should include information about the problem and its implications presented briefly. Please use full sentences to write this Wiki. You may use tools like Grammarly to check sentence formation and grammar.&lt;br /&gt;
# This section includes several typos like “sub modual”. Please fix them throughout the wiki and delete them if not required.&lt;br /&gt;
# Many abbreviations are used before previously defining them. Please define these abbreviations before using them in the text.&lt;br /&gt;
# This section is incomprehensible in its current form. Please rewrite with proper comprehension.&lt;br /&gt;
# Equations and math symbols need proper reformatting. The current version reads like text (along with equations) copy-pasted from a specific source. All mathematical symbols and equations should be formatted via LaTex - this is a learning objective of the Wiki assignment. You can find some useful links on converting your equations/symbols into LaTex code here: (https://optimization.cbe.cornell.edu/index.php?title=Help:Contents).&lt;br /&gt;
# Try to place the figure at the top of the Wiki between the main text.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# I suggest the use of more formal abstract illustrations. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Equations and symbols need proper reformatting.&lt;br /&gt;
# Lemmas and theorems are not expected for this Wiki. Sparse reconstruction is a straightforward concept but is unnecessarily complicated here. Please refer to other Wiki examples to get an idea of what the Wiki should convey.&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Numerical example is missing.&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion section is missing.&lt;br /&gt;
* References&lt;br /&gt;
# The current reference list is not correctly formatted. References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Portfolio optimization|Portfolio Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell id&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introductory sentence should be rephrased. The action of minimizing the risks does not inherently maximize the gains, rather PO aims to maximize gains whilst minimizing risks. &lt;br /&gt;
# Amount of whitespace can be reduced by changing the orientation of Figure 1 and the sentences in this section.&lt;br /&gt;
# Define terms such as risk, return, portfolio, etc., when you introduce them. Assume that the reader may not know much about finance. This goes for all other sections as well. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# A brief mention of modern portfolio theory (i.e.. Markowitz) would be appropriate in this section. &lt;br /&gt;
# Several grammatical errors here involving sentence structure and clarity. Some questionable semantics (e.g., “The portfolio optimization mainly assumes two directions.”) and syntax (phrases such as “.. is as follows” should be followed by a colon). Misuse of commas and missing commas in this section. Two sentences introducing E(rp) and w should be combined into one.&lt;br /&gt;
# Use LaTex to distinguish variables written within a sentence, such as m and n. &lt;br /&gt;
# Rephrase “Cut the relevant information and conditions in the portfolio optimization, as well as the final requirements into the relevant variables, constraints and linear functions of the linear programming problem.”&lt;br /&gt;
# An explanation of a few common constraints would be helpful, rather than just including a table. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Solving the numerical example by GAMS is inappropriate. Please provide detailed step-by-step calculation results.&lt;br /&gt;
# All tables need to be labeled.&lt;br /&gt;
# Include figure number in label for consistency. &lt;br /&gt;
# Fix misspelling “dolling decision variables”. &lt;br /&gt;
# Use LaTex for all variables, equations, and constraints here.&lt;br /&gt;
# Example 2 table is hard to read, so making it bigger would help. &lt;br /&gt;
# Remove the “Using excel as the solver” part from the sentence before the solution discussion. &lt;br /&gt;
# Some grammatical errors here (phrases such as “.. is as follows” should be followed by a colon). &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Rephrase “Portfolio optimization can be used to screen investment projects that meet investors, rationally allocate investment amounts, etc.”&lt;br /&gt;
# Not sure “relevant” is the correct word choice here. &lt;br /&gt;
# You need more specific examples with the utility of portfolio optimization, this section is quite general as is. Some more detail and focus on real-world applications in the financial industry that relate to retirement planning, financial security, economic stability, etc., would be helpful. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Need some commas here.&lt;br /&gt;
# The sentence “Linear programming has been around since the 1940’s and has such a wide base of applications” is not necessary. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove white space between end of sentences and reference numbers.&lt;br /&gt;
&lt;br /&gt;
== [[Chance-constraint method|Chance constraint method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please consider correcting a few grammatical errors: “pre-planned for”, “god”, “certain levels of feasibility is guaranteed in what are”, and “Performance of a system”&lt;br /&gt;
# In “Chance-constraint”, it is capitalized randomly throughout the introduction. Please correct.   &lt;br /&gt;
# Please use technical language to briefly introduce chance-constrained programming. Words like “acts of god”, “cost of doing business” are not appropriate for a  technical Wiki.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Xi is an uncertainty/randomness variable. It is better to use clear language. &lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others.&lt;br /&gt;
# Theory is insufficient. Please expand and explain different approaches. &lt;br /&gt;
# Please add pros and cons explicitly as a list. &lt;br /&gt;
# Explain the physical meaning for examples of chance constraints along with all the notations used.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please remove this example as it is directly from this book. The example should be purely numerical without any background.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others. &lt;br /&gt;
# Please change the table format so as not to confuse the reader. &lt;br /&gt;
# Multiple instances of [Chart to be added] are missing.&lt;br /&gt;
# Example is incomplete. &lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please connect several grammatical and spelling errors: “real life application”, Energy creation, particularly in renewable sources, have high variabilities”, and others&lt;br /&gt;
# “Zhao, Xue, Cao, and Zhang”. No need to list all authors within the article. Provide a reference is sufficient. If authors must be mentioned, (Zhao et al.) should be ok.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Uniqueness and universality earlier are not clear to me. If they are not discussed earlier in the application, it would be better not to introduce new discussions in the conclusion.&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
==  [[Bayesian Optimization]] ==&lt;br /&gt;
* Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor on the section titles.&lt;br /&gt;
* Contents: The section titles should NOT be in bold to avoid strange format in TOC. Any formatting issue will incur a penalty in the grading.&lt;br /&gt;
* Author list: Remove cornell ID, Please check names&lt;br /&gt;
* Introduction&lt;br /&gt;
# The introduction is too general and not substantial enough. For example, simply saying BayesOpt is useful when the objective function is unknown obscures exactly HOW it is useful (namely, computational efficiency in applications where ground truth sampling is expensive). Discussion on applications should be moved to a separate section.&lt;br /&gt;
# Machine learning rarely includes black-box functions to be optimized. Bayesian optimization is almost never used for optimizing ML loss functions but can instead be used for hyperparameter optimization. Please update such claims in this section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Captions need reformatting.&lt;br /&gt;
# Consider italicizing keywords rather than bolding.&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Discussion on acquisition functions should include comparisons, tradeoffs, and reasons to use one over the other. Should also note that expected improvement is the most widely used in practice, and explain.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Please write equations in the Wiki instead of attaching images for equations.&lt;br /&gt;
# Acquisition function figure could be made larger and clearer to improve readability.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any references to functions or methods in code ‘e.g. fmin’ should be properly formatted as code-stylized text.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Avoid including a figure of the code for this example and explicitly describe the steps to the modeling and solution process instead. &lt;br /&gt;
# Avoid pronouns such as “our” and “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please do not use brackets to enclose lists.&lt;br /&gt;
# Some claims here should be supported by references. Please cite each source after its sentence. &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to “pop” machine learning blogs where anyone can be an author. (e.g. towardsdatascience)&lt;br /&gt;
# All references are URLs. Please cite publications and literature.&lt;br /&gt;
# A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
Notes on grammar: Needs some work. Several instances where colons are inappropriately inserted mid sentence or in subheadings. Explanations are not terse. Several instances of switching between personal and impersonal style of writing, which is distracting.&lt;br /&gt;
&lt;br /&gt;
== [[Conjugate gradient methods]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Introduction&lt;br /&gt;
# All inline notations (e.g., `x`, `A`) should be typed using LaTex.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
# Is Gauss-Newton no longer referenced?&lt;br /&gt;
# Theorems listed in the first section should be accompanied with high level explanation, not just a list of the theorems themselves. The page should read like an article, with proper flow.&lt;br /&gt;
# Please indent equation blocks.&lt;br /&gt;
# Please properly format pseudocode.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Steps should be accompanied with explanation, or reference to the corresponding step in the pseudocode.&lt;br /&gt;
# Please properly format in a more organized manner, aligning equations appropriately and demarcating steps appropriately.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
# Consider including 2 additional examples of applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Consider adding future research directions&lt;br /&gt;
* References&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Too few references.&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Geometric programming|Geometric Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Examples of applications in this section use the same reference. Please cite their individual sources.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The symbol denoting the domain in the definition of a monomial is unclear. Please clarify it or fix this if it is incorrect.&lt;br /&gt;
# Definition of posynomial refers to section 2.1 which is missing from the Wiki (sections are not numbered in the main text).&lt;br /&gt;
# In the generalized posynomial subsection, bullet points do not tell us why h(x) is posynomial. Either provide reasons or simply state that h(x) is posynomial. Also explain why h3 is a generalized posynomial.&lt;br /&gt;
# Additional theory on the feasibility analysis could be provided in this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the transformation example, the last two constraints could also be simplified by applying a natural logarithm on both sides. Please update them as well.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The figure in this section needs to be labeled. &lt;br /&gt;
# The figure needs to be resized and perhaps aligned to the center.  &lt;br /&gt;
* A conclusion section:&lt;br /&gt;
# Please avoid vague language such as: “This makes”.&lt;br /&gt;
# Please avoid opinionated statements: “one of the best ways”.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# This Wiki has very few references. A quick Google Scholar search may provide relevant references.&lt;br /&gt;
&lt;br /&gt;
== [[Adam]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Some grammatical errors here, mostly related to the need for commas in certain places (e.g., “Before Adam..”).&lt;br /&gt;
# Some minor errors with parts of speech throughout the section, need to revisit phrases such as “which has broader scope in future for”, etc. &lt;br /&gt;
# Try splitting up some of the longer sentences in this section, a couple are hard to read.&lt;br /&gt;
# Avoid definitive statements about Adam being the best or always better solver, as this is simply not true (the choice of the “best” optimizer is setting-dependent). Use language such as “Research has shown that Adam has demonstrated superior experimental performance over..” and then cite academic references to back this claim. &lt;br /&gt;
# What does adam stand for? Introduction is insufficient. Please expand. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Revise grammar here, noticing some missing commas and uncapitalized word after period.&lt;br /&gt;
# Rephrase “second one is to update the old position with the updated position”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section, and actual subscripts instead of “m_t”, etc. &lt;br /&gt;
# Avoid inserting inline citations after words like “According to..” or “This article..” as it is a bit informal. This could be rephrased or changed to something like “According to author,^[2] …” with author name inserted. &lt;br /&gt;
# Remove white space before the period in RMSP discussion.&lt;br /&gt;
# Please provide a pseudocode. &lt;br /&gt;
# Please use list the two methods here “Adam is a combination of two gradient descent methods which are explained below”&lt;br /&gt;
# Please expand the theory section significantly. Theoretical convergence properties should be discussed, even if briefly.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Same comment as before, consider replacing inline citations after words like “According to..”. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to blogs and use peer-reviewed academic references instead. &lt;br /&gt;
# Too few references.&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[A-star algorithm|a* algorithm]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor and avoid HTML formatting on the section titles.&lt;br /&gt;
* An introduction of the topic:&lt;br /&gt;
# Weird spacing between paragraphs. Please fix this issue.&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. &lt;br /&gt;
# Please consider correcting a few grammatical errors: “Optimal path”, “cross country”, missing period at end of first paragraph, other random capitalizations, etc.&lt;br /&gt;
# There are no citations in the introduction. Please cite every source.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add the mathematical description of the algorithm.&lt;br /&gt;
# Reference style varies in sentences. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please fix grammatical and spelling errors as (“from current position to the goal”, “There are a lot of discussions”, etc). Also, many hyphens are missing as “non playable”.&lt;br /&gt;
# In algorithms, it is a standard to add high-level description (i.e. pseudocode or flowchart). Please incorporate it. &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section (e.g., “f(n)...”, “h(n)..”, etc.). This goes for other sections as well.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The numerical example does not show the full computations the algorithm performs. Please show the computation on a smaller example.&lt;br /&gt;
# Instead of writing things like “The above image..”, label each figure and use the figure number to refer to it in text. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# No references in the applications. Please cite every source &lt;br /&gt;
# Preferably, add at least an additional application.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion should summarize descriptions. Please modify it to provide a summary.  &lt;br /&gt;
# Please pay attention to the length and structure of sentences here and in the full page. First sentence is hard to read.&lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format and are not linked correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Incorrect reference style. Please follow the example and use the template.&lt;br /&gt;
&lt;br /&gt;
== [[Job shop scheduling|Job-Shop Scheduling Problem]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The current introduction to the jobshop scheduling problem has only two sentences in addition to the parameter description. Introduction typically contains information about the problem, its importance in the real-world, and some information about the solution techniques and their types to solve the problem. Please add some information that covers the above.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# It is unclear whether the assumptions stated in this section are required to apply the following solution techniques. Please clarify the same. Also use complete sentences to state them.&lt;br /&gt;
# The branch and bounds method described in this section only discusses the solution technique for problems with one machines. However, branch and bound is a general technique that can be applied to any MILP problems with varying scales. Please update the “methods” section to be as general as possible.&lt;br /&gt;
# Since this Wiki focuses on jobshop scheduling, at least two methods are expected. Branch and bound is a general MILP technique, so, it is recommended to add a tailored technique that can only solve specific jobshop scheduling problems. Solving the numerical example with this technique is not necessary.&lt;br /&gt;
# Reference to the branch and bound technique described in this section is a “youtube” video. Please add references in literature that describe this method in detail. The method used in this video is highly tailored for a single machine application. This is also an incorrect way to cite a reference. Please keep this section as general as possible.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section and all other sections as well.&lt;br /&gt;
# Check grammar in this section. For example, phrases like “are as follows” need to be followed by a colon and not a period. &lt;br /&gt;
# Consider rewriting the assumptions as a list in this section. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The example used in this section is exactly the same as the one in the youtube video. Please use a modification of this example or choose another example/method to demonstrate the solution technique. Your team should ideally create a numerical example independently. If you take a numerical example directly from a particular source, you will need to get explicit permission from the textbook author in writing and share that written permission with the instructors.&lt;br /&gt;
# The figure in this section is not numbered when all others are. Relabel this figure for consistency and its number to refer to it in-text.&lt;br /&gt;
# A numerical example should be simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments).&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section should only focus on real-world applications of the jobshop scheduling problem. But currently, this section includes additional information on solution techniques/complexity that is appropriate for the Introduction section. Please discuss the applications of the problem in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# The meaning of  “Operations applications” is unclear. Please explain or update if necessary.&lt;br /&gt;
# The current conclusion section does not properly summarize the problem. Please refer to other Wiki examples for an idea to update the section accordingly.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Please reference media sources like reference 5 appropriately.&lt;br /&gt;
# A simple Google Scholar search would give you many &amp;quot;formal&amp;quot; references.&lt;br /&gt;
&lt;br /&gt;
== [[Optimization in game theory]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: remove cornell IDs. &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Why only a subsection on &amp;quot;Nash Equilibrium&amp;quot; is included in &amp;quot;Theory&amp;quot; section? Please re-format.&lt;br /&gt;
# Please edit references.&lt;br /&gt;
# Add a mathematical description of the problem and a pseudocode/flowchart for the Lemke-Howson algorithm.  &lt;br /&gt;
# Rephrase “This algorithm utilizes iterated pivoting much like the simplex algorithm used in the simplex algorithm used in linear programming”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please organize the last part in a more readable format. Questions may be in bold and numbered, answers are more direct, etc.&lt;br /&gt;
# Remember to cite all images and tables. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Very good, link the reference and cite all sources. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summarizing especially from theory sentences and avoid long sentences. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Incorrect reference style. Please correct.&lt;br /&gt;
&lt;br /&gt;
== [[Trust-region methods]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
# Remove cornell IDs. Author is also spelled incorrectly. &lt;br /&gt;
# Add the course section.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xk”, “f`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “we”. This goes for all other sections as well.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Organization of ideas in this section needs work.&lt;br /&gt;
# You have not defined explicitly why the Cauchy point is important to compute beyond a vague allusion to performance improvements, which is also wrong (it is useful because of its guarantees for convergence, not performance) It is also misspelled.&lt;br /&gt;
# Each approach should have accompanying explanation and motivation for why it is being discussed. It is not enough to outline the algorithm.&lt;br /&gt;
# Please make sure symbols are properly subscripted and superscripted (e.g. “pk” should be “p_k”&lt;br /&gt;
# Please format the algorithm in proper algorithmic pseudocode format.&lt;br /&gt;
# Little to no discussion on global convergence guarantees&lt;br /&gt;
# Please include discussion about the advantages and disadvantages of the algorithm&lt;br /&gt;
# Fix typo “couchy point”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any code functions (uminfunc) should have proper text formatting.&lt;br /&gt;
# The graph needs a better caption explaining how the axes are labeled and what data points are being shown.&lt;br /&gt;
# Please increase the quality of the figure. It is hard to see the red line. &lt;br /&gt;
# Add citation to “The Rosenbrock function is a non-convex function, introduced by Howard H. Rosenbrock in 1960, which is often used as a performance test problem for optimization algorithms.”&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The content in this section as it is currently does NOT describe applications, but rather different approaches within the trust region methodology. Please provide specific applications (e.g. TRPO in reinforcement learning).&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summary, future research directions for example is a good start.&lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style.&lt;br /&gt;
# Please consider having the references as this Wiki template, &amp;lt;nowiki&amp;gt;https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
*There are numerous misspellings, grammatical errors, and incorrect claims. Please fix these.&lt;br /&gt;
&lt;br /&gt;
== [[Momentum]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Apart from an explanation on momentum, it is necessary to briefly point out the limitations of SGD and why momentum could help with these limitations. Please update it accordingly.&lt;br /&gt;
# Remove bold on “Momentum”.&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Equation formatting is very poor and should be formalized.&lt;br /&gt;
# It is important to use technical language for this Wiki. Although a layman’s explanation is appreciated, it would be better to skip using words like “zig zagging”. Try to explain all concepts in a technical language with few simplifications but NOT vice versa.&lt;br /&gt;
# The definition of the update rule for SGD with momentum looks incorrect, specifically the first expression. Please fix it and also explain all the parameters used.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “W”, “V`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “you”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;. Since writing all iterations is not feasible, at least present a few iterations for both cases.&lt;br /&gt;
# Please try to label the plots that explains what each line color means.&lt;br /&gt;
# Starting point for SGD with momentum is different in explanation and the table. Please fix the same.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please use correct terminology like “optimizing non-convex functions” and not “training non-convex models”.&lt;br /&gt;
# Adam, Adadelta, and RMSprop are variants of SGD that already use momentum. Please double check the writing and update if necessary.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please refrain from using words like “zig zag” effects.&lt;br /&gt;
* References&lt;br /&gt;
# Almost all references used are URLs. Please try to add journal/conference articles or books for references, instead of directly citing the URLs. Please check the list below and run a quick Google (Scholar) search to identify relevant literature.&lt;br /&gt;
&lt;br /&gt;
== [[Stochastic dynamic programming|Stochastic Dynamic programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions &lt;br /&gt;
# Remove the grey box background of equations.&lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Outer-approximation (OA)|Outer-approximation]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic &lt;br /&gt;
# See formatting guideline below&lt;br /&gt;
# Avoid opinionated statements such as “MINLP problems are usually the hardest to solve”.&lt;br /&gt;
# Rearrange the text such that the MINLP formulation is in the theory section and keep the introduction in words only.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Consider left aligning equations and optimization problem formulations by the “=”. See [[Stochastic programming|https://optimization.cbe.cornell.edu/index.php?title=Stochastic_programming]] for an example&lt;br /&gt;
# The sentence “The Outer-Approximation (OA) algorithm was first proposed by Duran and and Grossmann in 1986 to solve MINLP problems.” needs a reference. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# “Minimize” and “subject to” should be “min” and “s.t.” in MathType&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Does not explicitly point out why OA is applicable (and/or preferred) in these applications, rather than other MINLP approaches (show that the problem formulations are amenable to a solution approach through OA)&lt;br /&gt;
# The sentence “... an active research area and there exists a vast number of applications in fields such as engineering, computational chemistry, and finance.” needs references. &lt;br /&gt;
# Posting GAMS code on the page is generally inappropriate and discouraged. Please check with the TAs or me if you have a strong desire to post GAMS codes on the Wiki page. A typical textbook should not be limited to a specific software package. If the GAMS code must be posted, please also post ALL other software implementation versions, such as Pyomo and JuliaOPT, among others.&lt;br /&gt;
# Consider reformatting to make steps more readable. Inserting spaces and breaking down steps would help. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Too short. Consider discussion on future research direction and discussion on uncertainty&lt;br /&gt;
# Please review abbreviations throughout the page. Why is MINLP redefined here? “Outer-Approximation is a well known efficient approach for solving convex mixed-integer nonlinear programs (MINLP)”. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove &amp;quot;Template:Reflist&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== [[Unit commitment problem]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction and avoid discussions of examples or specific applications in this section.&lt;br /&gt;
# The sentence “Nonlinear, Non-convex programming optimization problem.” doesn’t make sense by itself and Non-convex shouldn’t be capitalized.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Figure/image format should be revised to better display the content.&lt;br /&gt;
# Uppercase characters are used randomly (e.g., “non-convex transmission Constraints”) . Please follow correct language conventions for sentence structure.&lt;br /&gt;
# Avoid inserting inline citations after words like “written in matrix form as equation [3]..” or “presented in [3]...” as it is a bit informal when you don’t explicitly name the subject. Also these two sentences are grammatically incorrect and appear to be missing an ending period and comma, respectively. &lt;br /&gt;
# Don’t say “written in matrix form as equation..” and just cite the reference, actually write out the equation. &lt;br /&gt;
# Properly label the figure in this section with a figure number and improve visibility by making it larger. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Label the figures in this section properly with figure numbers.&lt;br /&gt;
# Fix typo “while minimize” to “while minimizing”. &lt;br /&gt;
# Avoid pronouns such as “we”. &lt;br /&gt;
# Use the equation editor when typing equations. &lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
# The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# I suggest changing the order of the subtitles here. For example, Single-Period Unit Commitment. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Frank-Wolfe]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# I suggest highlighting disadvantages along with advantages. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# “[n x 1] matrix” please use the equation editor to express mathematical descriptions and symbols (p,b, etc)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please show at least a few iterations. Even for smaller examples if needed. Report the final solution. &lt;br /&gt;
# Please use the LaTex code or equation editor for min and include s.t., etc.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. For your example, please explicitly state that the derivative is taken etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications: &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Same as the introduction. Pros and cons should be evaluated together!&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Line search methods|Line Search Method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Expand the introduction and avoid discussion on some of the specific steps in the solution process. &lt;br /&gt;
# Provide references here. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The phrase “are as follows” in the steepest descent method discussion needs to be followed by a colon. &lt;br /&gt;
# Rephrase “has a nice convergence theory” and cite a reference for this claim.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Add citation after “.. proposed by Phillip Wolfe in 1969.”&lt;br /&gt;
# Figure 1 is between two sections. Please fix this issue. &lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# Add some space between iterations or subsection break&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# Too few references in this section. &lt;br /&gt;
# Last paragraph makes some claims without references. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Piecewise linear approximation|Piecewise Linear Approximation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The content of this section is good, but there are some issues with sentence clarity and some other grammatical errors. Please revisit this section and make changes accordingly. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Fix typo “to force the x’ values become associated with”. &lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Some of these longer sentences are hard to read. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Expand the conclusion section to be longer than one sentence. The conclusion section to include a brief summary of what was discussed above, an emphasis on it’s significance, and a brief discussion of future extensions and research direction if applicable.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to sources when possible.&lt;br /&gt;
&lt;br /&gt;
== [[Mathematical programming with equilibrium constraints|Mathematical Programming with Equilibrium constraints]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes several terms like variational inequalities, constraint qualifications that were not discussed in the class. Please add a sentence to explain them before using them.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The meaning of parameter vector x is unclear. Please add more information or update if necessary.&lt;br /&gt;
# Equations and symbols in the PIPA subsection are not formatted correctly. Please use the same formatting for all equations, so they read as mathematical equations and not text. This goes for all other sections as well.&lt;br /&gt;
# Use equations instead of images to represent math programs and equations in the Implicit Descent and SQP subsection.&lt;br /&gt;
# Apart from the steps for each solution technique, please also add a few sentences that describe each method.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please define the terms like NCP, MP before abbreviating them. Also try not to unnecessarily abbreviate simple terms.&lt;br /&gt;
# Equations should be typed by LaTex. Images for equations are unacceptable.&lt;br /&gt;
# GAMS code is strongly discouraged. Please solve the problem &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The selected numerical example is fine but is directly solved with the MPEC solver in GAMS. Try to solve it manually like the homework/in-class problems step by step using the steps described in the previous section by choosing any of the methods.&lt;br /&gt;
# Avoid using figures in the equations (subject to etc)&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Add references to “power management, highway pricing, chemical process engineering, and traffic planning.”&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# This Wiki contains very few references. Please check the list below and run a quick Google (Scholar) search to identify relevant literature.&lt;br /&gt;
&lt;br /&gt;
== [[Wing shape optimization|Wing shape Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC. Any formatting issue will incur a penalty in the grading.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction is missing several references (e.g., “software packages like computational fluid dynamics..”, sentences containing things that aren’t common knowledge, performance claims, etc.)&lt;br /&gt;
# Avoid discussion involving finer details of subject methods in this section. &lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. Same applies to box of content!&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Properly cite the CFD package, don’t just include a link. &lt;br /&gt;
# Properly label the figure with a figure number.&lt;br /&gt;
# Consider removing white space between isolated sentences to improve readability. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# If you’ve already defined an abbreviation (CFD), there is no need to define it again. Just use the abbreviation.&lt;br /&gt;
# Avoid pronouns such as “we” or “they”.&lt;br /&gt;
# Phrases like “under the following” need to be followed by a colon.&lt;br /&gt;
# Properly label the figure with a figure number and consider making them larger to improve visibility. Call the reader&#039;s attention to the figures in text by referencing the figure number.&lt;br /&gt;
# “As seen in the video below” is stated yet there are only images present and it may be initially unclear to the reader which figure is being referenced here. &lt;br /&gt;
# Avoid inserting inline citations like “[4] introduces an..”  as it is a bit informal when you don’t explicitly name the subject.&lt;br /&gt;
# Don’t just cite the reference when discussing the problem formulation, explicitly write the model formulation and solution process using LaTex or equation visual editor.&lt;br /&gt;
# Your team should ideally create a numerical example independently. If you take a numerical example directly from a textbook, etc., you will need to get explicit permission from the author in writing and share that written permission with me.&lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
# The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Some characters are randomly capitalized in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# These variables should be defined before the conclusion section, they are out of place here. Also, please use normal text when explaining variables except for the variable symbol. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Interior-point method for NLP|Interior point method for NLP]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Primal-Dual formulation and comparison to the Barrier Method is not discussed.&lt;br /&gt;
# Include brief discussion about big O convergence rates.&lt;br /&gt;
# Need discussion about the concept of “central path” and the notion of self concordance&lt;br /&gt;
# Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Graphs and images are incorrectly formatted to the page. Consider proper alignment with respect to the text body.&lt;br /&gt;
# Use explicitly typed Latex equations instead of images to represent math programs and equations.&lt;br /&gt;
# Fix typo “optimisation”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xi ”, “μ”, etc.).&lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# There are formatting issues with figures 2,3. Please make sure to embed them within their respective sections. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section &lt;br /&gt;
# Minor character code typos in the conclusion.&lt;br /&gt;
# Also, please add more discussion in this section. Future research directions is a good start.&lt;br /&gt;
# There is a box &amp;quot;􏰐&amp;quot;&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[AdaGrad|Adagrad]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Include discussion on its variants (most important is AdaDelta).&lt;br /&gt;
# Include disadvantages of Adagrad, since this provides motivation for the discussion on the variants and improvements of Adagrad&lt;br /&gt;
# Include comparisons to other popular optimizers (particularly important is comparisons to regular SGD and Adam)&lt;br /&gt;
# Different convergence rates are possible depending on the setting where Adagrad is used, but this is not mentioned on the page currently. As such the regret bound section should be more thoroughly explained.&lt;br /&gt;
# Algorithm image is blurry. Either increase the fidelity or write the pseudocode directly in the wiki editor.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the first sentence, “..take the following numerical example” should be followed by a colon. &lt;br /&gt;
# Fix typo “trayectory”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is too short; include specific applications in which input features are sparse and Adagrad excels.&lt;br /&gt;
# Add reference to the claim “Mainly, it is a good choice for deep learning models with sparse input features”.&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References &lt;br /&gt;
&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources (even if the base algorithm itself comes from a singular paper)&lt;br /&gt;
&lt;br /&gt;
== [[McCormick envelopes|McCormick Envelopes]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: OK but I suggest removing NetID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# First sentence is hard to read. Please consider keeping sentences below 25-30 words. &lt;br /&gt;
# No references provided. Please cite all sources. &lt;br /&gt;
# Figure 1 is provided in the middle between two sections. Please include in the introduction section. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# When using mathematical expressions and symbols, please use the equation editor. (e.g., x*y, exy + y, sin (x+y) - x2)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution. &lt;br /&gt;
# For the sample GAMS code, please place it in a code box&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each. &lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section: &lt;br /&gt;
* References&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;br /&gt;
== [[Branch and bound (BB) for MINLP|Branch and Bound for MINLP]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
** Remove NetIDS&lt;br /&gt;
** Please remove abbreviations from the title (i.e. BB).&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please cite sources appropriately: References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Introduction is very short for a well-recognized topic. Please expand significantly. You may refer to the Wiki examples to get an idea on writing the Introduction to a topic.&lt;br /&gt;
# An illustration might be useful here.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The algorithm described here considers only binary integer variables. However, MINLP problems may include non-binary integer variables too. Please update the method or provide a short description of the assumptions that the MINLP problem needs to satisfy in order for the presented technique to be applicable.&lt;br /&gt;
# Use linked citations please as the Wiki template above. &lt;br /&gt;
# Please provide steps in a more organized way. Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Step 2 is missing yet it is referenced in the text multiple times. Please address this in addition to the above comment.&lt;br /&gt;
# An illustration might be useful here as well. &lt;br /&gt;
# Please explain what a Gomory Cut is. If the topic is available on optimization.cb.cornell.edu, you can link it.    &lt;br /&gt;
# The current equations seem to be simple text written in Italics. All mathematical symbols and equations should be formatted via LaTex.&lt;br /&gt;
# Please format the math programs with equations and notations using formulations in lecture notes as templates.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution.&lt;br /&gt;
# Please show a step-by-step solution in the example. The solution is incomplete. The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
# Please use the equation editor for equations or mathematical symbols. - All mathematical symbols and equations should be formatted via LaTex - this is a learning objective of the Wiki assignment. You can find some useful links on converting your equations/symbols into LaTex code here: (&amp;lt;nowiki&amp;gt;https://optimization.cbe.cornell.edu/index.php?title=Help:Contents&amp;lt;/nowiki&amp;gt;). Again, any formatting issue will incur a &amp;quot;compound&amp;quot; penalty in the grading.&lt;br /&gt;
# This example does not follow the MINLP structure discussed in the above section since binary variables are missing. Branch and bound may not be appropriate for such problems. Please provide an appropriate numerical example and solve it according to the above comments.&lt;br /&gt;
# Make sure your example is not taken from a book as that is strictly disallowed. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is not well-formatted. Please provide 3 applications and explain each in a few sentences and how BB for MINLP could be used. Also, please eliminate having multiple sections (Application, Mathematical problem, industrial application). All these could be merged together.&lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section:&lt;br /&gt;
# The sentence is hard to understand &amp;quot;a scheme that grows exponentially because&amp;quot; please use a simple language. Is it also theoretically correct? It is also not mentioned and explained earlier. Thus, please avoid introducing new concepts or terms at the end. &lt;br /&gt;
# Please use summarizing sentences to describe earlier sections instead of introducing new concepts/discussion. &lt;br /&gt;
* References&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources. A quick Google scholar search could provide relevant references.&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4799</id>
		<title>2021 Cornell Optimization Open Textbook Feedback</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4799"/>
		<updated>2021-12-06T03:06:23Z</updated>

		<summary type="html">&lt;p&gt;Asa273: /* Branch and Bound for MINLP */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[Lagrangean duality|Lagrangian duality]] ==&lt;br /&gt;
* Author list, sections and TOC&lt;br /&gt;
# Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor and avoid HTML formatting on the section titles.&lt;br /&gt;
# Remove cornell ID from Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes sentences on constructing the dual problem and is referred to as Lagrangian relaxation (LR). This is incorrect, please fix the definition of LR.&lt;br /&gt;
# Definitions of LR and its relation to duality should be double checked and re-written.&lt;br /&gt;
# Only one reference is present in this section. Please add more relevant references by expanding this section.&lt;br /&gt;
# Consider merging the “introduction” and “history” sections.&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The Lagrangian variables associated with equality constraints h(x) are unbounded but the Lagrangian dual problem states them as non-negative. Please fix the same.&lt;br /&gt;
# Also to construct a dual, we do not change minimization to maximization directly. We observed such things in the examples in lecture notes due to simplification. The lagrangian dual problem would be minimize (,).&lt;br /&gt;
# Adding to the previous point, the Lagrangian is a lower bound on the original objective; the solution to the primal and dual or only equivalent if the duality gap is 0. You reference this in one section, but this is after your statement “Hence, solving the dual problem, which is a function of the Lagrangian multipliers (𝜆*) yields the same solution as the primal problem, which is a function of the original variables (x*). “. Please clarify the specific conditions that must hold for the solution of the dual to be equal to the primal’s.&lt;br /&gt;
# You refer to the “Complementary Slackness Theorem”, but don’t actually write the mathematical representation of complementary slackness. Please fix this. Also consider including the derivation of the complementary slackness condition, as it is both easy and short. Boyd is a good reference for this.&lt;br /&gt;
# Last step of the “process” subsection also needs updating according to the previous comments.&lt;br /&gt;
# The inline notations should also be typed using LaTex.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Only one dual variable is associated with each constraint. The numerical example uses two for the first and second constraint which is unnecessary. Please update it accordingly for both constraints. This particular example will only have two dual variables instead of the five dual variables used currently.&lt;br /&gt;
# All consecutive steps need to be updated since the dual variables would be updated.&lt;br /&gt;
# After substitution the nonlinear function should be further simplified. The current expression reads like a highly nonlinear function but can be easily simplified.&lt;br /&gt;
# Similar to the comments in the methodology section, inverting minimize to maximize is incorrect. Please update the dual objective function and domain of dual variables accordingly.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Bullet points could be used to state the last four real-world examples that explain the physical meaning of the primal and dual problems.&lt;br /&gt;
# Add references for the last set of applications. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# This section contains a few typos. Please fix the same.&lt;br /&gt;
* References&lt;br /&gt;
# Some citations&#039; hyperlinks are displaying.&lt;br /&gt;
&lt;br /&gt;
== [[Disjunctive inequalities|Disjunctive Inequalities]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section and semester&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# No citations are present in this section.&lt;br /&gt;
# “mixed-integer programming (MIP)” should be used instead of “multiple integer programming (MIP)”. Please fix this error.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The abbreviation MILP is not previously defined. Please fix this issue.&lt;br /&gt;
# You consistently use the negative sign instead of the NOT operator for y (-y instead of ¬y). &lt;br /&gt;
# Some inconsistencies with the spacing of variables, constraints, etc., under the “General” section that need to be fixed.&lt;br /&gt;
# Typo in “This is shown below by M1, M2, y1, and y1:” where y1 needs to be changed to y2. Why use two different Big-M variables here? Elsewhere in the Wiki you only use one so this could lead to confusion with a general audience. Also if this was taken from the lecture notes then it needs to be cited.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please reformulate and solve a complete numerical example rather than just reformulating a general example. Demonstrate the use of Big-M and Convex Hull formulation in an optimization problem that provides details such as individual steps in the problem solving process and final results. The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results.&lt;br /&gt;
# Add space between vee (V) operator and brackets in first line of Latex&lt;br /&gt;
# Please format variables correctly, for example, use &amp;lt;math&amp;gt;x_1&amp;lt;/math&amp;gt; instead of x1.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please format the equations appropriately either by using latex code or the visual editor. These images are NOT acceptable!&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# There is no conclusion presented in this section at all.&lt;br /&gt;
* References&lt;br /&gt;
# The included references have NOT been used anywhere in the Wiki. Add references for sentences that are not common knowledge and please link them appropriately with the text in Wiki. If the figures used here were not original works, you must also cite them. &lt;br /&gt;
# There are many papers on this topic. A simple Google (Scholar) search could provide you with sufficient references to cite. &lt;br /&gt;
# Many important references of this topic are missing.&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
==[[Stochastic programming|Stochastic Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell IDs&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
# This section only includes two sentences on Stochastic programming (SP), while the rest gives examples of uncertainty. Please discuss the need for SP in the presence of uncertainty. Also, discussion on robust optimization and its limitations should be removed since it is out of place.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please avoid direct inline linkbacks to Wikipedia.&lt;br /&gt;
# The symbol “xi” in the methodology subsection should be explained.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Copying a numerical example &amp;quot;entirely&amp;quot; from a textbook is inappropriate. Your team should come up with a &amp;quot;numerical&amp;quot; case.&lt;br /&gt;
# No specific application context is needed for a numerical example.&lt;br /&gt;
# The inline notations (`x1`, `s1`) should also be typed using LaTex.&lt;br /&gt;
# Label all tables with a table number for better readability. &lt;br /&gt;
# Properly format the solution table with the label attached rather than the following sentence. The solution table looks different from the others, please fix this for consistency. &lt;br /&gt;
* A section to discuss and/or illustrate the applications;&lt;br /&gt;
# I suggest eliminating citing the last name of the first author (i.e. Zhou et al.)&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# URLs of some citations are not properly formatted (not showing the hyperlinks).&lt;br /&gt;
&lt;br /&gt;
== [[Exponential transformation|Exponential Transformation]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction.&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Last sentence with 51 words is hard to read. &lt;br /&gt;
# Second Sentence: please change the word “they” as it could make the meaning ambiguous&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
# If you use abbreviations, please introduce them (e.g. NLP,MINLP)&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please explain the transformation in words along with equations&lt;br /&gt;
# Terms like posynomial should be described in detail.&lt;br /&gt;
# Please move the numerical example to the section below&lt;br /&gt;
# The “(eq 1)” is not needed here.&lt;br /&gt;
# Please expand this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the third equation of the numerical example, it is confusing to have coefficients after numbers. Some readers may read it as an exponent.&lt;br /&gt;
# Last equation in this section after “further linearization” is incorrect. This equation cannot be further linearized, please fix this.&lt;br /&gt;
# Please explain the steps in the numerical examples in detail. The step-by-step solution should be provided. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Missing part of text: “Proof of convexity of with positive definite test of Hessian…”&lt;br /&gt;
# Applications are not numerical examples. Please refer to this link for example of applications: [[Duality|https://optimization.cbe.cornell.edu/index.php?title=Duality]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
# The section current applications is redundant&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
# Under current applications, do not just use a hyperlink to describe an application. Actually describe it. And properly inline citation style should be used instead of the hyperlink. &lt;br /&gt;
# The convexification application of MINLP can be further simplified for binary variables. Please refer to the lecture slides for more information.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references by using this as Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
&lt;br /&gt;
== [[Sparse Reconstruction with Compressed Sensing|Sparse reconstruction with Compressed Sensing]] ==&lt;br /&gt;
This Wiki needs a significant rewrite. Please go through the comments for details.&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction section should include information about the problem and its implications presented briefly. Please use full sentences to write this Wiki. You may use tools like Grammarly to check sentence formation and grammar.&lt;br /&gt;
# This section includes several typos like “sub modual”. Please fix them throughout the wiki and delete them if not required.&lt;br /&gt;
# Many abbreviations are used before previously defining them. Please define these abbreviations before using them in the text.&lt;br /&gt;
# This section is incomprehensible in its current form. Please rewrite with proper comprehension.&lt;br /&gt;
# Equations and math symbols need proper reformatting. The current version reads like text (along with equations) copy-pasted from a specific source. All mathematical symbols and equations should be formatted via LaTex - this is a learning objective of the Wiki assignment. You can find some useful links on converting your equations/symbols into LaTex code here: (https://optimization.cbe.cornell.edu/index.php?title=Help:Contents).&lt;br /&gt;
# Try to place the figure at the top of the Wiki between the main text.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# I suggest the use of more formal abstract illustrations. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Equations and symbols need proper reformatting.&lt;br /&gt;
# Lemmas and theorems are not expected for this Wiki. Sparse reconstruction is a straightforward concept but is unnecessarily complicated here. Please refer to other Wiki examples to get an idea of what the Wiki should convey.&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Numerical example is missing.&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion section is missing.&lt;br /&gt;
* References&lt;br /&gt;
# The current reference list is not correctly formatted. References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Portfolio optimization|Portfolio Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell id&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introductory sentence should be rephrased. The action of minimizing the risks does not inherently maximize the gains, rather PO aims to maximize gains whilst minimizing risks. &lt;br /&gt;
# Amount of whitespace can be reduced by changing the orientation of Figure 1 and the sentences in this section.&lt;br /&gt;
# Define terms such as risk, return, portfolio, etc., when you introduce them. Assume that the reader may not know much about finance. This goes for all other sections as well. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# A brief mention of modern portfolio theory (i.e.. Markowitz) would be appropriate in this section. &lt;br /&gt;
# Several grammatical errors here involving sentence structure and clarity. Some questionable semantics (e.g., “The portfolio optimization mainly assumes two directions.”) and syntax (phrases such as “.. is as follows” should be followed by a colon). Misuse of commas and missing commas in this section. Two sentences introducing E(rp) and w should be combined into one.&lt;br /&gt;
# Use LaTex to distinguish variables written within a sentence, such as m and n. &lt;br /&gt;
# Rephrase “Cut the relevant information and conditions in the portfolio optimization, as well as the final requirements into the relevant variables, constraints and linear functions of the linear programming problem.”&lt;br /&gt;
# An explanation of a few common constraints would be helpful, rather than just including a table. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Solving the numerical example by GAMS is inappropriate. Please provide detailed step-by-step calculation results.&lt;br /&gt;
# All tables need to be labeled.&lt;br /&gt;
# Include figure number in label for consistency. &lt;br /&gt;
# Fix misspelling “dolling decision variables”. &lt;br /&gt;
# Use LaTex for all variables, equations, and constraints here.&lt;br /&gt;
# Example 2 table is hard to read, so making it bigger would help. &lt;br /&gt;
# Remove the “Using excel as the solver” part from the sentence before the solution discussion. &lt;br /&gt;
# Some grammatical errors here (phrases such as “.. is as follows” should be followed by a colon). &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Rephrase “Portfolio optimization can be used to screen investment projects that meet investors, rationally allocate investment amounts, etc.”&lt;br /&gt;
# Not sure “relevant” is the correct word choice here. &lt;br /&gt;
# You need more specific examples with the utility of portfolio optimization, this section is quite general as is. Some more detail and focus on real-world applications in the financial industry that relate to retirement planning, financial security, economic stability, etc., would be helpful. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Need some commas here.&lt;br /&gt;
# The sentence “Linear programming has been around since the 1940’s and has such a wide base of applications” is not necessary. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove white space between end of sentences and reference numbers.&lt;br /&gt;
&lt;br /&gt;
== [[Chance-constraint method|Chance constraint method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please consider correcting a few grammatical errors: “pre-planned for”, “god”, “certain levels of feasibility is guaranteed in what are”, and “Performance of a system”&lt;br /&gt;
# In “Chance-constraint”, it is capitalized randomly throughout the introduction. Please correct.   &lt;br /&gt;
# Please use technical language to briefly introduce chance-constrained programming. Words like “acts of god”, “cost of doing business” are not appropriate for a  technical Wiki.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Xi is an uncertainty/randomness variable. It is better to use clear language. &lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others.&lt;br /&gt;
# Theory is insufficient. Please expand and explain different approaches. &lt;br /&gt;
# Please add pros and cons explicitly as a list. &lt;br /&gt;
# Explain the physical meaning for examples of chance constraints along with all the notations used.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please remove this example as it is directly from this book. The example should be purely numerical without any background.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others. &lt;br /&gt;
# Please change the table format so as not to confuse the reader. &lt;br /&gt;
# Multiple instances of [Chart to be added] are missing.&lt;br /&gt;
# Example is incomplete. &lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please connect several grammatical and spelling errors: “real life application”, Energy creation, particularly in renewable sources, have high variabilities”, and others&lt;br /&gt;
# “Zhao, Xue, Cao, and Zhang”. No need to list all authors within the article. Provide a reference is sufficient. If authors must be mentioned, (Zhao et al.) should be ok.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Uniqueness and universality earlier are not clear to me. If they are not discussed earlier in the application, it would be better not to introduce new discussions in the conclusion.&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
==  [[Bayesian Optimization]] ==&lt;br /&gt;
* Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor on the section titles.&lt;br /&gt;
* Contents: The section titles should NOT be in bold to avoid strange format in TOC. Any formatting issue will incur a penalty in the grading.&lt;br /&gt;
* Author list: Remove cornell ID, Please check names&lt;br /&gt;
* Introduction&lt;br /&gt;
# The introduction is too general and not substantial enough. For example, simply saying BayesOpt is useful when the objective function is unknown obscures exactly HOW it is useful (namely, computational efficiency in applications where ground truth sampling is expensive). Discussion on applications should be moved to a separate section.&lt;br /&gt;
# Machine learning rarely includes black-box functions to be optimized. Bayesian optimization is almost never used for optimizing ML loss functions but can instead be used for hyperparameter optimization. Please update such claims in this section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Captions need reformatting.&lt;br /&gt;
# Consider italicizing keywords rather than bolding.&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Discussion on acquisition functions should include comparisons, tradeoffs, and reasons to use one over the other. Should also note that expected improvement is the most widely used in practice, and explain.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Please write equations in the Wiki instead of attaching images for equations.&lt;br /&gt;
# Acquisition function figure could be made larger and clearer to improve readability.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any references to functions or methods in code ‘e.g. fmin’ should be properly formatted as code-stylized text.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Avoid including a figure of the code for this example and explicitly describe the steps to the modeling and solution process instead. &lt;br /&gt;
# Avoid pronouns such as “our” and “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please do not use brackets to enclose lists.&lt;br /&gt;
# Some claims here should be supported by references. Please cite each source after its sentence. &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to “pop” machine learning blogs where anyone can be an author. (e.g. towardsdatascience)&lt;br /&gt;
# All references are URLs. Please cite publications and literature.&lt;br /&gt;
# A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
Notes on grammar: Needs some work. Several instances where colons are inappropriately inserted mid sentence or in subheadings. Explanations are not terse. Several instances of switching between personal and impersonal style of writing, which is distracting.&lt;br /&gt;
&lt;br /&gt;
== [[Conjugate gradient methods]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Introduction&lt;br /&gt;
# All inline notations (e.g., `x`, `A`) should be typed using LaTex.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
# Is Gauss-Newton no longer referenced?&lt;br /&gt;
# Theorems listed in the first section should be accompanied with high level explanation, not just a list of the theorems themselves. The page should read like an article, with proper flow.&lt;br /&gt;
# Please indent equation blocks.&lt;br /&gt;
# Please properly format pseudocode.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Steps should be accompanied with explanation, or reference to the corresponding step in the pseudocode.&lt;br /&gt;
# Please properly format in a more organized manner, aligning equations appropriately and demarcating steps appropriately.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
# Consider including 2 additional examples of applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Consider adding future research directions&lt;br /&gt;
* References&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Too few references.&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Geometric programming|Geometric Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Examples of applications in this section use the same reference. Please cite their individual sources.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The symbol denoting the domain in the definition of a monomial is unclear. Please clarify it or fix this if it is incorrect.&lt;br /&gt;
# Definition of posynomial refers to section 2.1 which is missing from the Wiki (sections are not numbered in the main text).&lt;br /&gt;
# In the generalized posynomial subsection, bullet points do not tell us why h(x) is posynomial. Either provide reasons or simply state that h(x) is posynomial. Also explain why h3 is a generalized posynomial.&lt;br /&gt;
# Additional theory on the feasibility analysis could be provided in this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the transformation example, the last two constraints could also be simplified by applying a natural logarithm on both sides. Please update them as well.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The figure in this section needs to be labeled. &lt;br /&gt;
# The figure needs to be resized and perhaps aligned to the center.  &lt;br /&gt;
* A conclusion section:&lt;br /&gt;
# Please avoid vague language such as: “This makes”.&lt;br /&gt;
# Please avoid opinionated statements: “one of the best ways”.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# This Wiki has very few references. A quick Google Scholar search may provide relevant references.&lt;br /&gt;
&lt;br /&gt;
== [[Adam]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Some grammatical errors here, mostly related to the need for commas in certain places (e.g., “Before Adam..”).&lt;br /&gt;
# Some minor errors with parts of speech throughout the section, need to revisit phrases such as “which has broader scope in future for”, etc. &lt;br /&gt;
# Try splitting up some of the longer sentences in this section, a couple are hard to read.&lt;br /&gt;
# Avoid definitive statements about Adam being the best or always better solver, as this is simply not true (the choice of the “best” optimizer is setting-dependent). Use language such as “Research has shown that Adam has demonstrated superior experimental performance over..” and then cite academic references to back this claim. &lt;br /&gt;
# What does adam stand for? Introduction is insufficient. Please expand. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Revise grammar here, noticing some missing commas and uncapitalized word after period.&lt;br /&gt;
# Rephrase “second one is to update the old position with the updated position”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section, and actual subscripts instead of “m_t”, etc. &lt;br /&gt;
# Avoid inserting inline citations after words like “According to..” or “This article..” as it is a bit informal. This could be rephrased or changed to something like “According to author,^[2] …” with author name inserted. &lt;br /&gt;
# Remove white space before the period in RMSP discussion.&lt;br /&gt;
# Please provide a pseudocode. &lt;br /&gt;
# Please use list the two methods here “Adam is a combination of two gradient descent methods which are explained below”&lt;br /&gt;
# Please expand the theory section significantly. Theoretical convergence properties should be discussed, even if briefly.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Same comment as before, consider replacing inline citations after words like “According to..”. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to blogs and use peer-reviewed academic references instead. &lt;br /&gt;
# Too few references.&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[A-star algorithm|a* algorithm]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor and avoid HTML formatting on the section titles.&lt;br /&gt;
* An introduction of the topic:&lt;br /&gt;
# Weird spacing between paragraphs. Please fix this issue.&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. &lt;br /&gt;
# Please consider correcting a few grammatical errors: “Optimal path”, “cross country”, missing period at end of first paragraph, other random capitalizations, etc.&lt;br /&gt;
# There are no citations in the introduction. Please cite every source.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add the mathematical description of the algorithm.&lt;br /&gt;
# Reference style varies in sentences. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please fix grammatical and spelling errors as (“from current position to the goal”, “There are a lot of discussions”, etc). Also, many hyphens are missing as “non playable”.&lt;br /&gt;
# In algorithms, it is a standard to add high-level description (i.e. pseudocode or flowchart). Please incorporate it. &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section (e.g., “f(n)...”, “h(n)..”, etc.). This goes for other sections as well.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The numerical example does not show the full computations the algorithm performs. Please show the computation on a smaller example.&lt;br /&gt;
# Instead of writing things like “The above image..”, label each figure and use the figure number to refer to it in text. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# No references in the applications. Please cite every source &lt;br /&gt;
# Preferably, add at least an additional application.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion should summarize descriptions. Please modify it to provide a summary.  &lt;br /&gt;
# Please pay attention to the length and structure of sentences here and in the full page. First sentence is hard to read.&lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format and are not linked correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Incorrect reference style. Please follow the example and use the template.&lt;br /&gt;
&lt;br /&gt;
== [[Job shop scheduling|Job-Shop Scheduling Problem]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The current introduction to the jobshop scheduling problem has only two sentences in addition to the parameter description. Introduction typically contains information about the problem, its importance in the real-world, and some information about the solution techniques and their types to solve the problem. Please add some information that covers the above.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# It is unclear whether the assumptions stated in this section are required to apply the following solution techniques. Please clarify the same. Also use complete sentences to state them.&lt;br /&gt;
# The branch and bounds method described in this section only discusses the solution technique for problems with one machines. However, branch and bound is a general technique that can be applied to any MILP problems with varying scales. Please update the “methods” section to be as general as possible.&lt;br /&gt;
# Since this Wiki focuses on jobshop scheduling, at least two methods are expected. Branch and bound is a general MILP technique, so, it is recommended to add a tailored technique that can only solve specific jobshop scheduling problems. Solving the numerical example with this technique is not necessary.&lt;br /&gt;
# Reference to the branch and bound technique described in this section is a “youtube” video. Please add references in literature that describe this method in detail. The method used in this video is highly tailored for a single machine application. This is also an incorrect way to cite a reference. Please keep this section as general as possible.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section and all other sections as well.&lt;br /&gt;
# Check grammar in this section. For example, phrases like “are as follows” need to be followed by a colon and not a period. &lt;br /&gt;
# Consider rewriting the assumptions as a list in this section. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The example used in this section is exactly the same as the one in the youtube video. Please use a modification of this example or choose another example/method to demonstrate the solution technique. Your team should ideally create a numerical example independently. If you take a numerical example directly from a particular source, you will need to get explicit permission from the textbook author in writing and share that written permission with the instructors.&lt;br /&gt;
# The figure in this section is not numbered when all others are. Relabel this figure for consistency and its number to refer to it in-text.&lt;br /&gt;
# A numerical example should be simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments).&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section should only focus on real-world applications of the jobshop scheduling problem. But currently, this section includes additional information on solution techniques/complexity that is appropriate for the Introduction section. Please discuss the applications of the problem in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# The meaning of  “Operations applications” is unclear. Please explain or update if necessary.&lt;br /&gt;
# The current conclusion section does not properly summarize the problem. Please refer to other Wiki examples for an idea to update the section accordingly.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Please reference media sources like reference 5 appropriately.&lt;br /&gt;
# A simple Google Scholar search would give you many &amp;quot;formal&amp;quot; references.&lt;br /&gt;
&lt;br /&gt;
== [[Optimization in game theory]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: remove cornell IDs. &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Why only a subsection on &amp;quot;Nash Equilibrium&amp;quot; is included in &amp;quot;Theory&amp;quot; section? Please re-format.&lt;br /&gt;
# Please edit references.&lt;br /&gt;
# Add a mathematical description of the problem and a pseudocode/flowchart for the Lemke-Howson algorithm.  &lt;br /&gt;
# Rephrase “This algorithm utilizes iterated pivoting much like the simplex algorithm used in the simplex algorithm used in linear programming”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please organize the last part in a more readable format. Questions may be in bold and numbered, answers are more direct, etc.&lt;br /&gt;
# Remember to cite all images and tables. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Very good, link the reference and cite all sources. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summarizing especially from theory sentences and avoid long sentences. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Incorrect reference style. Please correct.&lt;br /&gt;
&lt;br /&gt;
== [[Trust-region methods]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
# Remove cornell IDs. Author is also spelled incorrectly. &lt;br /&gt;
# Add the course section.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xk”, “f`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “we”. This goes for all other sections as well.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Organization of ideas in this section needs work.&lt;br /&gt;
# You have not defined explicitly why the Cauchy point is important to compute beyond a vague allusion to performance improvements, which is also wrong (it is useful because of its guarantees for convergence, not performance) It is also misspelled.&lt;br /&gt;
# Each approach should have accompanying explanation and motivation for why it is being discussed. It is not enough to outline the algorithm.&lt;br /&gt;
# Please make sure symbols are properly subscripted and superscripted (e.g. “pk” should be “p_k”&lt;br /&gt;
# Please format the algorithm in proper algorithmic pseudocode format.&lt;br /&gt;
# Little to no discussion on global convergence guarantees&lt;br /&gt;
# Please include discussion about the advantages and disadvantages of the algorithm&lt;br /&gt;
# Fix typo “couchy point”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any code functions (uminfunc) should have proper text formatting.&lt;br /&gt;
# The graph needs a better caption explaining how the axes are labeled and what data points are being shown.&lt;br /&gt;
# Please increase the quality of the figure. It is hard to see the red line. &lt;br /&gt;
# Add citation to “The Rosenbrock function is a non-convex function, introduced by Howard H. Rosenbrock in 1960, which is often used as a performance test problem for optimization algorithms.”&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The content in this section as it is currently does NOT describe applications, but rather different approaches within the trust region methodology. Please provide specific applications (e.g. TRPO in reinforcement learning).&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summary, future research directions for example is a good start.&lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style.&lt;br /&gt;
# Please consider having the references as this Wiki template, &amp;lt;nowiki&amp;gt;https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
*There are numerous misspellings, grammatical errors, and incorrect claims. Please fix these.&lt;br /&gt;
&lt;br /&gt;
== [[Momentum]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Apart from an explanation on momentum, it is necessary to briefly point out the limitations of SGD and why momentum could help with these limitations. Please update it accordingly.&lt;br /&gt;
# Remove bold on “Momentum”.&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Equation formatting is very poor and should be formalized.&lt;br /&gt;
# It is important to use technical language for this Wiki. Although a layman’s explanation is appreciated, it would be better to skip using words like “zig zagging”. Try to explain all concepts in a technical language with few simplifications but NOT vice versa.&lt;br /&gt;
# The definition of the update rule for SGD with momentum looks incorrect, specifically the first expression. Please fix it and also explain all the parameters used.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “W”, “V`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “you”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;. Since writing all iterations is not feasible, at least present a few iterations for both cases.&lt;br /&gt;
# Please try to label the plots that explains what each line color means.&lt;br /&gt;
# Starting point for SGD with momentum is different in explanation and the table. Please fix the same.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please use correct terminology like “optimizing non-convex functions” and not “training non-convex models”.&lt;br /&gt;
# Adam, Adadelta, and RMSprop are variants of SGD that already use momentum. Please double check the writing and update if necessary.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please refrain from using words like “zig zag” effects.&lt;br /&gt;
* References&lt;br /&gt;
# Almost all references used are URLs. Please try to add journal/conference articles or books for references, instead of directly citing the URLs. Please check the list below and run a quick Google (Scholar) search to identify relevant literature.&lt;br /&gt;
&lt;br /&gt;
== [[Stochastic dynamic programming|Stochastic Dynamic programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions &lt;br /&gt;
# Remove the grey box background of equations.&lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Outer-approximation (OA)|Outer-approximation]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic &lt;br /&gt;
# See formatting guideline below&lt;br /&gt;
# Avoid opinionated statements such as “MINLP problems are usually the hardest to solve”.&lt;br /&gt;
# Rearrange the text such that the MINLP formulation is in the theory section and keep the introduction in words only.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Consider left aligning equations and optimization problem formulations by the “=”. See [[Stochastic programming|https://optimization.cbe.cornell.edu/index.php?title=Stochastic_programming]] for an example&lt;br /&gt;
# The sentence “The Outer-Approximation (OA) algorithm was first proposed by Duran and and Grossmann in 1986 to solve MINLP problems.” needs a reference. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# “Minimize” and “subject to” should be “min” and “s.t.” in MathType&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Does not explicitly point out why OA is applicable (and/or preferred) in these applications, rather than other MINLP approaches (show that the problem formulations are amenable to a solution approach through OA)&lt;br /&gt;
# The sentence “... an active research area and there exists a vast number of applications in fields such as engineering, computational chemistry, and finance.” needs references. &lt;br /&gt;
# Posting GAMS code on the page is generally inappropriate and discouraged. Please check with the TAs or me if you have a strong desire to post GAMS codes on the Wiki page. A typical textbook should not be limited to a specific software package. If the GAMS code must be posted, please also post ALL other software implementation versions, such as Pyomo and JuliaOPT, among others.&lt;br /&gt;
# Consider reformatting to make steps more readable. Inserting spaces and breaking down steps would help. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Too short. Consider discussion on future research direction and discussion on uncertainty&lt;br /&gt;
# Please review abbreviations throughout the page. Why is MINLP redefined here? “Outer-Approximation is a well known efficient approach for solving convex mixed-integer nonlinear programs (MINLP)”. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove &amp;quot;Template:Reflist&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== [[Unit commitment problem]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction and avoid discussions of examples or specific applications in this section.&lt;br /&gt;
# The sentence “Nonlinear, Non-convex programming optimization problem.” doesn’t make sense by itself and Non-convex shouldn’t be capitalized.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Figure/image format should be revised to better display the content.&lt;br /&gt;
# Uppercase characters are used randomly (e.g., “non-convex transmission Constraints”) . Please follow correct language conventions for sentence structure.&lt;br /&gt;
# Avoid inserting inline citations after words like “written in matrix form as equation [3]..” or “presented in [3]...” as it is a bit informal when you don’t explicitly name the subject. Also these two sentences are grammatically incorrect and appear to be missing an ending period and comma, respectively. &lt;br /&gt;
# Don’t say “written in matrix form as equation..” and just cite the reference, actually write out the equation. &lt;br /&gt;
# Properly label the figure in this section with a figure number and improve visibility by making it larger. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Label the figures in this section properly with figure numbers.&lt;br /&gt;
# Fix typo “while minimize” to “while minimizing”. &lt;br /&gt;
# Avoid pronouns such as “we”. &lt;br /&gt;
# Use the equation editor when typing equations. &lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
# The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# I suggest changing the order of the subtitles here. For example, Single-Period Unit Commitment. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Frank-Wolfe]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# I suggest highlighting disadvantages along with advantages. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# “[n x 1] matrix” please use the equation editor to express mathematical descriptions and symbols (p,b, etc)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please show at least a few iterations. Even for smaller examples if needed. Report the final solution. &lt;br /&gt;
# Please use the LaTex code or equation editor for min and include s.t., etc.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. For your example, please explicitly state that the derivative is taken etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications: &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Same as the introduction. Pros and cons should be evaluated together!&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Line search methods|Line Search Method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Expand the introduction and avoid discussion on some of the specific steps in the solution process. &lt;br /&gt;
# Provide references here. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The phrase “are as follows” in the steepest descent method discussion needs to be followed by a colon. &lt;br /&gt;
# Rephrase “has a nice convergence theory” and cite a reference for this claim.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Add citation after “.. proposed by Phillip Wolfe in 1969.”&lt;br /&gt;
# Figure 1 is between two sections. Please fix this issue. &lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# Add some space between iterations or subsection break&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# Too few references in this section. &lt;br /&gt;
# Last paragraph makes some claims without references. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Piecewise linear approximation|Piecewise Linear Approximation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The content of this section is good, but there are some issues with sentence clarity and some other grammatical errors. Please revisit this section and make changes accordingly. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Fix typo “to force the x’ values become associated with”. &lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Some of these longer sentences are hard to read. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Expand the conclusion section to be longer than one sentence. The conclusion section to include a brief summary of what was discussed above, an emphasis on it’s significance, and a brief discussion of future extensions and research direction if applicable.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to sources when possible.&lt;br /&gt;
&lt;br /&gt;
== [[Mathematical programming with equilibrium constraints|Mathematical Programming with Equilibrium constraints]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes several terms like variational inequalities, constraint qualifications that were not discussed in the class. Please add a sentence to explain them before using them.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The meaning of parameter vector x is unclear. Please add more information or update if necessary.&lt;br /&gt;
# Equations and symbols in the PIPA subsection are not formatted correctly. Please use the same formatting for all equations, so they read as mathematical equations and not text. This goes for all other sections as well.&lt;br /&gt;
# Use equations instead of images to represent math programs and equations in the Implicit Descent and SQP subsection.&lt;br /&gt;
# Apart from the steps for each solution technique, please also add a few sentences that describe each method.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please define the terms like NCP, MP before abbreviating them. Also try not to unnecessarily abbreviate simple terms.&lt;br /&gt;
# Equations should be typed by LaTex. Images for equations are unacceptable.&lt;br /&gt;
# GAMS code is strongly discouraged. Please solve the problem &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The selected numerical example is fine but is directly solved with the MPEC solver in GAMS. Try to solve it manually like the homework/in-class problems step by step using the steps described in the previous section by choosing any of the methods.&lt;br /&gt;
# Avoid using figures in the equations (subject to etc)&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Add references to “power management, highway pricing, chemical process engineering, and traffic planning.”&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# This Wiki contains very few references. Please check the list below and run a quick Google (Scholar) search to identify relevant literature.&lt;br /&gt;
&lt;br /&gt;
== [[Wing shape optimization|Wing shape Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC. Any formatting issue will incur a penalty in the grading.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction is missing several references (e.g., “software packages like computational fluid dynamics..”, sentences containing things that aren’t common knowledge, performance claims, etc.)&lt;br /&gt;
# Avoid discussion involving finer details of subject methods in this section. &lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. Same applies to box of content!&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Properly cite the CFD package, don’t just include a link. &lt;br /&gt;
# Properly label the figure with a figure number.&lt;br /&gt;
# Consider removing white space between isolated sentences to improve readability. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# If you’ve already defined an abbreviation (CFD), there is no need to define it again. Just use the abbreviation.&lt;br /&gt;
# Avoid pronouns such as “we” or “they”.&lt;br /&gt;
# Phrases like “under the following” need to be followed by a colon.&lt;br /&gt;
# Properly label the figure with a figure number and consider making them larger to improve visibility. Call the reader&#039;s attention to the figures in text by referencing the figure number.&lt;br /&gt;
# “As seen in the video below” is stated yet there are only images present and it may be initially unclear to the reader which figure is being referenced here. &lt;br /&gt;
# Avoid inserting inline citations like “[4] introduces an..”  as it is a bit informal when you don’t explicitly name the subject.&lt;br /&gt;
# Don’t just cite the reference when discussing the problem formulation, explicitly write the model formulation and solution process using LaTex or equation visual editor.&lt;br /&gt;
# Your team should ideally create a numerical example independently. If you take a numerical example directly from a textbook, etc., you will need to get explicit permission from the author in writing and share that written permission with me.&lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
# The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Some characters are randomly capitalized in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# These variables should be defined before the conclusion section, they are out of place here. Also, please use normal text when explaining variables except for the variable symbol. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Interior-point method for NLP|Interior point method for NLP]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Primal-Dual formulation and comparison to the Barrier Method is not discussed.&lt;br /&gt;
# Include brief discussion about big O convergence rates.&lt;br /&gt;
# Need discussion about the concept of “central path” and the notion of self concordance&lt;br /&gt;
# Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Graphs and images are incorrectly formatted to the page. Consider proper alignment with respect to the text body.&lt;br /&gt;
# Use explicitly typed Latex equations instead of images to represent math programs and equations.&lt;br /&gt;
# Fix typo “optimisation”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xi ”, “μ”, etc.).&lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# There are formatting issues with figures 2,3. Please make sure to embed them within their respective sections. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section &lt;br /&gt;
# Minor character code typos in the conclusion.&lt;br /&gt;
# Also, please add more discussion in this section. Future research directions is a good start.&lt;br /&gt;
# There is a box &amp;quot;􏰐&amp;quot;&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[AdaGrad|Adagrad]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Include discussion on its variants (most important is AdaDelta).&lt;br /&gt;
# Include disadvantages of Adagrad, since this provides motivation for the discussion on the variants and improvements of Adagrad&lt;br /&gt;
# Include comparisons to other popular optimizers (particularly important is comparisons to regular SGD and Adam)&lt;br /&gt;
# Different convergence rates are possible depending on the setting where Adagrad is used, but this is not mentioned on the page currently. As such the regret bound section should be more thoroughly explained.&lt;br /&gt;
# Algorithm image is blurry. Either increase the fidelity or write the pseudocode directly in the wiki editor.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the first sentence, “..take the following numerical example” should be followed by a colon. &lt;br /&gt;
# Fix typo “trayectory”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is too short; include specific applications in which input features are sparse and Adagrad excels.&lt;br /&gt;
# Add reference to the claim “Mainly, it is a good choice for deep learning models with sparse input features”.&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References &lt;br /&gt;
&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources (even if the base algorithm itself comes from a singular paper)&lt;br /&gt;
&lt;br /&gt;
== [[McCormick envelopes|McCormick Envelopes]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: OK but I suggest removing NetID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# First sentence is hard to read. Please consider keeping sentences below 25-30 words. &lt;br /&gt;
# No references provided. Please cite all sources. &lt;br /&gt;
# Figure 1 is provided in the middle between two sections. Please include in the introduction section. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# When using mathematical expressions and symbols, please use the equation editor. (e.g., x*y, exy + y, sin (x+y) - x2)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution. &lt;br /&gt;
# For the sample GAMS code, please place it in a code box&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each. &lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section: &lt;br /&gt;
* References&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;br /&gt;
== [[Branch and bound (BB) for MINLP|Branch and Bound for MINLP]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
** Remove NetIDS&lt;br /&gt;
** Please remove abbreviations from the title (i.e. BB).&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please cite sources appropriately: References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Introduction is very short for a well-recognized topic. Please expand significantly. You may refer to the Wiki examples to get an idea on writing the Introduction to a topic.&lt;br /&gt;
# An illustration might be useful here.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The algorithm described here considers only binary integer variables. However, MINLP problems may include non-binary integer variables too. Please update the method or provide a short description of the assumptions that the MINLP problem needs to satisfy in order for the presented technique to be applicable.&lt;br /&gt;
# Use linked citations please as the Wiki template above. &lt;br /&gt;
# Please provide steps in a more organized way. Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Step 2 is missing yet it is referenced in the text multiple times. Please address this in addition to the above comment.&lt;br /&gt;
# An illustration might be useful here as well. &lt;br /&gt;
# Please explain what a Gomory Cut is. If the topic is available on optimization.cb.cornell.edu, you can link it.    &lt;br /&gt;
# The current equations seem to be simple text written in Italics. All mathematical symbols and equations should be formatted via LaTex.&lt;br /&gt;
# Please format the math programs with equations and notations using formulations in lecture notes as templates.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution.&lt;br /&gt;
# Please show a step-by-step solution in the example. The solution is incomplete. The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
# Please use the equation editor for equations or mathematical symbols. - All mathematical symbols and equations should be formatted via LaTex - this is a learning objective of the Wiki assignment. You can find some useful links on converting your equations/symbols into LaTex code here: (&amp;lt;nowiki&amp;gt;https://optimization.cbe.cornell.edu/index.php?title=Help:Contents&amp;lt;/nowiki&amp;gt;). Again, any formatting issue will incur a &amp;quot;compound&amp;quot; penalty in the grading.&lt;br /&gt;
# This example does not follow the MINLP structure discussed in the above section since binary variables are missing. Branch and bound may not be appropriate for such problems. Please provide an appropriate numerical example and solve it according to the above comments.&lt;br /&gt;
# Make sure your example is not taken from a book as that is strictly disallowed. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is not well formatted. Please provide 3 applications and explain each in a few sentences and how BB for MINLP. Also, please eliminate having multiple sections (Application, Mathematical problem, industrial application). All these could be merged together.&lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section:&lt;br /&gt;
# The sentence is hard to understand &amp;quot;a scheme that grows exponentially because&amp;quot; please use a simple language. Is it also theoretically correct? It is also not mentioned and explained earlier. Thus, please avoid introducing new concepts or terms at the end. &lt;br /&gt;
# Please use summarizing sentences to describe earlier sections instead of introducing new concepts/discussion. &lt;br /&gt;
* References&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources. A quick Google scholar search could provide relevant references.&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4798</id>
		<title>2021 Cornell Optimization Open Textbook Feedback</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4798"/>
		<updated>2021-12-06T03:05:21Z</updated>

		<summary type="html">&lt;p&gt;Asa273: /* Branch and Bound for MINLP */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[Lagrangean duality|Lagrangian duality]] ==&lt;br /&gt;
* Author list, sections and TOC&lt;br /&gt;
# Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor and avoid HTML formatting on the section titles.&lt;br /&gt;
# Remove cornell ID from Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes sentences on constructing the dual problem and is referred to as Lagrangian relaxation (LR). This is incorrect, please fix the definition of LR.&lt;br /&gt;
# Definitions of LR and its relation to duality should be double checked and re-written.&lt;br /&gt;
# Only one reference is present in this section. Please add more relevant references by expanding this section.&lt;br /&gt;
# Consider merging the “introduction” and “history” sections.&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The Lagrangian variables associated with equality constraints h(x) are unbounded but the Lagrangian dual problem states them as non-negative. Please fix the same.&lt;br /&gt;
# Also to construct a dual, we do not change minimization to maximization directly. We observed such things in the examples in lecture notes due to simplification. The lagrangian dual problem would be minimize (,).&lt;br /&gt;
# Adding to the previous point, the Lagrangian is a lower bound on the original objective; the solution to the primal and dual or only equivalent if the duality gap is 0. You reference this in one section, but this is after your statement “Hence, solving the dual problem, which is a function of the Lagrangian multipliers (𝜆*) yields the same solution as the primal problem, which is a function of the original variables (x*). “. Please clarify the specific conditions that must hold for the solution of the dual to be equal to the primal’s.&lt;br /&gt;
# You refer to the “Complementary Slackness Theorem”, but don’t actually write the mathematical representation of complementary slackness. Please fix this. Also consider including the derivation of the complementary slackness condition, as it is both easy and short. Boyd is a good reference for this.&lt;br /&gt;
# Last step of the “process” subsection also needs updating according to the previous comments.&lt;br /&gt;
# The inline notations should also be typed using LaTex.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Only one dual variable is associated with each constraint. The numerical example uses two for the first and second constraint which is unnecessary. Please update it accordingly for both constraints. This particular example will only have two dual variables instead of the five dual variables used currently.&lt;br /&gt;
# All consecutive steps need to be updated since the dual variables would be updated.&lt;br /&gt;
# After substitution the nonlinear function should be further simplified. The current expression reads like a highly nonlinear function but can be easily simplified.&lt;br /&gt;
# Similar to the comments in the methodology section, inverting minimize to maximize is incorrect. Please update the dual objective function and domain of dual variables accordingly.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Bullet points could be used to state the last four real-world examples that explain the physical meaning of the primal and dual problems.&lt;br /&gt;
# Add references for the last set of applications. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# This section contains a few typos. Please fix the same.&lt;br /&gt;
* References&lt;br /&gt;
# Some citations&#039; hyperlinks are displaying.&lt;br /&gt;
&lt;br /&gt;
== [[Disjunctive inequalities|Disjunctive Inequalities]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section and semester&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# No citations are present in this section.&lt;br /&gt;
# “mixed-integer programming (MIP)” should be used instead of “multiple integer programming (MIP)”. Please fix this error.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The abbreviation MILP is not previously defined. Please fix this issue.&lt;br /&gt;
# You consistently use the negative sign instead of the NOT operator for y (-y instead of ¬y). &lt;br /&gt;
# Some inconsistencies with the spacing of variables, constraints, etc., under the “General” section that need to be fixed.&lt;br /&gt;
# Typo in “This is shown below by M1, M2, y1, and y1:” where y1 needs to be changed to y2. Why use two different Big-M variables here? Elsewhere in the Wiki you only use one so this could lead to confusion with a general audience. Also if this was taken from the lecture notes then it needs to be cited.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please reformulate and solve a complete numerical example rather than just reformulating a general example. Demonstrate the use of Big-M and Convex Hull formulation in an optimization problem that provides details such as individual steps in the problem solving process and final results. The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results.&lt;br /&gt;
# Add space between vee (V) operator and brackets in first line of Latex&lt;br /&gt;
# Please format variables correctly, for example, use &amp;lt;math&amp;gt;x_1&amp;lt;/math&amp;gt; instead of x1.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please format the equations appropriately either by using latex code or the visual editor. These images are NOT acceptable!&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# There is no conclusion presented in this section at all.&lt;br /&gt;
* References&lt;br /&gt;
# The included references have NOT been used anywhere in the Wiki. Add references for sentences that are not common knowledge and please link them appropriately with the text in Wiki. If the figures used here were not original works, you must also cite them. &lt;br /&gt;
# There are many papers on this topic. A simple Google (Scholar) search could provide you with sufficient references to cite. &lt;br /&gt;
# Many important references of this topic are missing.&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
==[[Stochastic programming|Stochastic Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell IDs&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
# This section only includes two sentences on Stochastic programming (SP), while the rest gives examples of uncertainty. Please discuss the need for SP in the presence of uncertainty. Also, discussion on robust optimization and its limitations should be removed since it is out of place.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please avoid direct inline linkbacks to Wikipedia.&lt;br /&gt;
# The symbol “xi” in the methodology subsection should be explained.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Copying a numerical example &amp;quot;entirely&amp;quot; from a textbook is inappropriate. Your team should come up with a &amp;quot;numerical&amp;quot; case.&lt;br /&gt;
# No specific application context is needed for a numerical example.&lt;br /&gt;
# The inline notations (`x1`, `s1`) should also be typed using LaTex.&lt;br /&gt;
# Label all tables with a table number for better readability. &lt;br /&gt;
# Properly format the solution table with the label attached rather than the following sentence. The solution table looks different from the others, please fix this for consistency. &lt;br /&gt;
* A section to discuss and/or illustrate the applications;&lt;br /&gt;
# I suggest eliminating citing the last name of the first author (i.e. Zhou et al.)&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# URLs of some citations are not properly formatted (not showing the hyperlinks).&lt;br /&gt;
&lt;br /&gt;
== [[Exponential transformation|Exponential Transformation]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction.&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Last sentence with 51 words is hard to read. &lt;br /&gt;
# Second Sentence: please change the word “they” as it could make the meaning ambiguous&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
# If you use abbreviations, please introduce them (e.g. NLP,MINLP)&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please explain the transformation in words along with equations&lt;br /&gt;
# Terms like posynomial should be described in detail.&lt;br /&gt;
# Please move the numerical example to the section below&lt;br /&gt;
# The “(eq 1)” is not needed here.&lt;br /&gt;
# Please expand this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the third equation of the numerical example, it is confusing to have coefficients after numbers. Some readers may read it as an exponent.&lt;br /&gt;
# Last equation in this section after “further linearization” is incorrect. This equation cannot be further linearized, please fix this.&lt;br /&gt;
# Please explain the steps in the numerical examples in detail. The step-by-step solution should be provided. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Missing part of text: “Proof of convexity of with positive definite test of Hessian…”&lt;br /&gt;
# Applications are not numerical examples. Please refer to this link for example of applications: [[Duality|https://optimization.cbe.cornell.edu/index.php?title=Duality]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
# The section current applications is redundant&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
# Under current applications, do not just use a hyperlink to describe an application. Actually describe it. And properly inline citation style should be used instead of the hyperlink. &lt;br /&gt;
# The convexification application of MINLP can be further simplified for binary variables. Please refer to the lecture slides for more information.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references by using this as Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
&lt;br /&gt;
== [[Sparse Reconstruction with Compressed Sensing|Sparse reconstruction with Compressed Sensing]] ==&lt;br /&gt;
This Wiki needs a significant rewrite. Please go through the comments for details.&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction section should include information about the problem and its implications presented briefly. Please use full sentences to write this Wiki. You may use tools like Grammarly to check sentence formation and grammar.&lt;br /&gt;
# This section includes several typos like “sub modual”. Please fix them throughout the wiki and delete them if not required.&lt;br /&gt;
# Many abbreviations are used before previously defining them. Please define these abbreviations before using them in the text.&lt;br /&gt;
# This section is incomprehensible in its current form. Please rewrite with proper comprehension.&lt;br /&gt;
# Equations and math symbols need proper reformatting. The current version reads like text (along with equations) copy-pasted from a specific source. All mathematical symbols and equations should be formatted via LaTex - this is a learning objective of the Wiki assignment. You can find some useful links on converting your equations/symbols into LaTex code here: (https://optimization.cbe.cornell.edu/index.php?title=Help:Contents).&lt;br /&gt;
# Try to place the figure at the top of the Wiki between the main text.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# I suggest the use of more formal abstract illustrations. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Equations and symbols need proper reformatting.&lt;br /&gt;
# Lemmas and theorems are not expected for this Wiki. Sparse reconstruction is a straightforward concept but is unnecessarily complicated here. Please refer to other Wiki examples to get an idea of what the Wiki should convey.&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Numerical example is missing.&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion section is missing.&lt;br /&gt;
* References&lt;br /&gt;
# The current reference list is not correctly formatted. References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Portfolio optimization|Portfolio Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell id&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introductory sentence should be rephrased. The action of minimizing the risks does not inherently maximize the gains, rather PO aims to maximize gains whilst minimizing risks. &lt;br /&gt;
# Amount of whitespace can be reduced by changing the orientation of Figure 1 and the sentences in this section.&lt;br /&gt;
# Define terms such as risk, return, portfolio, etc., when you introduce them. Assume that the reader may not know much about finance. This goes for all other sections as well. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# A brief mention of modern portfolio theory (i.e.. Markowitz) would be appropriate in this section. &lt;br /&gt;
# Several grammatical errors here involving sentence structure and clarity. Some questionable semantics (e.g., “The portfolio optimization mainly assumes two directions.”) and syntax (phrases such as “.. is as follows” should be followed by a colon). Misuse of commas and missing commas in this section. Two sentences introducing E(rp) and w should be combined into one.&lt;br /&gt;
# Use LaTex to distinguish variables written within a sentence, such as m and n. &lt;br /&gt;
# Rephrase “Cut the relevant information and conditions in the portfolio optimization, as well as the final requirements into the relevant variables, constraints and linear functions of the linear programming problem.”&lt;br /&gt;
# An explanation of a few common constraints would be helpful, rather than just including a table. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Solving the numerical example by GAMS is inappropriate. Please provide detailed step-by-step calculation results.&lt;br /&gt;
# All tables need to be labeled.&lt;br /&gt;
# Include figure number in label for consistency. &lt;br /&gt;
# Fix misspelling “dolling decision variables”. &lt;br /&gt;
# Use LaTex for all variables, equations, and constraints here.&lt;br /&gt;
# Example 2 table is hard to read, so making it bigger would help. &lt;br /&gt;
# Remove the “Using excel as the solver” part from the sentence before the solution discussion. &lt;br /&gt;
# Some grammatical errors here (phrases such as “.. is as follows” should be followed by a colon). &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Rephrase “Portfolio optimization can be used to screen investment projects that meet investors, rationally allocate investment amounts, etc.”&lt;br /&gt;
# Not sure “relevant” is the correct word choice here. &lt;br /&gt;
# You need more specific examples with the utility of portfolio optimization, this section is quite general as is. Some more detail and focus on real-world applications in the financial industry that relate to retirement planning, financial security, economic stability, etc., would be helpful. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Need some commas here.&lt;br /&gt;
# The sentence “Linear programming has been around since the 1940’s and has such a wide base of applications” is not necessary. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove white space between end of sentences and reference numbers.&lt;br /&gt;
&lt;br /&gt;
== [[Chance-constraint method|Chance constraint method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please consider correcting a few grammatical errors: “pre-planned for”, “god”, “certain levels of feasibility is guaranteed in what are”, and “Performance of a system”&lt;br /&gt;
# In “Chance-constraint”, it is capitalized randomly throughout the introduction. Please correct.   &lt;br /&gt;
# Please use technical language to briefly introduce chance-constrained programming. Words like “acts of god”, “cost of doing business” are not appropriate for a  technical Wiki.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Xi is an uncertainty/randomness variable. It is better to use clear language. &lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others.&lt;br /&gt;
# Theory is insufficient. Please expand and explain different approaches. &lt;br /&gt;
# Please add pros and cons explicitly as a list. &lt;br /&gt;
# Explain the physical meaning for examples of chance constraints along with all the notations used.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please remove this example as it is directly from this book. The example should be purely numerical without any background.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others. &lt;br /&gt;
# Please change the table format so as not to confuse the reader. &lt;br /&gt;
# Multiple instances of [Chart to be added] are missing.&lt;br /&gt;
# Example is incomplete. &lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please connect several grammatical and spelling errors: “real life application”, Energy creation, particularly in renewable sources, have high variabilities”, and others&lt;br /&gt;
# “Zhao, Xue, Cao, and Zhang”. No need to list all authors within the article. Provide a reference is sufficient. If authors must be mentioned, (Zhao et al.) should be ok.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Uniqueness and universality earlier are not clear to me. If they are not discussed earlier in the application, it would be better not to introduce new discussions in the conclusion.&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
==  [[Bayesian Optimization]] ==&lt;br /&gt;
* Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor on the section titles.&lt;br /&gt;
* Contents: The section titles should NOT be in bold to avoid strange format in TOC. Any formatting issue will incur a penalty in the grading.&lt;br /&gt;
* Author list: Remove cornell ID, Please check names&lt;br /&gt;
* Introduction&lt;br /&gt;
# The introduction is too general and not substantial enough. For example, simply saying BayesOpt is useful when the objective function is unknown obscures exactly HOW it is useful (namely, computational efficiency in applications where ground truth sampling is expensive). Discussion on applications should be moved to a separate section.&lt;br /&gt;
# Machine learning rarely includes black-box functions to be optimized. Bayesian optimization is almost never used for optimizing ML loss functions but can instead be used for hyperparameter optimization. Please update such claims in this section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Captions need reformatting.&lt;br /&gt;
# Consider italicizing keywords rather than bolding.&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Discussion on acquisition functions should include comparisons, tradeoffs, and reasons to use one over the other. Should also note that expected improvement is the most widely used in practice, and explain.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Please write equations in the Wiki instead of attaching images for equations.&lt;br /&gt;
# Acquisition function figure could be made larger and clearer to improve readability.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any references to functions or methods in code ‘e.g. fmin’ should be properly formatted as code-stylized text.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Avoid including a figure of the code for this example and explicitly describe the steps to the modeling and solution process instead. &lt;br /&gt;
# Avoid pronouns such as “our” and “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please do not use brackets to enclose lists.&lt;br /&gt;
# Some claims here should be supported by references. Please cite each source after its sentence. &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to “pop” machine learning blogs where anyone can be an author. (e.g. towardsdatascience)&lt;br /&gt;
# All references are URLs. Please cite publications and literature.&lt;br /&gt;
# A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
Notes on grammar: Needs some work. Several instances where colons are inappropriately inserted mid sentence or in subheadings. Explanations are not terse. Several instances of switching between personal and impersonal style of writing, which is distracting.&lt;br /&gt;
&lt;br /&gt;
== [[Conjugate gradient methods]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Introduction&lt;br /&gt;
# All inline notations (e.g., `x`, `A`) should be typed using LaTex.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
# Is Gauss-Newton no longer referenced?&lt;br /&gt;
# Theorems listed in the first section should be accompanied with high level explanation, not just a list of the theorems themselves. The page should read like an article, with proper flow.&lt;br /&gt;
# Please indent equation blocks.&lt;br /&gt;
# Please properly format pseudocode.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Steps should be accompanied with explanation, or reference to the corresponding step in the pseudocode.&lt;br /&gt;
# Please properly format in a more organized manner, aligning equations appropriately and demarcating steps appropriately.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
# Consider including 2 additional examples of applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Consider adding future research directions&lt;br /&gt;
* References&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Too few references.&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Geometric programming|Geometric Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Examples of applications in this section use the same reference. Please cite their individual sources.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The symbol denoting the domain in the definition of a monomial is unclear. Please clarify it or fix this if it is incorrect.&lt;br /&gt;
# Definition of posynomial refers to section 2.1 which is missing from the Wiki (sections are not numbered in the main text).&lt;br /&gt;
# In the generalized posynomial subsection, bullet points do not tell us why h(x) is posynomial. Either provide reasons or simply state that h(x) is posynomial. Also explain why h3 is a generalized posynomial.&lt;br /&gt;
# Additional theory on the feasibility analysis could be provided in this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the transformation example, the last two constraints could also be simplified by applying a natural logarithm on both sides. Please update them as well.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The figure in this section needs to be labeled. &lt;br /&gt;
# The figure needs to be resized and perhaps aligned to the center.  &lt;br /&gt;
* A conclusion section:&lt;br /&gt;
# Please avoid vague language such as: “This makes”.&lt;br /&gt;
# Please avoid opinionated statements: “one of the best ways”.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# This Wiki has very few references. A quick Google Scholar search may provide relevant references.&lt;br /&gt;
&lt;br /&gt;
== [[Adam]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Some grammatical errors here, mostly related to the need for commas in certain places (e.g., “Before Adam..”).&lt;br /&gt;
# Some minor errors with parts of speech throughout the section, need to revisit phrases such as “which has broader scope in future for”, etc. &lt;br /&gt;
# Try splitting up some of the longer sentences in this section, a couple are hard to read.&lt;br /&gt;
# Avoid definitive statements about Adam being the best or always better solver, as this is simply not true (the choice of the “best” optimizer is setting-dependent). Use language such as “Research has shown that Adam has demonstrated superior experimental performance over..” and then cite academic references to back this claim. &lt;br /&gt;
# What does adam stand for? Introduction is insufficient. Please expand. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Revise grammar here, noticing some missing commas and uncapitalized word after period.&lt;br /&gt;
# Rephrase “second one is to update the old position with the updated position”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section, and actual subscripts instead of “m_t”, etc. &lt;br /&gt;
# Avoid inserting inline citations after words like “According to..” or “This article..” as it is a bit informal. This could be rephrased or changed to something like “According to author,^[2] …” with author name inserted. &lt;br /&gt;
# Remove white space before the period in RMSP discussion.&lt;br /&gt;
# Please provide a pseudocode. &lt;br /&gt;
# Please use list the two methods here “Adam is a combination of two gradient descent methods which are explained below”&lt;br /&gt;
# Please expand the theory section significantly. Theoretical convergence properties should be discussed, even if briefly.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Same comment as before, consider replacing inline citations after words like “According to..”. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to blogs and use peer-reviewed academic references instead. &lt;br /&gt;
# Too few references.&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[A-star algorithm|a* algorithm]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor and avoid HTML formatting on the section titles.&lt;br /&gt;
* An introduction of the topic:&lt;br /&gt;
# Weird spacing between paragraphs. Please fix this issue.&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. &lt;br /&gt;
# Please consider correcting a few grammatical errors: “Optimal path”, “cross country”, missing period at end of first paragraph, other random capitalizations, etc.&lt;br /&gt;
# There are no citations in the introduction. Please cite every source.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add the mathematical description of the algorithm.&lt;br /&gt;
# Reference style varies in sentences. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please fix grammatical and spelling errors as (“from current position to the goal”, “There are a lot of discussions”, etc). Also, many hyphens are missing as “non playable”.&lt;br /&gt;
# In algorithms, it is a standard to add high-level description (i.e. pseudocode or flowchart). Please incorporate it. &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section (e.g., “f(n)...”, “h(n)..”, etc.). This goes for other sections as well.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The numerical example does not show the full computations the algorithm performs. Please show the computation on a smaller example.&lt;br /&gt;
# Instead of writing things like “The above image..”, label each figure and use the figure number to refer to it in text. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# No references in the applications. Please cite every source &lt;br /&gt;
# Preferably, add at least an additional application.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion should summarize descriptions. Please modify it to provide a summary.  &lt;br /&gt;
# Please pay attention to the length and structure of sentences here and in the full page. First sentence is hard to read.&lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format and are not linked correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Incorrect reference style. Please follow the example and use the template.&lt;br /&gt;
&lt;br /&gt;
== [[Job shop scheduling|Job-Shop Scheduling Problem]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The current introduction to the jobshop scheduling problem has only two sentences in addition to the parameter description. Introduction typically contains information about the problem, its importance in the real-world, and some information about the solution techniques and their types to solve the problem. Please add some information that covers the above.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# It is unclear whether the assumptions stated in this section are required to apply the following solution techniques. Please clarify the same. Also use complete sentences to state them.&lt;br /&gt;
# The branch and bounds method described in this section only discusses the solution technique for problems with one machines. However, branch and bound is a general technique that can be applied to any MILP problems with varying scales. Please update the “methods” section to be as general as possible.&lt;br /&gt;
# Since this Wiki focuses on jobshop scheduling, at least two methods are expected. Branch and bound is a general MILP technique, so, it is recommended to add a tailored technique that can only solve specific jobshop scheduling problems. Solving the numerical example with this technique is not necessary.&lt;br /&gt;
# Reference to the branch and bound technique described in this section is a “youtube” video. Please add references in literature that describe this method in detail. The method used in this video is highly tailored for a single machine application. This is also an incorrect way to cite a reference. Please keep this section as general as possible.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section and all other sections as well.&lt;br /&gt;
# Check grammar in this section. For example, phrases like “are as follows” need to be followed by a colon and not a period. &lt;br /&gt;
# Consider rewriting the assumptions as a list in this section. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The example used in this section is exactly the same as the one in the youtube video. Please use a modification of this example or choose another example/method to demonstrate the solution technique. Your team should ideally create a numerical example independently. If you take a numerical example directly from a particular source, you will need to get explicit permission from the textbook author in writing and share that written permission with the instructors.&lt;br /&gt;
# The figure in this section is not numbered when all others are. Relabel this figure for consistency and its number to refer to it in-text.&lt;br /&gt;
# A numerical example should be simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments).&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section should only focus on real-world applications of the jobshop scheduling problem. But currently, this section includes additional information on solution techniques/complexity that is appropriate for the Introduction section. Please discuss the applications of the problem in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# The meaning of  “Operations applications” is unclear. Please explain or update if necessary.&lt;br /&gt;
# The current conclusion section does not properly summarize the problem. Please refer to other Wiki examples for an idea to update the section accordingly.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Please reference media sources like reference 5 appropriately.&lt;br /&gt;
# A simple Google Scholar search would give you many &amp;quot;formal&amp;quot; references.&lt;br /&gt;
&lt;br /&gt;
== [[Optimization in game theory]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: remove cornell IDs. &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Why only a subsection on &amp;quot;Nash Equilibrium&amp;quot; is included in &amp;quot;Theory&amp;quot; section? Please re-format.&lt;br /&gt;
# Please edit references.&lt;br /&gt;
# Add a mathematical description of the problem and a pseudocode/flowchart for the Lemke-Howson algorithm.  &lt;br /&gt;
# Rephrase “This algorithm utilizes iterated pivoting much like the simplex algorithm used in the simplex algorithm used in linear programming”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please organize the last part in a more readable format. Questions may be in bold and numbered, answers are more direct, etc.&lt;br /&gt;
# Remember to cite all images and tables. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Very good, link the reference and cite all sources. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summarizing especially from theory sentences and avoid long sentences. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Incorrect reference style. Please correct.&lt;br /&gt;
&lt;br /&gt;
== [[Trust-region methods]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
# Remove cornell IDs. Author is also spelled incorrectly. &lt;br /&gt;
# Add the course section.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xk”, “f`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “we”. This goes for all other sections as well.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Organization of ideas in this section needs work.&lt;br /&gt;
# You have not defined explicitly why the Cauchy point is important to compute beyond a vague allusion to performance improvements, which is also wrong (it is useful because of its guarantees for convergence, not performance) It is also misspelled.&lt;br /&gt;
# Each approach should have accompanying explanation and motivation for why it is being discussed. It is not enough to outline the algorithm.&lt;br /&gt;
# Please make sure symbols are properly subscripted and superscripted (e.g. “pk” should be “p_k”&lt;br /&gt;
# Please format the algorithm in proper algorithmic pseudocode format.&lt;br /&gt;
# Little to no discussion on global convergence guarantees&lt;br /&gt;
# Please include discussion about the advantages and disadvantages of the algorithm&lt;br /&gt;
# Fix typo “couchy point”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any code functions (uminfunc) should have proper text formatting.&lt;br /&gt;
# The graph needs a better caption explaining how the axes are labeled and what data points are being shown.&lt;br /&gt;
# Please increase the quality of the figure. It is hard to see the red line. &lt;br /&gt;
# Add citation to “The Rosenbrock function is a non-convex function, introduced by Howard H. Rosenbrock in 1960, which is often used as a performance test problem for optimization algorithms.”&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The content in this section as it is currently does NOT describe applications, but rather different approaches within the trust region methodology. Please provide specific applications (e.g. TRPO in reinforcement learning).&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summary, future research directions for example is a good start.&lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style.&lt;br /&gt;
# Please consider having the references as this Wiki template, &amp;lt;nowiki&amp;gt;https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
*There are numerous misspellings, grammatical errors, and incorrect claims. Please fix these.&lt;br /&gt;
&lt;br /&gt;
== [[Momentum]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Apart from an explanation on momentum, it is necessary to briefly point out the limitations of SGD and why momentum could help with these limitations. Please update it accordingly.&lt;br /&gt;
# Remove bold on “Momentum”.&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Equation formatting is very poor and should be formalized.&lt;br /&gt;
# It is important to use technical language for this Wiki. Although a layman’s explanation is appreciated, it would be better to skip using words like “zig zagging”. Try to explain all concepts in a technical language with few simplifications but NOT vice versa.&lt;br /&gt;
# The definition of the update rule for SGD with momentum looks incorrect, specifically the first expression. Please fix it and also explain all the parameters used.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “W”, “V`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “you”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;. Since writing all iterations is not feasible, at least present a few iterations for both cases.&lt;br /&gt;
# Please try to label the plots that explains what each line color means.&lt;br /&gt;
# Starting point for SGD with momentum is different in explanation and the table. Please fix the same.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please use correct terminology like “optimizing non-convex functions” and not “training non-convex models”.&lt;br /&gt;
# Adam, Adadelta, and RMSprop are variants of SGD that already use momentum. Please double check the writing and update if necessary.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please refrain from using words like “zig zag” effects.&lt;br /&gt;
* References&lt;br /&gt;
# Almost all references used are URLs. Please try to add journal/conference articles or books for references, instead of directly citing the URLs. Please check the list below and run a quick Google (Scholar) search to identify relevant literature.&lt;br /&gt;
&lt;br /&gt;
== [[Stochastic dynamic programming|Stochastic Dynamic programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions &lt;br /&gt;
# Remove the grey box background of equations.&lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Outer-approximation (OA)|Outer-approximation]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic &lt;br /&gt;
# See formatting guideline below&lt;br /&gt;
# Avoid opinionated statements such as “MINLP problems are usually the hardest to solve”.&lt;br /&gt;
# Rearrange the text such that the MINLP formulation is in the theory section and keep the introduction in words only.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Consider left aligning equations and optimization problem formulations by the “=”. See [[Stochastic programming|https://optimization.cbe.cornell.edu/index.php?title=Stochastic_programming]] for an example&lt;br /&gt;
# The sentence “The Outer-Approximation (OA) algorithm was first proposed by Duran and and Grossmann in 1986 to solve MINLP problems.” needs a reference. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# “Minimize” and “subject to” should be “min” and “s.t.” in MathType&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Does not explicitly point out why OA is applicable (and/or preferred) in these applications, rather than other MINLP approaches (show that the problem formulations are amenable to a solution approach through OA)&lt;br /&gt;
# The sentence “... an active research area and there exists a vast number of applications in fields such as engineering, computational chemistry, and finance.” needs references. &lt;br /&gt;
# Posting GAMS code on the page is generally inappropriate and discouraged. Please check with the TAs or me if you have a strong desire to post GAMS codes on the Wiki page. A typical textbook should not be limited to a specific software package. If the GAMS code must be posted, please also post ALL other software implementation versions, such as Pyomo and JuliaOPT, among others.&lt;br /&gt;
# Consider reformatting to make steps more readable. Inserting spaces and breaking down steps would help. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Too short. Consider discussion on future research direction and discussion on uncertainty&lt;br /&gt;
# Please review abbreviations throughout the page. Why is MINLP redefined here? “Outer-Approximation is a well known efficient approach for solving convex mixed-integer nonlinear programs (MINLP)”. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove &amp;quot;Template:Reflist&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== [[Unit commitment problem]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction and avoid discussions of examples or specific applications in this section.&lt;br /&gt;
# The sentence “Nonlinear, Non-convex programming optimization problem.” doesn’t make sense by itself and Non-convex shouldn’t be capitalized.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Figure/image format should be revised to better display the content.&lt;br /&gt;
# Uppercase characters are used randomly (e.g., “non-convex transmission Constraints”) . Please follow correct language conventions for sentence structure.&lt;br /&gt;
# Avoid inserting inline citations after words like “written in matrix form as equation [3]..” or “presented in [3]...” as it is a bit informal when you don’t explicitly name the subject. Also these two sentences are grammatically incorrect and appear to be missing an ending period and comma, respectively. &lt;br /&gt;
# Don’t say “written in matrix form as equation..” and just cite the reference, actually write out the equation. &lt;br /&gt;
# Properly label the figure in this section with a figure number and improve visibility by making it larger. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Label the figures in this section properly with figure numbers.&lt;br /&gt;
# Fix typo “while minimize” to “while minimizing”. &lt;br /&gt;
# Avoid pronouns such as “we”. &lt;br /&gt;
# Use the equation editor when typing equations. &lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
# The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# I suggest changing the order of the subtitles here. For example, Single-Period Unit Commitment. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Frank-Wolfe]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# I suggest highlighting disadvantages along with advantages. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# “[n x 1] matrix” please use the equation editor to express mathematical descriptions and symbols (p,b, etc)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please show at least a few iterations. Even for smaller examples if needed. Report the final solution. &lt;br /&gt;
# Please use the LaTex code or equation editor for min and include s.t., etc.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. For your example, please explicitly state that the derivative is taken etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications: &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Same as the introduction. Pros and cons should be evaluated together!&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Line search methods|Line Search Method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Expand the introduction and avoid discussion on some of the specific steps in the solution process. &lt;br /&gt;
# Provide references here. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The phrase “are as follows” in the steepest descent method discussion needs to be followed by a colon. &lt;br /&gt;
# Rephrase “has a nice convergence theory” and cite a reference for this claim.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Add citation after “.. proposed by Phillip Wolfe in 1969.”&lt;br /&gt;
# Figure 1 is between two sections. Please fix this issue. &lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# Add some space between iterations or subsection break&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# Too few references in this section. &lt;br /&gt;
# Last paragraph makes some claims without references. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Piecewise linear approximation|Piecewise Linear Approximation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The content of this section is good, but there are some issues with sentence clarity and some other grammatical errors. Please revisit this section and make changes accordingly. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Fix typo “to force the x’ values become associated with”. &lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Some of these longer sentences are hard to read. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Expand the conclusion section to be longer than one sentence. The conclusion section to include a brief summary of what was discussed above, an emphasis on it’s significance, and a brief discussion of future extensions and research direction if applicable.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to sources when possible.&lt;br /&gt;
&lt;br /&gt;
== [[Mathematical programming with equilibrium constraints|Mathematical Programming with Equilibrium constraints]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes several terms like variational inequalities, constraint qualifications that were not discussed in the class. Please add a sentence to explain them before using them.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The meaning of parameter vector x is unclear. Please add more information or update if necessary.&lt;br /&gt;
# Equations and symbols in the PIPA subsection are not formatted correctly. Please use the same formatting for all equations, so they read as mathematical equations and not text. This goes for all other sections as well.&lt;br /&gt;
# Use equations instead of images to represent math programs and equations in the Implicit Descent and SQP subsection.&lt;br /&gt;
# Apart from the steps for each solution technique, please also add a few sentences that describe each method.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please define the terms like NCP, MP before abbreviating them. Also try not to unnecessarily abbreviate simple terms.&lt;br /&gt;
# Equations should be typed by LaTex. Images for equations are unacceptable.&lt;br /&gt;
# GAMS code is strongly discouraged. Please solve the problem &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The selected numerical example is fine but is directly solved with the MPEC solver in GAMS. Try to solve it manually like the homework/in-class problems step by step using the steps described in the previous section by choosing any of the methods.&lt;br /&gt;
# Avoid using figures in the equations (subject to etc)&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Add references to “power management, highway pricing, chemical process engineering, and traffic planning.”&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# This Wiki contains very few references. Please check the list below and run a quick Google (Scholar) search to identify relevant literature.&lt;br /&gt;
&lt;br /&gt;
== [[Wing shape optimization|Wing shape Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC. Any formatting issue will incur a penalty in the grading.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction is missing several references (e.g., “software packages like computational fluid dynamics..”, sentences containing things that aren’t common knowledge, performance claims, etc.)&lt;br /&gt;
# Avoid discussion involving finer details of subject methods in this section. &lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. Same applies to box of content!&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Properly cite the CFD package, don’t just include a link. &lt;br /&gt;
# Properly label the figure with a figure number.&lt;br /&gt;
# Consider removing white space between isolated sentences to improve readability. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# If you’ve already defined an abbreviation (CFD), there is no need to define it again. Just use the abbreviation.&lt;br /&gt;
# Avoid pronouns such as “we” or “they”.&lt;br /&gt;
# Phrases like “under the following” need to be followed by a colon.&lt;br /&gt;
# Properly label the figure with a figure number and consider making them larger to improve visibility. Call the reader&#039;s attention to the figures in text by referencing the figure number.&lt;br /&gt;
# “As seen in the video below” is stated yet there are only images present and it may be initially unclear to the reader which figure is being referenced here. &lt;br /&gt;
# Avoid inserting inline citations like “[4] introduces an..”  as it is a bit informal when you don’t explicitly name the subject.&lt;br /&gt;
# Don’t just cite the reference when discussing the problem formulation, explicitly write the model formulation and solution process using LaTex or equation visual editor.&lt;br /&gt;
# Your team should ideally create a numerical example independently. If you take a numerical example directly from a textbook, etc., you will need to get explicit permission from the author in writing and share that written permission with me.&lt;br /&gt;
# A numerical example is simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments). There is an Application section where you discuss the applications.&lt;br /&gt;
# The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Some characters are randomly capitalized in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# These variables should be defined before the conclusion section, they are out of place here. Also, please use normal text when explaining variables except for the variable symbol. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Interior-point method for NLP|Interior point method for NLP]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Primal-Dual formulation and comparison to the Barrier Method is not discussed.&lt;br /&gt;
# Include brief discussion about big O convergence rates.&lt;br /&gt;
# Need discussion about the concept of “central path” and the notion of self concordance&lt;br /&gt;
# Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Graphs and images are incorrectly formatted to the page. Consider proper alignment with respect to the text body.&lt;br /&gt;
# Use explicitly typed Latex equations instead of images to represent math programs and equations.&lt;br /&gt;
# Fix typo “optimisation”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xi ”, “μ”, etc.).&lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# There are formatting issues with figures 2,3. Please make sure to embed them within their respective sections. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section &lt;br /&gt;
# Minor character code typos in the conclusion.&lt;br /&gt;
# Also, please add more discussion in this section. Future research directions is a good start.&lt;br /&gt;
# There is a box &amp;quot;􏰐&amp;quot;&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[AdaGrad|Adagrad]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Include discussion on its variants (most important is AdaDelta).&lt;br /&gt;
# Include disadvantages of Adagrad, since this provides motivation for the discussion on the variants and improvements of Adagrad&lt;br /&gt;
# Include comparisons to other popular optimizers (particularly important is comparisons to regular SGD and Adam)&lt;br /&gt;
# Different convergence rates are possible depending on the setting where Adagrad is used, but this is not mentioned on the page currently. As such the regret bound section should be more thoroughly explained.&lt;br /&gt;
# Algorithm image is blurry. Either increase the fidelity or write the pseudocode directly in the wiki editor.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the first sentence, “..take the following numerical example” should be followed by a colon. &lt;br /&gt;
# Fix typo “trayectory”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is too short; include specific applications in which input features are sparse and Adagrad excels.&lt;br /&gt;
# Add reference to the claim “Mainly, it is a good choice for deep learning models with sparse input features”.&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References &lt;br /&gt;
&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources (even if the base algorithm itself comes from a singular paper)&lt;br /&gt;
&lt;br /&gt;
== [[McCormick envelopes|McCormick Envelopes]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: OK but I suggest removing NetID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# First sentence is hard to read. Please consider keeping sentences below 25-30 words. &lt;br /&gt;
# No references provided. Please cite all sources. &lt;br /&gt;
# Figure 1 is provided in the middle between two sections. Please include in the introduction section. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# When using mathematical expressions and symbols, please use the equation editor. (e.g., x*y, exy + y, sin (x+y) - x2)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution. &lt;br /&gt;
# For the sample GAMS code, please place it in a code box&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each. &lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section: &lt;br /&gt;
* References&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;br /&gt;
== [[Branch and bound (BB) for MINLP|Branch and Bound for MINLP]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
** Remove NetIDS&lt;br /&gt;
** Please remove abbreviations from the title (i.e. BB).&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please cite sources appropriately: References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Introduction is very short for a well-recognized topic. Please expand significantly. You may refer to the Wiki examples to get an idea on writing the Introduction to a topic.&lt;br /&gt;
# An illustration might be useful here.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The algorithm described here considers only binary integer variables. However, MINLP problems may include non-binary integer variables too. Please update the method or provide a short description of the assumptions that the MINLP problem needs to satisfy in order for the presented technique to be applicable.&lt;br /&gt;
# Use linked citations please as the Wiki template above. &lt;br /&gt;
# Please provide steps in a more organized way. Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Step 2 is missing yet it is referenced in the text multiple times. Please address this in addition to the above comment.&lt;br /&gt;
# An illustration might be useful here as well. &lt;br /&gt;
# Please explain what a Gomory Cut is. If the topic is available on optimization.cb.cornell.edu, you can link it.    &lt;br /&gt;
# The current equations seem to be simple text written in Italics. All mathematical symbols and equations should be formatted via LaTex.&lt;br /&gt;
# Please format the math programs with equations and notations using formulations in lecture notes as templates.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution.&lt;br /&gt;
# Please show a step-by-step solution in the example. The solution is incomplete. The Numerical Example section needs a &amp;quot;step-by-step&amp;quot; calculation process and a clear presentation of each step&#039;s results. (again, similar to the way of solving an HW problem).&lt;br /&gt;
# Please use the equation editor for equations or mathematical symbols. - All mathematical symbols and equations should be formatted via LaTex - this is a learning objective of the Wiki assignment. You can find some useful links on converting your equations/symbols into LaTex code here: (&amp;lt;nowiki&amp;gt;https://optimization.cbe.cornell.edu/index.php?title=Help:Contents&amp;lt;/nowiki&amp;gt;). Again, any formatting issue will incur a &amp;quot;compound&amp;quot; penalty in the grading.&lt;br /&gt;
# This example does not follow the MINLP structure discussed in the above section since binary variables are missing. Branch and bounds may not be appropriate for such problems. Please provide an appropriate numerical example and solve it according to the above comments.&lt;br /&gt;
# Make sure your example is not taken from a book as that is strictly disallowed. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is not well formatted. Please provide 3 applications and explain each in a few sentences and how BB for MINLP. Also, please eliminate having multiple sections (Application, Mathematical problem, industrial application). All these could be merged together.&lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section:&lt;br /&gt;
# The sentence is hard to understand &amp;quot;a scheme that grows exponentially because&amp;quot; please use a simple language. Is it also theoretically correct? It is also not mentioned and explained earlier. Thus, please avoid introducing new concepts or terms at the end. &lt;br /&gt;
# Please use summarizing sentences to describe earlier sections instead of introducing new concepts/discussion. &lt;br /&gt;
* References&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources. A quick Google scholar search could provide relevant references.&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4781</id>
		<title>2021 Cornell Optimization Open Textbook Feedback</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4781"/>
		<updated>2021-12-05T20:19:48Z</updated>

		<summary type="html">&lt;p&gt;Asa273: /* Mathematical Programming with Equilibrium constraints */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[Lagrangean duality|Lagrangian duality]] ==&lt;br /&gt;
* Author list, sections and TOC&lt;br /&gt;
# Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor and avoid HTML formatting on the section titles.&lt;br /&gt;
# Remove cornell ID from Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes sentences on constructing the dual problem and is referred to as Lagrangian relaxation (LR). This is incorrect, please fix the definition of LR.&lt;br /&gt;
# Definitions of LR and its relation to duality should be double checked and re-written.&lt;br /&gt;
# Only one reference is present in this section. Please add more relevant references by expanding this section.&lt;br /&gt;
# Consider merging the “introduction” and “history” sections.&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The Lagrangian variables associated with equality constraints h(x) are unbounded but the Lagrangian dual problem states them as non-negative. Please fix the same.&lt;br /&gt;
# Also to construct a dual, we do not change minimization to maximization directly. We observed such things in the examples in lecture notes due to simplification. The lagrangian dual problem would be minimize (,).&lt;br /&gt;
# Adding to the previous point, the Lagrangian is a lower bound on the original objective; the solution to the primal and dual or only equivalent if the duality gap is 0. You reference this in one section, but this is after your statement “Hence, solving the dual problem, which is a function of the Lagrangian multipliers (𝜆*) yields the same solution as the primal problem, which is a function of the original variables (x*). “. Please clarify the specific conditions that must hold for the solution of the dual to be equal to the primal’s.&lt;br /&gt;
# You refer to the “Complementary Slackness Theorem”, but don’t actually write the mathematical representation of complementary slackness. Please fix this. Also consider including the derivation of the complementary slackness condition, as it is both easy and short. Boyd is a good reference for this.&lt;br /&gt;
# Last step of the “process” subsection also needs updating according to the previous comments.&lt;br /&gt;
# The inline notations should also be typed using LaTex.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Only one dual variable is associated with each constraint. The numerical example uses two for the first and second constraint which is unnecessary. Please update it accordingly for both constraints. This particular example will only have two dual variables instead of the five dual variables used currently.&lt;br /&gt;
# All consecutive steps need to be updated since the dual variables would be updated.&lt;br /&gt;
# After substitution the nonlinear function should be further simplified. The current expression reads like a highly nonlinear function but can be easily simplified.&lt;br /&gt;
# Similar to the comments in the methodology section, inverting minimize to maximize is incorrect. Please update the dual objective function and domain of dual variables accordingly.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Bullet points could be used to state the last four real-world examples that explain the physical meaning of the primal and dual problems.&lt;br /&gt;
# Add references for the last set of applications. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# This section contains a few typos. Please fix the same.&lt;br /&gt;
* References&lt;br /&gt;
# Some citations&#039; hyperlinks are displaying.&lt;br /&gt;
&lt;br /&gt;
== [[Disjunctive inequalities|Disjunctive Inequalities]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section and semester&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# No citations are present in this section.&lt;br /&gt;
# “mixed-integer programming (MIP)” should be used instead of “multiple integer programming (MIP)”. Please fix this error.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The abbreviation MILP is not previously defined. Please fix this issue.&lt;br /&gt;
# You consistently use the negative sign instead of the NOT operator for y (-y instead of ¬y). &lt;br /&gt;
# Some inconsistencies with the spacing of variables, constraints, etc., under the “General” section that need to be fixed.&lt;br /&gt;
# Typo in “This is shown below by M1, M2, y1, and y1:” where y1 needs to be changed to y2. Why use two different Big-M variables here? Elsewhere in the Wiki you only use one so this could lead to confusion with a general audience. Also if this was taken from the lecture notes then it needs to be cited.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please reformulate and solve a complete numerical example rather than just reformulating a general example. Demonstrate the use of Big-M and Convex Hull formulation in an optimization problem that provides details such as individual steps in the problem solving process and final results.&lt;br /&gt;
# Add space between vee (V) operator and brackets in first line of Latex&lt;br /&gt;
# Please format variables correctly, for example, use &amp;lt;math&amp;gt;x_1&amp;lt;/math&amp;gt; instead of x1.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please format the equations appropriately either by using latex code or the visual editor. These images are NOT acceptable!&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# There is no conclusion presented in this section at all.&lt;br /&gt;
* References&lt;br /&gt;
# The included references have NOT been used anywhere in the Wiki. Add references for sentences that are not common knowledge and please link them appropriately with the text in Wiki. If the figures used here were not original works, you must also cite them. &lt;br /&gt;
# There are many papers on this topic. A simple Google (Scholar) search could provide you with sufficient references to cite. &lt;br /&gt;
# Many important references of this topic are missing.&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
==[[Stochastic programming|Stochastic Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell IDs&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
# This section only includes two sentences on Stochastic programming (SP), while the rest gives examples of uncertainty. Please discuss the need for SP in the presence of uncertainty. Also, discussion on robust optimization and its limitations should be removed since it is out of place.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please avoid direct inline linkbacks to Wikipedia.&lt;br /&gt;
# The symbol “xi” in the methodology subsection should be explained.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Copying a numerical example &amp;quot;entirely&amp;quot; from a textbook is inappropriate. Your team should come up with a &amp;quot;numerical&amp;quot; case.&lt;br /&gt;
# No specific application context is needed for a numerical example.&lt;br /&gt;
# The inline notations (`x1`, `s1`) should also be typed using LaTex.&lt;br /&gt;
# Label all tables with a table number for better readability. &lt;br /&gt;
# Properly format the solution table with the label attached rather than the following sentence. The solution table looks different from the others, please fix this for consistency. &lt;br /&gt;
* A section to discuss and/or illustrate the applications;&lt;br /&gt;
# I suggest eliminating citing the last name of the first author (i.e. Zhou et al.)&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# URLs of some citations are not properly formatted (not showing the hyperlinks).&lt;br /&gt;
&lt;br /&gt;
== [[Exponential transformation|Exponential Transformation]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction.&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Last sentence with 51 words is hard to read. &lt;br /&gt;
# Second Sentence: please change the word “they” as it could make the meaning ambiguous&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
# If you use abbreviations, please introduce them (e.g. NLP,MINLP)&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please explain the transformation in words along with equations&lt;br /&gt;
# Terms like posynomial should be described in detail.&lt;br /&gt;
# Please move the numerical example to the section below&lt;br /&gt;
# The “(eq 1)” is not needed here.&lt;br /&gt;
# Please expand this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the third equation of the numerical example, it is confusing to have coefficients after numbers. Some readers may read it as an exponent.&lt;br /&gt;
# Last equation in this section after “further linearization” is incorrect. This equation cannot be further linearized, please fix this.&lt;br /&gt;
# Please explain the steps in the numerical examples in detail. The step-by-step solution should be provided. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Missing part of text: “Proof of convexity of with positive definite test of Hessian…”&lt;br /&gt;
# Applications are not numerical examples. Please refer to this link for example of applications: [[Duality|https://optimization.cbe.cornell.edu/index.php?title=Duality]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
# The section current applications is redundant&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
# Under current applications, do not just use a hyperlink to describe an application. Actually describe it. And properly inline citation style should be used instead of the hyperlink. &lt;br /&gt;
# The convexification application of MINLP can be further simplified for binary variables. Please refer to the lecture slides for more information.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references by using this as Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
&lt;br /&gt;
== [[Sparse Reconstruction with Compressed Sensing|Sparse reconstruction with Compressed Sensing]] ==&lt;br /&gt;
This Wiki needs a significant rewrite. Please go through the comments for details.&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction section should include information about the problem and its implications presented briefly. Please use full sentences to write this Wiki. You may use tools like Grammarly to check sentence formation and grammar.&lt;br /&gt;
# This section includes several typos like “sub modual”. Please fix them throughout the wiki and delete them if not required.&lt;br /&gt;
# Many abbreviations are used before previously defining them. Please define these abbreviations before using them in the text.&lt;br /&gt;
# This section is incomprehensible in its current form. Please rewrite with proper comprehension.&lt;br /&gt;
# Equations and math symbols need proper reformatting. The current version reads like text (along with equations) copy-pasted from a specific source. All mathematical symbols and equations should be formatted via LaTex - this is a learning objective of the Wiki assignment. You can find some useful links on converting your equations/symbols into LaTex code here: (https://optimization.cbe.cornell.edu/index.php?title=Help:Contents).&lt;br /&gt;
# Try to place the figure at the top of the Wiki between the main text.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# I suggest the use of more formal abstract illustrations. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Equations and symbols need proper reformatting.&lt;br /&gt;
# Lemmas and theorems are not expected for this Wiki. Sparse reconstruction is a straightforward concept but is unnecessarily complicated here. Please refer to other Wiki examples to get an idea of what the Wiki should convey.&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Numerical example is missing.&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion section is missing.&lt;br /&gt;
* References&lt;br /&gt;
# The current reference list is not correctly formatted. References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Portfolio optimization|Portfolio Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell id&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introductory sentence should be rephrased. The action of minimizing the risks does not inherently maximize the gains, rather PO aims to maximize gains whilst minimizing risks. &lt;br /&gt;
# Amount of whitespace can be reduced by changing the orientation of Figure 1 and the sentences in this section.&lt;br /&gt;
# Define terms such as risk, return, portfolio, etc., when you introduce them. Assume that the reader may not know much about finance. This goes for all other sections as well. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# A brief mention of modern portfolio theory (i.e.. Markowitz) would be appropriate in this section. &lt;br /&gt;
# Several grammatical errors here involving sentence structure and clarity. Some questionable semantics (e.g., “The portfolio optimization mainly assumes two directions.”) and syntax (phrases such as “.. is as follows” should be followed by a colon). Misuse of commas and missing commas in this section. Two sentences introducing E(rp) and w should be combined into one.&lt;br /&gt;
# Use LaTex to distinguish variables written within a sentence, such as m and n. &lt;br /&gt;
# Rephrase “Cut the relevant information and conditions in the portfolio optimization, as well as the final requirements into the relevant variables, constraints and linear functions of the linear programming problem.”&lt;br /&gt;
# An explanation of a few common constraints would be helpful, rather than just including a table. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Solving the numerical example by GAMS is inappropriate. Please provide detailed step-by-step calculation results.&lt;br /&gt;
# All tables need to be labeled.&lt;br /&gt;
# Include figure number in label for consistency. &lt;br /&gt;
# Fix misspelling “dolling decision variables”. &lt;br /&gt;
# Use LaTex for all variables, equations, and constraints here.&lt;br /&gt;
# Example 2 table is hard to read, so making it bigger would help. &lt;br /&gt;
# Remove the “Using excel as the solver” part from the sentence before the solution discussion. &lt;br /&gt;
# Some grammatical errors here (phrases such as “.. is as follows” should be followed by a colon). &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Rephrase “Portfolio optimization can be used to screen investment projects that meet investors, rationally allocate investment amounts, etc.”&lt;br /&gt;
# Not sure “relevant” is the correct word choice here. &lt;br /&gt;
# You need more specific examples with the utility of portfolio optimization, this section is quite general as is. Some more detail and focus on real-world applications in the financial industry that relate to retirement planning, financial security, economic stability, etc., would be helpful. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Need some commas here.&lt;br /&gt;
# The sentence “Linear programming has been around since the 1940’s and has such a wide base of applications” is not necessary. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove white space between end of sentences and reference numbers.&lt;br /&gt;
&lt;br /&gt;
== [[Chance-constraint method|Chance constraint method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please consider correcting a few grammatical errors: “pre-planned for”, “god”, “certain levels of feasibility is guaranteed in what are”, and “Performance of a system”&lt;br /&gt;
# In “Chance-constraint”, it is capitalized randomly throughout the introduction. Please correct.   &lt;br /&gt;
# Please use technical language to briefly introduce chance-constrained programming. Words like “acts of god”, “cost of doing business” are not appropriate for a  technical Wiki.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Xi is an uncertainty/randomness variable. It is better to use clear language. &lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others.&lt;br /&gt;
# Theory is insufficient. Please expand and explain different approaches. &lt;br /&gt;
# Please add pros and cons explicitly as a list. &lt;br /&gt;
# Explain the physical meaning for examples of chance constraints along with all the notations used.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please remove this example as it is directly from this book. The example should be purely numerical without any background.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others. &lt;br /&gt;
# Please change the table format so as not to confuse the reader. &lt;br /&gt;
# Multiple instances of [Chart to be added] are missing.&lt;br /&gt;
# Example is incomplete. &lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please connect several grammatical and spelling errors: “real life application”, Energy creation, particularly in renewable sources, have high variabilities”, and others&lt;br /&gt;
# “Zhao, Xue, Cao, and Zhang”. No need to list all authors within the article. Provide a reference is sufficient. If authors must be mentioned, (Zhao et al.) should be ok.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Uniqueness and universality earlier are not clear to me. If they are not discussed earlier in the application, it would be better not to introduce new discussions in the conclusion.&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
==  [[Bayesian Optimization]] ==&lt;br /&gt;
* Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor on the section titles.&lt;br /&gt;
* Contents: Subheadings for EI and the algorithm should not be bolded, Random words should not be capitalized.&lt;br /&gt;
* Author list: Remove cornell ID, Please check names&lt;br /&gt;
* Introduction&lt;br /&gt;
# The introduction is too general and not substantial enough. For example, simply saying BayesOpt is useful when the objective function is unknown obscures exactly HOW it is useful (namely, computational efficiency in applications where ground truth sampling is expensive). Discussion on applications should be moved to a separate section.&lt;br /&gt;
# Machine learning rarely includes black-box functions to be optimized. Bayesian optimization is almost never used for optimizing ML loss functions but can instead be used for hyperparameter optimization. Please update such claims in this section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Captions need reformatting.&lt;br /&gt;
# Consider italicizing keywords rather than bolding.&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Discussion on acquisition functions should include comparisons, tradeoffs, and reasons to use one over the other. Should also note that expected improvement is the most widely used in practice, and explain.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Please write equations in the Wiki instead of attaching images for equations.&lt;br /&gt;
# Acquisition function figure could be made larger and clearer to improve readability.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any references to functions or methods in code ‘e.g. fmin’ should be properly formatted as code-stylized text.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Avoid including a figure of the code for this example and explicitly describe the steps to the modeling and solution process instead. &lt;br /&gt;
# Avoid pronouns such as “our” and “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please do not use brackets to enclose lists.&lt;br /&gt;
# Some claims here should be supported by references. Please cite each source after its sentence. &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to “pop” machine learning blogs where anyone can be an author. (e.g. towardsdatascience)&lt;br /&gt;
# All references are URLs. Please cite publications and literature.&lt;br /&gt;
# A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
Notes on grammar: Needs some work. Several instances where colons are inappropriately inserted mid sentence or in subheadings. Explanations are not terse. Several instances of switching between personal and impersonal style of writing, which is distracting.&lt;br /&gt;
&lt;br /&gt;
== [[Conjugate gradient methods]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Introduction&lt;br /&gt;
# All inline notations (e.g., `x`, `A`) should be typed using LaTex.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
# Is Gauss-Newton no longer referenced?&lt;br /&gt;
# Theorems listed in the first section should be accompanied with high level explanation, not just a list of the theorems themselves. The page should read like an article, with proper flow.&lt;br /&gt;
# Please indent equation blocks.&lt;br /&gt;
# Please properly format pseudocode.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Steps should be accompanied with explanation, or reference to the corresponding step in the pseudocode.&lt;br /&gt;
# Please properly format in a more organized manner, aligning equations appropriately and demarcating steps appropriately.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
# Consider including 2 additional examples of applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Consider adding future research directions&lt;br /&gt;
* References&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Too few references.&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Geometric programming|Geometric Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Examples of applications in this section use the same reference. Please cite their individual sources.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The symbol denoting the domain in the definition of a monomial is unclear. Please clarify it or fix this if it is incorrect.&lt;br /&gt;
# Definition of posynomial refers to section 2.1 which is missing from the Wiki (sections are not numbered in the main text).&lt;br /&gt;
# In the generalized posynomial subsection, bullet points do not tell us why h(x) is posynomial. Either provide reasons or simply state that h(x) is posynomial. Also explain why h3 is a generalized posynomial.&lt;br /&gt;
# Additional theory on the feasibility analysis could be provided in this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the transformation example, the last two constraints could also be simplified by applying a natural logarithm on both sides. Please update them as well.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The figure in this section needs to be labeled. &lt;br /&gt;
# The figure needs to be resized and perhaps aligned to the center.  &lt;br /&gt;
* A conclusion section:&lt;br /&gt;
# Please avoid vague language such as: “This makes”.&lt;br /&gt;
# Please avoid opinionated statements: “one of the best ways”.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# This Wiki has very few references. A quick Google Scholar search may provide relevant references.&lt;br /&gt;
&lt;br /&gt;
== [[Adam]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Some grammatical errors here, mostly related to the need for commas in certain places (e.g., “Before Adam..”).&lt;br /&gt;
# Some minor errors with parts of speech throughout the section, need to revisit phrases such as “which has broader scope in future for”, etc. &lt;br /&gt;
# Try splitting up some of the longer sentences in this section, a couple are hard to read.&lt;br /&gt;
# Avoid definitive statements about Adam being the best or always better solver, as this is simply not true (the choice of the “best” optimizer is setting-dependent). Use language such as “Research has shown that Adam has demonstrated superior experimental performance over..” and then cite academic references to back this claim. &lt;br /&gt;
# What does adam stand for? Introduction is insufficient. Please expand. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Revise grammar here, noticing some missing commas and uncapitalized word after period.&lt;br /&gt;
# Rephrase “second one is to update the old position with the updated position”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section, and actual subscripts instead of “m_t”, etc. &lt;br /&gt;
# Avoid inserting inline citations after words like “According to..” or “This article..” as it is a bit informal. This could be rephrased or changed to something like “According to author,^[2] …” with author name inserted. &lt;br /&gt;
# Remove white space before the period in RMSP discussion.&lt;br /&gt;
# Please provide a pseudocode. &lt;br /&gt;
# Please use list the two methods here “Adam is a combination of two gradient descent methods which are explained below”&lt;br /&gt;
# Please expand the theory section significantly. Theoretical convergence properties should be discussed, even if briefly.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Same comment as before, consider replacing inline citations after words like “According to..”. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to blogs and use peer-reviewed academic references instead. &lt;br /&gt;
# Too few references.&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[A-star algorithm|a* algorithm]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor and avoid HTML formatting on the section titles.&lt;br /&gt;
* An introduction of the topic:&lt;br /&gt;
# Weird spacing between paragraphs. Please fix this issue.&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. &lt;br /&gt;
# Please consider correcting a few grammatical errors: “Optimal path”, “cross country”, missing period at end of first paragraph, other random capitalizations, etc.&lt;br /&gt;
# There are no citations in the introduction. Please cite every source.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add the mathematical description of the algorithm.&lt;br /&gt;
# Reference style varies in sentences. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please fix grammatical and spelling errors as (“from current position to the goal”, “There are a lot of discussions”, etc). Also, many hyphens are missing as “non playable”.&lt;br /&gt;
# In algorithms, it is a standard to add high-level description (i.e. pseudocode or flowchart). Please incorporate it. &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section (e.g., “f(n)...”, “h(n)..”, etc.). This goes for other sections as well.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The numerical example does not show the full computations the algorithm performs. Please show the computation on a smaller example.&lt;br /&gt;
# Instead of writing things like “The above image..”, label each figure and use the figure number to refer to it in text. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# No references in the applications. Please cite every source &lt;br /&gt;
# Preferably, add at least an additional application.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion should summarize descriptions. Please modify it to provide a summary.  &lt;br /&gt;
# Please pay attention to the length and structure of sentences here and in the full page. First sentence is hard to read.&lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format and are not linked correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Incorrect reference style. Please follow the example and use the template.&lt;br /&gt;
&lt;br /&gt;
== [[Job shop scheduling|Job-Shop Scheduling Problem]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The current introduction to the jobshop scheduling problem has only two sentences in addition to the parameter description. Introduction typically contains information about the problem, its importance in the real-world, and some information about the solution techniques and their types to solve the problem. Please add some information that covers the above.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# It is unclear whether the assumptions stated in this section are required to apply the following solution techniques. Please clarify the same. Also use complete sentences to state them.&lt;br /&gt;
# The branch and bounds method described in this section only discusses the solution technique for problems with one machines. However, branch and bound is a general technique that can be applied to any MILP problems with varying scales. Please update the “methods” section to be as general as possible.&lt;br /&gt;
# Since this Wiki focuses on jobshop scheduling, at least two methods are expected. Branch and bound is a general MILP technique, so, it is recommended to add a tailored technique that can only solve specific jobshop scheduling problems. Solving the numerical example with this technique is not necessary.&lt;br /&gt;
# Reference to the branch and bound technique described in this section is a “youtube” video. Please add references in literature that describe this method in detail. The method used in this video is highly tailored for a single machine application. This is also an incorrect way to cite a reference. Please keep this section as general as possible.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section and all other sections as well.&lt;br /&gt;
# Check grammar in this section. For example, phrases like “are as follows” need to be followed by a colon and not a period. &lt;br /&gt;
# Consider rewriting the assumptions as a list in this section. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The example used in this section is exactly the same as the one in the youtube video. Please use a modification of this example or choose another example/method to demonstrate the solution technique. Your team should ideally create a numerical example independently. If you take a numerical example directly from a particular source, you will need to get explicit permission from the textbook author in writing and share that written permission with the instructors.&lt;br /&gt;
# The figure in this section is not numbered when all others are. Relabel this figure for consistency and its number to refer to it in-text.&lt;br /&gt;
# A numerical example should be simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments).&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section should only focus on real-world applications of the jobshop scheduling problem. But currently, this section includes additional information on solution techniques/complexity that is appropriate for the Introduction section. Please discuss the applications of the problem in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# The meaning of  “Operations applications” is unclear. Please explain or update if necessary.&lt;br /&gt;
# The current conclusion section does not properly summarize the problem. Please refer to other Wiki examples for an idea to update the section accordingly.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Please reference media sources like reference 5 appropriately.&lt;br /&gt;
# A simple Google Scholar search would give you many &amp;quot;formal&amp;quot; references.&lt;br /&gt;
&lt;br /&gt;
== [[Optimization in game theory]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: remove cornell IDs. &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Why only a subsection on &amp;quot;Nash Equilibrium&amp;quot; is included in &amp;quot;Theory&amp;quot; section? Please re-format.&lt;br /&gt;
# Please edit references.&lt;br /&gt;
# Add a mathematical description of the problem and a pseudocode/flowchart for the Lemke-Howson algorithm.  &lt;br /&gt;
# Rephrase “This algorithm utilizes iterated pivoting much like the simplex algorithm used in the simplex algorithm used in linear programming”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please organize the last part in a more readable format. Questions may be in bold and numbered, answers are more direct, etc.&lt;br /&gt;
# Remember to cite all images and tables. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Very good, link the reference and cite all sources. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summarizing especially from theory sentences and avoid long sentences. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Incorrect reference style. Please correct.&lt;br /&gt;
&lt;br /&gt;
== [[Trust-region methods]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
# Remove cornell IDs. Author is also spelled incorrectly. &lt;br /&gt;
# Add the course section.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xk”, “f`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “we”. This goes for all other sections as well.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Organization of ideas in this section needs work.&lt;br /&gt;
# You have not defined explicitly why the Cauchy point is important to compute beyond a vague allusion to performance improvements, which is also wrong (it is useful because of its guarantees for convergence, not performance) It is also misspelled.&lt;br /&gt;
# Each approach should have accompanying explanation and motivation for why it is being discussed. It is not enough to outline the algorithm.&lt;br /&gt;
# Please make sure symbols are properly subscripted and superscripted (e.g. “pk” should be “p_k”&lt;br /&gt;
# Please format the algorithm in proper algorithmic pseudocode format.&lt;br /&gt;
# Little to no discussion on global convergence guarantees&lt;br /&gt;
# Please include discussion about the advantages and disadvantages of the algorithm&lt;br /&gt;
# Fix typo “couchy point”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any code functions (uminfunc) should have proper text formatting.&lt;br /&gt;
# The graph needs a better caption explaining how the axes are labeled and what data points are being shown.&lt;br /&gt;
# Please increase the quality of the figure. It is hard to see the red line. &lt;br /&gt;
# Add citation to “The Rosenbrock function is a non-convex function, introduced by Howard H. Rosenbrock in 1960, which is often used as a performance test problem for optimization algorithms.”&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The content in this section as it is currently does NOT describe applications, but rather different approaches within the trust region methodology. Please provide specific applications (e.g. TRPO in reinforcement learning).&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summary, future research directions for example is a good start.&lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style.&lt;br /&gt;
# Please consider having the references as this Wiki template, &amp;lt;nowiki&amp;gt;https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
*There are numerous misspellings, grammatical errors, and incorrect claims. Please fix these.&lt;br /&gt;
&lt;br /&gt;
== [[Momentum]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Apart from an explanation on momentum, it is necessary to briefly point out the limitations of SGD and why momentum could help with these limitations. Please update it accordingly.&lt;br /&gt;
# Remove bold on “Momentum”.&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Equation formatting is very poor and should be formalized.&lt;br /&gt;
# It is important to use technical language for this Wiki. Although a layman’s explanation is appreciated, it would be better to skip using words like “zig zagging”. Try to explain all concepts in a technical language with few simplifications but NOT vice versa.&lt;br /&gt;
# The definition of the update rule for SGD with momentum looks incorrect, specifically the first expression. Please fix it and also explain all the parameters used.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “W”, “V`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “you”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;. Since writing all iterations is not feasible, at least present a few iterations for both cases.&lt;br /&gt;
# Please try to label the plots that explains what each line color means.&lt;br /&gt;
# Starting point for SGD with momentum is different in explanation and the table. Please fix the same.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please use correct terminology like “optimizing non-convex functions” and not “training non-convex models”.&lt;br /&gt;
# Adam, Adadelta, and RMSprop are variants of SGD that already use momentum. Please double check the writing and update if necessary.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please refrain from using words like “zig zag” effects.&lt;br /&gt;
* References&lt;br /&gt;
# Almost all references used are URLs. Please try to add journal/conference articles or books for references, instead of directly citing the URLs. Please check the list below and run a quick Google (Scholar) search to identify relevant literature.&lt;br /&gt;
&lt;br /&gt;
== [[Stochastic dynamic programming|Stochastic Dynamic programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions &lt;br /&gt;
# Remove the grey box background of equations.&lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Outer-approximation (OA)|Outer-approximation]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic &lt;br /&gt;
# See formatting guideline below&lt;br /&gt;
# Avoid opinionated statements such as “MINLP problems are usually the hardest to solve”.&lt;br /&gt;
# Rearrange the text such that the MINLP formulation is in the theory section and keep the introduction in words only.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Consider left aligning equations and optimization problem formulations by the “=”. See [[Stochastic programming|https://optimization.cbe.cornell.edu/index.php?title=Stochastic_programming]] for an example&lt;br /&gt;
# The sentence “The Outer-Approximation (OA) algorithm was first proposed by Duran and and Grossmann in 1986 to solve MINLP problems.” needs a reference. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# “Minimize” and “subject to” should be “min” and “s.t.” in MathType&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Does not explicitly point out why OA is applicable (and/or preferred) in these applications, rather than other MINLP approaches (show that the problem formulations are amenable to a solution approach through OA)&lt;br /&gt;
# The sentence “... an active research area and there exists a vast number of applications in fields such as engineering, computational chemistry, and finance.” needs references. &lt;br /&gt;
# Place GAMS code in a single code box or remove it.&lt;br /&gt;
# Consider reformatting to make steps more readable. Inserting spaces and breaking down steps would help. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Too short. Consider discussion on future research direction and discussion on uncertainty&lt;br /&gt;
# Please review abbreviations throughout the page. Why is MINLP redefined here? “Outer-Approximation is a well known efficient approach for solving convex mixed-integer nonlinear programs (MINLP)”. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove &amp;quot;Template:Reflist&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== [[Unit commitment problem]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction and avoid discussions of examples or specific applications in this section.&lt;br /&gt;
# The sentence “Nonlinear, Non-convex programming optimization problem.” doesn’t make sense by itself and Non-convex shouldn’t be capitalized.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Figure/image format should be revised to better display the content.&lt;br /&gt;
# Uppercase characters are used randomly (e.g., “non-convex transmission Constraints”) . Please follow correct language conventions for sentence structure.&lt;br /&gt;
# Avoid inserting inline citations after words like “written in matrix form as equation [3]..” or “presented in [3]...” as it is a bit informal when you don’t explicitly name the subject. Also these two sentences are grammatically incorrect and appear to be missing an ending period and comma, respectively. &lt;br /&gt;
# Don’t say “written in matrix form as equation..” and just cite the reference, actually write out the equation. &lt;br /&gt;
# Properly label the figure in this section with a figure number and improve visibility by making it larger. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Label the figures in this section properly with figure numbers.&lt;br /&gt;
# Fix typo “while minimize” to “while minimizing”. &lt;br /&gt;
# Avoid pronouns such as “we”. &lt;br /&gt;
# Use the equation editor when typing equations. &lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# I suggest changing the order of the subtitles here. For example, Single-Period Unit Commitment. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Frank-Wolfe]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# I suggest highlighting disadvantages along with advantages. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# “[n x 1] matrix” please use the equation editor to express mathematical descriptions and symbols (p,b, etc)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please show at least a few iterations. Even for smaller examples if needed. Report the final solution. &lt;br /&gt;
# Please use the LaTex code or equation editor for min and include s.t., etc.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. For your example, please explicitly state that the derivative is taken etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications: &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Same as the introduction. Pros and cons should be evaluated together!&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Line search methods|Line Search Method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Expand the introduction and avoid discussion on some of the specific steps in the solution process. &lt;br /&gt;
# Provide references here. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The phrase “are as follows” in the steepest descent method discussion needs to be followed by a colon. &lt;br /&gt;
# Rephrase “has a nice convergence theory” and cite a reference for this claim.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Add citation after “.. proposed by Phillip Wolfe in 1969.”&lt;br /&gt;
# Figure 1 is between two sections. Please fix this issue. &lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# Add some space between iterations or subsection break&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# Too few references in this section. &lt;br /&gt;
# Last paragraph makes some claims without references. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Piecewise linear approximation|Piecewise Linear Approximation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The content of this section is good, but there are some issues with sentence clarity and some other grammatical errors. Please revisit this section and make changes accordingly. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Fix typo “to force the x’ values become associated with”. &lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Some of these longer sentences are hard to read. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Expand the conclusion section to be longer than one sentence. The conclusion section to include a brief summary of what was discussed above, an emphasis on it’s significance, and a brief discussion of future extensions and research direction if applicable.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to sources when possible.&lt;br /&gt;
&lt;br /&gt;
== [[Mathematical programming with equilibrium constraints|Mathematical Programming with Equilibrium constraints]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes several terms like variational inequalities, constraint qualifications that were not discussed in the class. Please add a sentence to explain them before using them.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The meaning of parameter vector x is unclear. Please add more information or update if necessary.&lt;br /&gt;
# Equations and symbols in the PIPA subsection are not formatted correctly. Please use the same formatting for all equations, so they read as mathematical equations and not text. This goes for all other sections as well.&lt;br /&gt;
# Use equations instead of images to represent math programs and equations in the Implicit Descent and SQP subsection.&lt;br /&gt;
# Apart from the steps for each solution technique, please also add a few sentences that describe each method.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please define the terms like NCP, MP before abbreviating them. Also try not to unnecessarily abbreviate simple terms.&lt;br /&gt;
# Equations should be typed by LaTex. Images for equations are unacceptable.&lt;br /&gt;
# GAMS code is strongly discouraged. Please solve the problem &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The selected numerical example is fine but is directly solved with the MPEC solver in GAMS. Try to solve it manually like the homework/in-class problems step by step using the steps described in the previous section by choosing any of the methods.&lt;br /&gt;
# Avoid using figures in the equations (subject to etc)&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Add references to “power management, highway pricing, chemical process engineering, and traffic planning.”&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# This Wiki contains very few references. Please check the list below and run a quick Google (Scholar) search to identify relevant literature.&lt;br /&gt;
&lt;br /&gt;
== [[Wing shape optimization|Wing shape Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction is missing several references (e.g., “software packages like computational fluid dynamics..”, sentences containing things that aren’t common knowledge, performance claims, etc.)&lt;br /&gt;
# Avoid discussion involving finer details of subject methods in this section. &lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. Same applies to box of content!&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Properly cite the CFD package, don’t just include a link. &lt;br /&gt;
# Properly label the figure with a figure number.&lt;br /&gt;
# Consider removing white space between isolated sentences to improve readability. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# If you’ve already defined an abbreviation (CFD), there is no need to define it again. Just use the abbreviation.&lt;br /&gt;
# Avoid pronouns such as “we” or “they”.&lt;br /&gt;
# Phrases like “under the following” need to be followed by a colon.&lt;br /&gt;
# Properly label the figure with a figure number and consider making them larger to improve visibility. Call the reader&#039;s attention to the figures in text by referencing the figure number.&lt;br /&gt;
# “As seen in the video below” is stated yet there are only images present and it may be initially unclear to the reader which figure is being referenced here. &lt;br /&gt;
# Avoid inserting inline citations like “[4] introduces an..”  as it is a bit informal when you don’t explicitly name the subject.&lt;br /&gt;
# Don’t just cite the reference when discussing the problem formulation, explicitly write the model formulation and solution process using LaTex or equation visual editor.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Some characters are randomly capitalized in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# These variables should be defined before the conclusion section, they are out of place here. Also, please use normal text when explaining variables except for the variable symbol. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Interior-point method for NLP|Interior point method for NLP]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Primal-Dual formulation and comparison to the Barrier Method is not discussed.&lt;br /&gt;
# Include brief discussion about big O convergence rates.&lt;br /&gt;
# Need discussion about the concept of “central path” and the notion of self concordance&lt;br /&gt;
# Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Graphs and images are incorrectly formatted to the page. Consider proper alignment with respect to the text body.&lt;br /&gt;
# Use explicitly typed Latex equations instead of images to represent math programs and equations.&lt;br /&gt;
# Fix typo “optimisation”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xi ”, “μ”, etc.).&lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# There are formatting issues with figures 2,3. Please make sure to embed them within their respective sections. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section &lt;br /&gt;
# Minor character code typos in the conclusion.&lt;br /&gt;
# Also, please add more discussion in this section. Future research directions is a good start.&lt;br /&gt;
# There is a box &amp;quot;􏰐&amp;quot;&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[AdaGrad|Adagrad]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Include discussion on its variants (most important is AdaDelta).&lt;br /&gt;
# Include disadvantages of Adagrad, since this provides motivation for the discussion on the variants and improvements of Adagrad&lt;br /&gt;
# Include comparisons to other popular optimizers (particularly important is comparisons to regular SGD and Adam)&lt;br /&gt;
# Different convergence rates are possible depending on the setting where Adagrad is used, but this is not mentioned on the page currently. As such the regret bound section should be more thoroughly explained.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the first sentence, “..take the following numerical example” should be followed by a colon. &lt;br /&gt;
# Fix typo “trayectory”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is too short; include specific applications in which input features are sparse and Adagrad excels.&lt;br /&gt;
# Add reference to the claim “Mainly, it is a good choice for deep learning models with sparse input features”.&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References &lt;br /&gt;
&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources (even if the base algorithm itself comes from a singular paper)&lt;br /&gt;
&lt;br /&gt;
== [[McCormick envelopes|McCormick Envelopes]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: OK but I suggest removing NetID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# First sentence is hard to read. Please consider keeping sentences below 25-30 words. &lt;br /&gt;
# No references provided. Please cite all sources. &lt;br /&gt;
# Figure 1 is provided in the middle between two sections. Please include in the introduction section. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# When using mathematical expressions and symbols, please use the equation editor. (e.g., x*y, exy + y, sin (x+y) - x2)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution. &lt;br /&gt;
# For the sample GAMS code, please place it in a code box&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each. &lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section: &lt;br /&gt;
* References&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4780</id>
		<title>2021 Cornell Optimization Open Textbook Feedback</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4780"/>
		<updated>2021-12-05T20:07:30Z</updated>

		<summary type="html">&lt;p&gt;Asa273: /* Momentum */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[Lagrangean duality|Lagrangian duality]] ==&lt;br /&gt;
* Author list, sections and TOC&lt;br /&gt;
# Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor and avoid HTML formatting on the section titles.&lt;br /&gt;
# Remove cornell ID from Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes sentences on constructing the dual problem and is referred to as Lagrangian relaxation (LR). This is incorrect, please fix the definition of LR.&lt;br /&gt;
# Definitions of LR and its relation to duality should be double checked and re-written.&lt;br /&gt;
# Only one reference is present in this section. Please add more relevant references by expanding this section.&lt;br /&gt;
# Consider merging the “introduction” and “history” sections.&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The Lagrangian variables associated with equality constraints h(x) are unbounded but the Lagrangian dual problem states them as non-negative. Please fix the same.&lt;br /&gt;
# Also to construct a dual, we do not change minimization to maximization directly. We observed such things in the examples in lecture notes due to simplification. The lagrangian dual problem would be minimize (,).&lt;br /&gt;
# Adding to the previous point, the Lagrangian is a lower bound on the original objective; the solution to the primal and dual or only equivalent if the duality gap is 0. You reference this in one section, but this is after your statement “Hence, solving the dual problem, which is a function of the Lagrangian multipliers (𝜆*) yields the same solution as the primal problem, which is a function of the original variables (x*). “. Please clarify the specific conditions that must hold for the solution of the dual to be equal to the primal’s.&lt;br /&gt;
# You refer to the “Complementary Slackness Theorem”, but don’t actually write the mathematical representation of complementary slackness. Please fix this. Also consider including the derivation of the complementary slackness condition, as it is both easy and short. Boyd is a good reference for this.&lt;br /&gt;
# Last step of the “process” subsection also needs updating according to the previous comments.&lt;br /&gt;
# The inline notations should also be typed using LaTex.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Only one dual variable is associated with each constraint. The numerical example uses two for the first and second constraint which is unnecessary. Please update it accordingly for both constraints. This particular example will only have two dual variables instead of the five dual variables used currently.&lt;br /&gt;
# All consecutive steps need to be updated since the dual variables would be updated.&lt;br /&gt;
# After substitution the nonlinear function should be further simplified. The current expression reads like a highly nonlinear function but can be easily simplified.&lt;br /&gt;
# Similar to the comments in the methodology section, inverting minimize to maximize is incorrect. Please update the dual objective function and domain of dual variables accordingly.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Bullet points could be used to state the last four real-world examples that explain the physical meaning of the primal and dual problems.&lt;br /&gt;
# Add references for the last set of applications. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# This section contains a few typos. Please fix the same.&lt;br /&gt;
* References&lt;br /&gt;
# Some citations&#039; hyperlinks are displaying.&lt;br /&gt;
&lt;br /&gt;
== [[Disjunctive inequalities|Disjunctive Inequalities]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section and semester&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# No citations are present in this section.&lt;br /&gt;
# “mixed-integer programming (MIP)” should be used instead of “multiple integer programming (MIP)”. Please fix this error.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The abbreviation MILP is not previously defined. Please fix this issue.&lt;br /&gt;
# You consistently use the negative sign instead of the NOT operator for y (-y instead of ¬y). &lt;br /&gt;
# Some inconsistencies with the spacing of variables, constraints, etc., under the “General” section that need to be fixed.&lt;br /&gt;
# Typo in “This is shown below by M1, M2, y1, and y1:” where y1 needs to be changed to y2. Why use two different Big-M variables here? Elsewhere in the Wiki you only use one so this could lead to confusion with a general audience. Also if this was taken from the lecture notes then it needs to be cited.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please reformulate and solve a complete numerical example rather than just reformulating a general example. Demonstrate the use of Big-M and Convex Hull formulation in an optimization problem that provides details such as individual steps in the problem solving process and final results.&lt;br /&gt;
# Add space between vee (V) operator and brackets in first line of Latex&lt;br /&gt;
# Please format variables correctly, for example, use &amp;lt;math&amp;gt;x_1&amp;lt;/math&amp;gt; instead of x1.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please format the equations appropriately either by using latex code or the visual editor. These images are NOT acceptable!&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# There is no conclusion presented in this section at all.&lt;br /&gt;
* References&lt;br /&gt;
# The included references have NOT been used anywhere in the Wiki. Add references for sentences that are not common knowledge and please link them appropriately with the text in Wiki. If the figures used here were not original works, you must also cite them. &lt;br /&gt;
# There are many papers on this topic. A simple Google (Scholar) search could provide you with sufficient references to cite. &lt;br /&gt;
# Many important references of this topic are missing.&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
==[[Stochastic programming|Stochastic Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell IDs&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
# This section only includes two sentences on Stochastic programming (SP), while the rest gives examples of uncertainty. Please discuss the need for SP in the presence of uncertainty. Also, discussion on robust optimization and its limitations should be removed since it is out of place.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please avoid direct inline linkbacks to Wikipedia.&lt;br /&gt;
# The symbol “xi” in the methodology subsection should be explained.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Copying a numerical example &amp;quot;entirely&amp;quot; from a textbook is inappropriate. Your team should come up with a &amp;quot;numerical&amp;quot; case.&lt;br /&gt;
# No specific application context is needed for a numerical example.&lt;br /&gt;
# The inline notations (`x1`, `s1`) should also be typed using LaTex.&lt;br /&gt;
# Label all tables with a table number for better readability. &lt;br /&gt;
# Properly format the solution table with the label attached rather than the following sentence. The solution table looks different from the others, please fix this for consistency. &lt;br /&gt;
* A section to discuss and/or illustrate the applications;&lt;br /&gt;
# I suggest eliminating citing the last name of the first author (i.e. Zhou et al.)&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# URLs of some citations are not properly formatted (not showing the hyperlinks).&lt;br /&gt;
&lt;br /&gt;
== [[Exponential transformation|Exponential Transformation]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction.&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Last sentence with 51 words is hard to read. &lt;br /&gt;
# Second Sentence: please change the word “they” as it could make the meaning ambiguous&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
# If you use abbreviations, please introduce them (e.g. NLP,MINLP)&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please explain the transformation in words along with equations&lt;br /&gt;
# Terms like posynomial should be described in detail.&lt;br /&gt;
# Please move the numerical example to the section below&lt;br /&gt;
# The “(eq 1)” is not needed here.&lt;br /&gt;
# Please expand this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the third equation of the numerical example, it is confusing to have coefficients after numbers. Some readers may read it as an exponent.&lt;br /&gt;
# Last equation in this section after “further linearization” is incorrect. This equation cannot be further linearized, please fix this.&lt;br /&gt;
# Please explain the steps in the numerical examples in detail. The step-by-step solution should be provided. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Missing part of text: “Proof of convexity of with positive definite test of Hessian…”&lt;br /&gt;
# Applications are not numerical examples. Please refer to this link for example of applications: [[Duality|https://optimization.cbe.cornell.edu/index.php?title=Duality]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
# The section current applications is redundant&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
# Under current applications, do not just use a hyperlink to describe an application. Actually describe it. And properly inline citation style should be used instead of the hyperlink. &lt;br /&gt;
# The convexification application of MINLP can be further simplified for binary variables. Please refer to the lecture slides for more information.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references by using this as Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
&lt;br /&gt;
== [[Sparse Reconstruction with Compressed Sensing|Sparse reconstruction with Compressed Sensing]] ==&lt;br /&gt;
This Wiki needs a significant rewrite. Please go through the comments for details.&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction section should include information about the problem and its implications presented briefly. Please use full sentences to write this Wiki. You may use tools like Grammarly to check sentence formation and grammar.&lt;br /&gt;
# This section includes several typos like “sub modual”. Please fix them throughout the wiki and delete them if not required.&lt;br /&gt;
# Many abbreviations are used before previously defining them. Please define these abbreviations before using them in the text.&lt;br /&gt;
# This section is incomprehensible in its current form. Please rewrite with proper comprehension.&lt;br /&gt;
# Equations and math symbols need proper reformatting. The current version reads like text (along with equations) copy-pasted from a specific source. All mathematical symbols and equations should be formatted via LaTex - this is a learning objective of the Wiki assignment. You can find some useful links on converting your equations/symbols into LaTex code here: (https://optimization.cbe.cornell.edu/index.php?title=Help:Contents).&lt;br /&gt;
# Try to place the figure at the top of the Wiki between the main text.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# I suggest the use of more formal abstract illustrations. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Equations and symbols need proper reformatting.&lt;br /&gt;
# Lemmas and theorems are not expected for this Wiki. Sparse reconstruction is a straightforward concept but is unnecessarily complicated here. Please refer to other Wiki examples to get an idea of what the Wiki should convey.&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Numerical example is missing.&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion section is missing.&lt;br /&gt;
* References&lt;br /&gt;
# The current reference list is not correctly formatted. References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Portfolio optimization|Portfolio Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell id&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introductory sentence should be rephrased. The action of minimizing the risks does not inherently maximize the gains, rather PO aims to maximize gains whilst minimizing risks. &lt;br /&gt;
# Amount of whitespace can be reduced by changing the orientation of Figure 1 and the sentences in this section.&lt;br /&gt;
# Define terms such as risk, return, portfolio, etc., when you introduce them. Assume that the reader may not know much about finance. This goes for all other sections as well. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# A brief mention of modern portfolio theory (i.e.. Markowitz) would be appropriate in this section. &lt;br /&gt;
# Several grammatical errors here involving sentence structure and clarity. Some questionable semantics (e.g., “The portfolio optimization mainly assumes two directions.”) and syntax (phrases such as “.. is as follows” should be followed by a colon). Misuse of commas and missing commas in this section. Two sentences introducing E(rp) and w should be combined into one.&lt;br /&gt;
# Use LaTex to distinguish variables written within a sentence, such as m and n. &lt;br /&gt;
# Rephrase “Cut the relevant information and conditions in the portfolio optimization, as well as the final requirements into the relevant variables, constraints and linear functions of the linear programming problem.”&lt;br /&gt;
# An explanation of a few common constraints would be helpful, rather than just including a table. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Solving the numerical example by GAMS is inappropriate. Please provide detailed step-by-step calculation results.&lt;br /&gt;
# All tables need to be labeled.&lt;br /&gt;
# Include figure number in label for consistency. &lt;br /&gt;
# Fix misspelling “dolling decision variables”. &lt;br /&gt;
# Use LaTex for all variables, equations, and constraints here.&lt;br /&gt;
# Example 2 table is hard to read, so making it bigger would help. &lt;br /&gt;
# Remove the “Using excel as the solver” part from the sentence before the solution discussion. &lt;br /&gt;
# Some grammatical errors here (phrases such as “.. is as follows” should be followed by a colon). &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Rephrase “Portfolio optimization can be used to screen investment projects that meet investors, rationally allocate investment amounts, etc.”&lt;br /&gt;
# Not sure “relevant” is the correct word choice here. &lt;br /&gt;
# You need more specific examples with the utility of portfolio optimization, this section is quite general as is. Some more detail and focus on real-world applications in the financial industry that relate to retirement planning, financial security, economic stability, etc., would be helpful. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Need some commas here.&lt;br /&gt;
# The sentence “Linear programming has been around since the 1940’s and has such a wide base of applications” is not necessary. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove white space between end of sentences and reference numbers.&lt;br /&gt;
&lt;br /&gt;
== [[Chance-constraint method|Chance constraint method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please consider correcting a few grammatical errors: “pre-planned for”, “god”, “certain levels of feasibility is guaranteed in what are”, and “Performance of a system”&lt;br /&gt;
# In “Chance-constraint”, it is capitalized randomly throughout the introduction. Please correct.   &lt;br /&gt;
# Please use technical language to briefly introduce chance-constrained programming. Words like “acts of god”, “cost of doing business” are not appropriate for a  technical Wiki.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Xi is an uncertainty/randomness variable. It is better to use clear language. &lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others.&lt;br /&gt;
# Theory is insufficient. Please expand and explain different approaches. &lt;br /&gt;
# Please add pros and cons explicitly as a list. &lt;br /&gt;
# Explain the physical meaning for examples of chance constraints along with all the notations used.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please remove this example as it is directly from this book. The example should be purely numerical without any background.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others. &lt;br /&gt;
# Please change the table format so as not to confuse the reader. &lt;br /&gt;
# Multiple instances of [Chart to be added] are missing.&lt;br /&gt;
# Example is incomplete. &lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please connect several grammatical and spelling errors: “real life application”, Energy creation, particularly in renewable sources, have high variabilities”, and others&lt;br /&gt;
# “Zhao, Xue, Cao, and Zhang”. No need to list all authors within the article. Provide a reference is sufficient. If authors must be mentioned, (Zhao et al.) should be ok.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Uniqueness and universality earlier are not clear to me. If they are not discussed earlier in the application, it would be better not to introduce new discussions in the conclusion.&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
==  [[Bayesian Optimization]] ==&lt;br /&gt;
* Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor on the section titles.&lt;br /&gt;
* Contents: Subheadings for EI and the algorithm should not be bolded, Random words should not be capitalized.&lt;br /&gt;
* Author list: Remove cornell ID, Please check names&lt;br /&gt;
* Introduction&lt;br /&gt;
# The introduction is too general and not substantial enough. For example, simply saying BayesOpt is useful when the objective function is unknown obscures exactly HOW it is useful (namely, computational efficiency in applications where ground truth sampling is expensive). Discussion on applications should be moved to a separate section.&lt;br /&gt;
# Machine learning rarely includes black-box functions to be optimized. Bayesian optimization is almost never used for optimizing ML loss functions but can instead be used for hyperparameter optimization. Please update such claims in this section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Captions need reformatting.&lt;br /&gt;
# Consider italicizing keywords rather than bolding.&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Discussion on acquisition functions should include comparisons, tradeoffs, and reasons to use one over the other. Should also note that expected improvement is the most widely used in practice, and explain.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Please write equations in the Wiki instead of attaching images for equations.&lt;br /&gt;
# Acquisition function figure could be made larger and clearer to improve readability.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any references to functions or methods in code ‘e.g. fmin’ should be properly formatted as code-stylized text.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Avoid including a figure of the code for this example and explicitly describe the steps to the modeling and solution process instead. &lt;br /&gt;
# Avoid pronouns such as “our” and “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please do not use brackets to enclose lists.&lt;br /&gt;
# Some claims here should be supported by references. Please cite each source after its sentence. &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to “pop” machine learning blogs where anyone can be an author. (e.g. towardsdatascience)&lt;br /&gt;
# All references are URLs. Please cite publications and literature.&lt;br /&gt;
# A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
Notes on grammar: Needs some work. Several instances where colons are inappropriately inserted mid sentence or in subheadings. Explanations are not terse. Several instances of switching between personal and impersonal style of writing, which is distracting.&lt;br /&gt;
&lt;br /&gt;
== [[Conjugate gradient methods]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Introduction&lt;br /&gt;
# All inline notations (e.g., `x`, `A`) should be typed using LaTex.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
# Is Gauss-Newton no longer referenced?&lt;br /&gt;
# Theorems listed in the first section should be accompanied with high level explanation, not just a list of the theorems themselves. The page should read like an article, with proper flow.&lt;br /&gt;
# Please indent equation blocks.&lt;br /&gt;
# Please properly format pseudocode.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Steps should be accompanied with explanation, or reference to the corresponding step in the pseudocode.&lt;br /&gt;
# Please properly format in a more organized manner, aligning equations appropriately and demarcating steps appropriately.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
# Consider including 2 additional examples of applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Consider adding future research directions&lt;br /&gt;
* References&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Too few references.&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Geometric programming|Geometric Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Examples of applications in this section use the same reference. Please cite their individual sources.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The symbol denoting the domain in the definition of a monomial is unclear. Please clarify it or fix this if it is incorrect.&lt;br /&gt;
# Definition of posynomial refers to section 2.1 which is missing from the Wiki (sections are not numbered in the main text).&lt;br /&gt;
# In the generalized posynomial subsection, bullet points do not tell us why h(x) is posynomial. Either provide reasons or simply state that h(x) is posynomial. Also explain why h3 is a generalized posynomial.&lt;br /&gt;
# Additional theory on the feasibility analysis could be provided in this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the transformation example, the last two constraints could also be simplified by applying a natural logarithm on both sides. Please update them as well.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The figure in this section needs to be labeled. &lt;br /&gt;
# The figure needs to be resized and perhaps aligned to the center.  &lt;br /&gt;
* A conclusion section:&lt;br /&gt;
# Please avoid vague language such as: “This makes”.&lt;br /&gt;
# Please avoid opinionated statements: “one of the best ways”.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# This Wiki has very few references. A quick Google Scholar search may provide relevant references.&lt;br /&gt;
&lt;br /&gt;
== [[Adam]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Some grammatical errors here, mostly related to the need for commas in certain places (e.g., “Before Adam..”).&lt;br /&gt;
# Some minor errors with parts of speech throughout the section, need to revisit phrases such as “which has broader scope in future for”, etc. &lt;br /&gt;
# Try splitting up some of the longer sentences in this section, a couple are hard to read.&lt;br /&gt;
# Avoid definitive statements about Adam being the best or always better solver, as this is simply not true (the choice of the “best” optimizer is setting-dependent). Use language such as “Research has shown that Adam has demonstrated superior experimental performance over..” and then cite academic references to back this claim. &lt;br /&gt;
# What does adam stand for? Introduction is insufficient. Please expand. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Revise grammar here, noticing some missing commas and uncapitalized word after period.&lt;br /&gt;
# Rephrase “second one is to update the old position with the updated position”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section, and actual subscripts instead of “m_t”, etc. &lt;br /&gt;
# Avoid inserting inline citations after words like “According to..” or “This article..” as it is a bit informal. This could be rephrased or changed to something like “According to author,^[2] …” with author name inserted. &lt;br /&gt;
# Remove white space before the period in RMSP discussion.&lt;br /&gt;
# Please provide a pseudocode. &lt;br /&gt;
# Please use list the two methods here “Adam is a combination of two gradient descent methods which are explained below”&lt;br /&gt;
# Please expand the theory section significantly. Theoretical convergence properties should be discussed, even if briefly.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Same comment as before, consider replacing inline citations after words like “According to..”. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to blogs and use peer-reviewed academic references instead. &lt;br /&gt;
# Too few references.&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[A-star algorithm|a* algorithm]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor and avoid HTML formatting on the section titles.&lt;br /&gt;
* An introduction of the topic:&lt;br /&gt;
# Weird spacing between paragraphs. Please fix this issue.&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. &lt;br /&gt;
# Please consider correcting a few grammatical errors: “Optimal path”, “cross country”, missing period at end of first paragraph, other random capitalizations, etc.&lt;br /&gt;
# There are no citations in the introduction. Please cite every source.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add the mathematical description of the algorithm.&lt;br /&gt;
# Reference style varies in sentences. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please fix grammatical and spelling errors as (“from current position to the goal”, “There are a lot of discussions”, etc). Also, many hyphens are missing as “non playable”.&lt;br /&gt;
# In algorithms, it is a standard to add high-level description (i.e. pseudocode or flowchart). Please incorporate it. &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section (e.g., “f(n)...”, “h(n)..”, etc.). This goes for other sections as well.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The numerical example does not show the full computations the algorithm performs. Please show the computation on a smaller example.&lt;br /&gt;
# Instead of writing things like “The above image..”, label each figure and use the figure number to refer to it in text. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# No references in the applications. Please cite every source &lt;br /&gt;
# Preferably, add at least an additional application.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion should summarize descriptions. Please modify it to provide a summary.  &lt;br /&gt;
# Please pay attention to the length and structure of sentences here and in the full page. First sentence is hard to read.&lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format and are not linked correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Incorrect reference style. Please follow the example and use the template.&lt;br /&gt;
&lt;br /&gt;
== [[Job shop scheduling|Job-Shop Scheduling Problem]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The current introduction to the jobshop scheduling problem has only two sentences in addition to the parameter description. Introduction typically contains information about the problem, its importance in the real-world, and some information about the solution techniques and their types to solve the problem. Please add some information that covers the above.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# It is unclear whether the assumptions stated in this section are required to apply the following solution techniques. Please clarify the same. Also use complete sentences to state them.&lt;br /&gt;
# The branch and bounds method described in this section only discusses the solution technique for problems with one machines. However, branch and bound is a general technique that can be applied to any MILP problems with varying scales. Please update the “methods” section to be as general as possible.&lt;br /&gt;
# Since this Wiki focuses on jobshop scheduling, at least two methods are expected. Branch and bound is a general MILP technique, so, it is recommended to add a tailored technique that can only solve specific jobshop scheduling problems. Solving the numerical example with this technique is not necessary.&lt;br /&gt;
# Reference to the branch and bound technique described in this section is a “youtube” video. Please add references in literature that describe this method in detail. The method used in this video is highly tailored for a single machine application. This is also an incorrect way to cite a reference. Please keep this section as general as possible.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section and all other sections as well.&lt;br /&gt;
# Check grammar in this section. For example, phrases like “are as follows” need to be followed by a colon and not a period. &lt;br /&gt;
# Consider rewriting the assumptions as a list in this section. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The example used in this section is exactly the same as the one in the youtube video. Please use a modification of this example or choose another example/method to demonstrate the solution technique. Your team should ideally create a numerical example independently. If you take a numerical example directly from a particular source, you will need to get explicit permission from the textbook author in writing and share that written permission with the instructors.&lt;br /&gt;
# The figure in this section is not numbered when all others are. Relabel this figure for consistency and its number to refer to it in-text.&lt;br /&gt;
# A numerical example should be simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments).&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section should only focus on real-world applications of the jobshop scheduling problem. But currently, this section includes additional information on solution techniques/complexity that is appropriate for the Introduction section. Please discuss the applications of the problem in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# The meaning of  “Operations applications” is unclear. Please explain or update if necessary.&lt;br /&gt;
# The current conclusion section does not properly summarize the problem. Please refer to other Wiki examples for an idea to update the section accordingly.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Please reference media sources like reference 5 appropriately.&lt;br /&gt;
# A simple Google Scholar search would give you many &amp;quot;formal&amp;quot; references.&lt;br /&gt;
&lt;br /&gt;
== [[Optimization in game theory]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: remove cornell IDs. &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Why only a subsection on &amp;quot;Nash Equilibrium&amp;quot; is included in &amp;quot;Theory&amp;quot; section? Please re-format.&lt;br /&gt;
# Please edit references.&lt;br /&gt;
# Add a mathematical description of the problem and a pseudocode/flowchart for the Lemke-Howson algorithm.  &lt;br /&gt;
# Rephrase “This algorithm utilizes iterated pivoting much like the simplex algorithm used in the simplex algorithm used in linear programming”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please organize the last part in a more readable format. Questions may be in bold and numbered, answers are more direct, etc.&lt;br /&gt;
# Remember to cite all images and tables. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Very good, link the reference and cite all sources. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summarizing especially from theory sentences and avoid long sentences. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Incorrect reference style. Please correct.&lt;br /&gt;
&lt;br /&gt;
== [[Trust-region methods]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
# Remove cornell IDs. Author is also spelled incorrectly. &lt;br /&gt;
# Add the course section.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xk”, “f`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “we”. This goes for all other sections as well.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Organization of ideas in this section needs work.&lt;br /&gt;
# You have not defined explicitly why the Cauchy point is important to compute beyond a vague allusion to performance improvements, which is also wrong (it is useful because of its guarantees for convergence, not performance) It is also misspelled.&lt;br /&gt;
# Each approach should have accompanying explanation and motivation for why it is being discussed. It is not enough to outline the algorithm.&lt;br /&gt;
# Please make sure symbols are properly subscripted and superscripted (e.g. “pk” should be “p_k”&lt;br /&gt;
# Please format the algorithm in proper algorithmic pseudocode format.&lt;br /&gt;
# Little to no discussion on global convergence guarantees&lt;br /&gt;
# Please include discussion about the advantages and disadvantages of the algorithm&lt;br /&gt;
# Fix typo “couchy point”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any code functions (uminfunc) should have proper text formatting.&lt;br /&gt;
# The graph needs a better caption explaining how the axes are labeled and what data points are being shown.&lt;br /&gt;
# Please increase the quality of the figure. It is hard to see the red line. &lt;br /&gt;
# Add citation to “The Rosenbrock function is a non-convex function, introduced by Howard H. Rosenbrock in 1960, which is often used as a performance test problem for optimization algorithms.”&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The content in this section as it is currently does NOT describe applications, but rather different approaches within the trust region methodology. Please provide specific applications (e.g. TRPO in reinforcement learning).&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summary, future research directions for example is a good start.&lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style.&lt;br /&gt;
# Please consider having the references as this Wiki template, &amp;lt;nowiki&amp;gt;https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
*There are numerous misspellings, grammatical errors, and incorrect claims. Please fix these.&lt;br /&gt;
&lt;br /&gt;
== [[Momentum]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Apart from an explanation on momentum, it is necessary to briefly point out the limitations of SGD and why momentum could help with these limitations. Please update it accordingly.&lt;br /&gt;
# Remove bold on “Momentum”.&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Equation formatting is very poor and should be formalized.&lt;br /&gt;
# It is important to use technical language for this Wiki. Although a layman’s explanation is appreciated, it would be better to skip using words like “zig zagging”. Try to explain all concepts in a technical language with few simplifications but NOT vice versa.&lt;br /&gt;
# The definition of the update rule for SGD with momentum looks incorrect, specifically the first expression. Please fix it and also explain all the parameters used.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “W”, “V`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “you”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;. Since writing all iterations is not feasible, at least present a few iterations for both cases.&lt;br /&gt;
# Please try to label the plots that explains what each line color means.&lt;br /&gt;
# Starting point for SGD with momentum is different in explanation and the table. Please fix the same.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please use correct terminology like “optimizing non-convex functions” and not “training non-convex models”.&lt;br /&gt;
# Adam, Adadelta, and RMSprop are variants of SGD that already use momentum. Please double check the writing and update if necessary.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please refrain from using words like “zig zag” effects.&lt;br /&gt;
* References&lt;br /&gt;
# Almost all references used are URLs. Please try to add journal/conference articles or books for references, instead of directly citing the URLs. Please check the list below and run a quick Google (Scholar) search to identify relevant literature.&lt;br /&gt;
&lt;br /&gt;
== [[Stochastic dynamic programming|Stochastic Dynamic programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions &lt;br /&gt;
# Remove the grey box background of equations.&lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Outer-approximation (OA)|Outer-approximation]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic &lt;br /&gt;
# See formatting guideline below&lt;br /&gt;
# Avoid opinionated statements such as “MINLP problems are usually the hardest to solve”.&lt;br /&gt;
# Rearrange the text such that the MINLP formulation is in the theory section and keep the introduction in words only.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Consider left aligning equations and optimization problem formulations by the “=”. See [[Stochastic programming|https://optimization.cbe.cornell.edu/index.php?title=Stochastic_programming]] for an example&lt;br /&gt;
# The sentence “The Outer-Approximation (OA) algorithm was first proposed by Duran and and Grossmann in 1986 to solve MINLP problems.” needs a reference. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# “Minimize” and “subject to” should be “min” and “s.t.” in MathType&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Does not explicitly point out why OA is applicable (and/or preferred) in these applications, rather than other MINLP approaches (show that the problem formulations are amenable to a solution approach through OA)&lt;br /&gt;
# The sentence “... an active research area and there exists a vast number of applications in fields such as engineering, computational chemistry, and finance.” needs references. &lt;br /&gt;
# Place GAMS code in a single code box or remove it.&lt;br /&gt;
# Consider reformatting to make steps more readable. Inserting spaces and breaking down steps would help. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Too short. Consider discussion on future research direction and discussion on uncertainty&lt;br /&gt;
# Please review abbreviations throughout the page. Why is MINLP redefined here? “Outer-Approximation is a well known efficient approach for solving convex mixed-integer nonlinear programs (MINLP)”. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove &amp;quot;Template:Reflist&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== [[Unit commitment problem]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction and avoid discussions of examples or specific applications in this section.&lt;br /&gt;
# The sentence “Nonlinear, Non-convex programming optimization problem.” doesn’t make sense by itself and Non-convex shouldn’t be capitalized.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Figure/image format should be revised to better display the content.&lt;br /&gt;
# Uppercase characters are used randomly (e.g., “non-convex transmission Constraints”) . Please follow correct language conventions for sentence structure.&lt;br /&gt;
# Avoid inserting inline citations after words like “written in matrix form as equation [3]..” or “presented in [3]...” as it is a bit informal when you don’t explicitly name the subject. Also these two sentences are grammatically incorrect and appear to be missing an ending period and comma, respectively. &lt;br /&gt;
# Don’t say “written in matrix form as equation..” and just cite the reference, actually write out the equation. &lt;br /&gt;
# Properly label the figure in this section with a figure number and improve visibility by making it larger. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Label the figures in this section properly with figure numbers.&lt;br /&gt;
# Fix typo “while minimize” to “while minimizing”. &lt;br /&gt;
# Avoid pronouns such as “we”. &lt;br /&gt;
# Use the equation editor when typing equations. &lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# I suggest changing the order of the subtitles here. For example, Single-Period Unit Commitment. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Frank-Wolfe]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# I suggest highlighting disadvantages along with advantages. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# “[n x 1] matrix” please use the equation editor to express mathematical descriptions and symbols (p,b, etc)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please show at least a few iterations. Even for smaller examples if needed. Report the final solution. &lt;br /&gt;
# Please use the LaTex code or equation editor for min and include s.t., etc.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. For your example, please explicitly state that the derivative is taken etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications: &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Same as the introduction. Pros and cons should be evaluated together!&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Line search methods|Line Search Method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Expand the introduction and avoid discussion on some of the specific steps in the solution process. &lt;br /&gt;
# Provide references here. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The phrase “are as follows” in the steepest descent method discussion needs to be followed by a colon. &lt;br /&gt;
# Rephrase “has a nice convergence theory” and cite a reference for this claim.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Add citation after “.. proposed by Phillip Wolfe in 1969.”&lt;br /&gt;
# Figure 1 is between two sections. Please fix this issue. &lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# Add some space between iterations or subsection break&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# Too few references in this section. &lt;br /&gt;
# Last paragraph makes some claims without references. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Piecewise linear approximation|Piecewise Linear Approximation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The content of this section is good, but there are some issues with sentence clarity and some other grammatical errors. Please revisit this section and make changes accordingly. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Fix typo “to force the x’ values become associated with”. &lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Some of these longer sentences are hard to read. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Expand the conclusion section to be longer than one sentence. The conclusion section to include a brief summary of what was discussed above, an emphasis on it’s significance, and a brief discussion of future extensions and research direction if applicable.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to sources when possible.&lt;br /&gt;
&lt;br /&gt;
== [[Mathematical programming with equilibrium constraints|Mathematical Programming with Equilibrium constraints]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes several terms like variational inequalities, constraint qualifications that were not discussed in the class. Please add a sentence to explain them before using them.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The meaning of parameter vector x is unclear. Please add more information or update if necessary.&lt;br /&gt;
# Equations and symbols in the PIPA subsection are not formatted correctly. Please use the same formatting for all equations, so they read as mathematical equations and not text. This goes for all other sections as well.&lt;br /&gt;
# Use equations instead of images to represent math programs and equations in the Implicit Descent and SQP subsection.&lt;br /&gt;
# Apart from the steps for each solution technique, please also add a few sentences that describe each method.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please define the terms like NCP, MP before abbreviating them. Also try not to unnecessarily abbreviate simple terms.&lt;br /&gt;
# Equations should be typed by LaTex. Images for equations are unacceptable.&lt;br /&gt;
# GAMS code is strongly discouraged. Please solve the problem &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The selected numerical example is fine but is directly solved with the MPEC solver in GAMS. Try to solve it manually like the homework/in-class problems step by step using the steps described in the previous section by choosing any of the methods.&lt;br /&gt;
# Avoid using figures in the equations (subject to etc)&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Add references to “power management, highway pricing, chemical process engineering, and traffic planning.”&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Wing shape optimization|Wing shape Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction is missing several references (e.g., “software packages like computational fluid dynamics..”, sentences containing things that aren’t common knowledge, performance claims, etc.)&lt;br /&gt;
# Avoid discussion involving finer details of subject methods in this section. &lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. Same applies to box of content!&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Properly cite the CFD package, don’t just include a link. &lt;br /&gt;
# Properly label the figure with a figure number.&lt;br /&gt;
# Consider removing white space between isolated sentences to improve readability. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# If you’ve already defined an abbreviation (CFD), there is no need to define it again. Just use the abbreviation.&lt;br /&gt;
# Avoid pronouns such as “we” or “they”.&lt;br /&gt;
# Phrases like “under the following” need to be followed by a colon.&lt;br /&gt;
# Properly label the figure with a figure number and consider making them larger to improve visibility. Call the reader&#039;s attention to the figures in text by referencing the figure number.&lt;br /&gt;
# “As seen in the video below” is stated yet there are only images present and it may be initially unclear to the reader which figure is being referenced here. &lt;br /&gt;
# Avoid inserting inline citations like “[4] introduces an..”  as it is a bit informal when you don’t explicitly name the subject.&lt;br /&gt;
# Don’t just cite the reference when discussing the problem formulation, explicitly write the model formulation and solution process using LaTex or equation visual editor.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Some characters are randomly capitalized in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# These variables should be defined before the conclusion section, they are out of place here. Also, please use normal text when explaining variables except for the variable symbol. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Interior-point method for NLP|Interior point method for NLP]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Primal-Dual formulation and comparison to the Barrier Method is not discussed.&lt;br /&gt;
# Include brief discussion about big O convergence rates.&lt;br /&gt;
# Need discussion about the concept of “central path” and the notion of self concordance&lt;br /&gt;
# Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Graphs and images are incorrectly formatted to the page. Consider proper alignment with respect to the text body.&lt;br /&gt;
# Use explicitly typed Latex equations instead of images to represent math programs and equations.&lt;br /&gt;
# Fix typo “optimisation”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xi ”, “μ”, etc.).&lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# There are formatting issues with figures 2,3. Please make sure to embed them within their respective sections. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section &lt;br /&gt;
# Minor character code typos in the conclusion.&lt;br /&gt;
# Also, please add more discussion in this section. Future research directions is a good start.&lt;br /&gt;
# There is a box &amp;quot;􏰐&amp;quot;&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[AdaGrad|Adagrad]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Include discussion on its variants (most important is AdaDelta).&lt;br /&gt;
# Include disadvantages of Adagrad, since this provides motivation for the discussion on the variants and improvements of Adagrad&lt;br /&gt;
# Include comparisons to other popular optimizers (particularly important is comparisons to regular SGD and Adam)&lt;br /&gt;
# Different convergence rates are possible depending on the setting where Adagrad is used, but this is not mentioned on the page currently. As such the regret bound section should be more thoroughly explained.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the first sentence, “..take the following numerical example” should be followed by a colon. &lt;br /&gt;
# Fix typo “trayectory”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is too short; include specific applications in which input features are sparse and Adagrad excels.&lt;br /&gt;
# Add reference to the claim “Mainly, it is a good choice for deep learning models with sparse input features”.&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References &lt;br /&gt;
&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources (even if the base algorithm itself comes from a singular paper)&lt;br /&gt;
&lt;br /&gt;
== [[McCormick envelopes|McCormick Envelopes]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: OK but I suggest removing NetID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# First sentence is hard to read. Please consider keeping sentences below 25-30 words. &lt;br /&gt;
# No references provided. Please cite all sources. &lt;br /&gt;
# Figure 1 is provided in the middle between two sections. Please include in the introduction section. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# When using mathematical expressions and symbols, please use the equation editor. (e.g., x*y, exy + y, sin (x+y) - x2)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution. &lt;br /&gt;
# For the sample GAMS code, please place it in a code box&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each. &lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section: &lt;br /&gt;
* References&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4779</id>
		<title>2021 Cornell Optimization Open Textbook Feedback</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4779"/>
		<updated>2021-12-05T20:05:39Z</updated>

		<summary type="html">&lt;p&gt;Asa273: /* Momentum */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[Lagrangean duality|Lagrangian duality]] ==&lt;br /&gt;
* Author list, sections and TOC&lt;br /&gt;
# Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor and avoid HTML formatting on the section titles.&lt;br /&gt;
# Remove cornell ID from Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes sentences on constructing the dual problem and is referred to as Lagrangian relaxation (LR). This is incorrect, please fix the definition of LR.&lt;br /&gt;
# Definitions of LR and its relation to duality should be double checked and re-written.&lt;br /&gt;
# Only one reference is present in this section. Please add more relevant references by expanding this section.&lt;br /&gt;
# Consider merging the “introduction” and “history” sections.&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The Lagrangian variables associated with equality constraints h(x) are unbounded but the Lagrangian dual problem states them as non-negative. Please fix the same.&lt;br /&gt;
# Also to construct a dual, we do not change minimization to maximization directly. We observed such things in the examples in lecture notes due to simplification. The lagrangian dual problem would be minimize (,).&lt;br /&gt;
# Adding to the previous point, the Lagrangian is a lower bound on the original objective; the solution to the primal and dual or only equivalent if the duality gap is 0. You reference this in one section, but this is after your statement “Hence, solving the dual problem, which is a function of the Lagrangian multipliers (𝜆*) yields the same solution as the primal problem, which is a function of the original variables (x*). “. Please clarify the specific conditions that must hold for the solution of the dual to be equal to the primal’s.&lt;br /&gt;
# You refer to the “Complementary Slackness Theorem”, but don’t actually write the mathematical representation of complementary slackness. Please fix this. Also consider including the derivation of the complementary slackness condition, as it is both easy and short. Boyd is a good reference for this.&lt;br /&gt;
# Last step of the “process” subsection also needs updating according to the previous comments.&lt;br /&gt;
# The inline notations should also be typed using LaTex.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Only one dual variable is associated with each constraint. The numerical example uses two for the first and second constraint which is unnecessary. Please update it accordingly for both constraints. This particular example will only have two dual variables instead of the five dual variables used currently.&lt;br /&gt;
# All consecutive steps need to be updated since the dual variables would be updated.&lt;br /&gt;
# After substitution the nonlinear function should be further simplified. The current expression reads like a highly nonlinear function but can be easily simplified.&lt;br /&gt;
# Similar to the comments in the methodology section, inverting minimize to maximize is incorrect. Please update the dual objective function and domain of dual variables accordingly.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Bullet points could be used to state the last four real-world examples that explain the physical meaning of the primal and dual problems.&lt;br /&gt;
# Add references for the last set of applications. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# This section contains a few typos. Please fix the same.&lt;br /&gt;
* References&lt;br /&gt;
# Some citations&#039; hyperlinks are displaying.&lt;br /&gt;
&lt;br /&gt;
== [[Disjunctive inequalities|Disjunctive Inequalities]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section and semester&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# No citations are present in this section.&lt;br /&gt;
# “mixed-integer programming (MIP)” should be used instead of “multiple integer programming (MIP)”. Please fix this error.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The abbreviation MILP is not previously defined. Please fix this issue.&lt;br /&gt;
# You consistently use the negative sign instead of the NOT operator for y (-y instead of ¬y). &lt;br /&gt;
# Some inconsistencies with the spacing of variables, constraints, etc., under the “General” section that need to be fixed.&lt;br /&gt;
# Typo in “This is shown below by M1, M2, y1, and y1:” where y1 needs to be changed to y2. Why use two different Big-M variables here? Elsewhere in the Wiki you only use one so this could lead to confusion with a general audience. Also if this was taken from the lecture notes then it needs to be cited.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please reformulate and solve a complete numerical example rather than just reformulating a general example. Demonstrate the use of Big-M and Convex Hull formulation in an optimization problem that provides details such as individual steps in the problem solving process and final results.&lt;br /&gt;
# Add space between vee (V) operator and brackets in first line of Latex&lt;br /&gt;
# Please format variables correctly, for example, use &amp;lt;math&amp;gt;x_1&amp;lt;/math&amp;gt; instead of x1.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please format the equations appropriately either by using latex code or the visual editor. These images are NOT acceptable!&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# There is no conclusion presented in this section at all.&lt;br /&gt;
* References&lt;br /&gt;
# The included references have NOT been used anywhere in the Wiki. Add references for sentences that are not common knowledge and please link them appropriately with the text in Wiki. If the figures used here were not original works, you must also cite them. &lt;br /&gt;
# There are many papers on this topic. A simple Google (Scholar) search could provide you with sufficient references to cite. &lt;br /&gt;
# Many important references of this topic are missing.&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
==[[Stochastic programming|Stochastic Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell IDs&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
# This section only includes two sentences on Stochastic programming (SP), while the rest gives examples of uncertainty. Please discuss the need for SP in the presence of uncertainty. Also, discussion on robust optimization and its limitations should be removed since it is out of place.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please avoid direct inline linkbacks to Wikipedia.&lt;br /&gt;
# The symbol “xi” in the methodology subsection should be explained.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Copying a numerical example &amp;quot;entirely&amp;quot; from a textbook is inappropriate. Your team should come up with a &amp;quot;numerical&amp;quot; case.&lt;br /&gt;
# No specific application context is needed for a numerical example.&lt;br /&gt;
# The inline notations (`x1`, `s1`) should also be typed using LaTex.&lt;br /&gt;
# Label all tables with a table number for better readability. &lt;br /&gt;
# Properly format the solution table with the label attached rather than the following sentence. The solution table looks different from the others, please fix this for consistency. &lt;br /&gt;
* A section to discuss and/or illustrate the applications;&lt;br /&gt;
# I suggest eliminating citing the last name of the first author (i.e. Zhou et al.)&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# URLs of some citations are not properly formatted (not showing the hyperlinks).&lt;br /&gt;
&lt;br /&gt;
== [[Exponential transformation|Exponential Transformation]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction.&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Last sentence with 51 words is hard to read. &lt;br /&gt;
# Second Sentence: please change the word “they” as it could make the meaning ambiguous&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
# If you use abbreviations, please introduce them (e.g. NLP,MINLP)&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please explain the transformation in words along with equations&lt;br /&gt;
# Terms like posynomial should be described in detail.&lt;br /&gt;
# Please move the numerical example to the section below&lt;br /&gt;
# The “(eq 1)” is not needed here.&lt;br /&gt;
# Please expand this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the third equation of the numerical example, it is confusing to have coefficients after numbers. Some readers may read it as an exponent.&lt;br /&gt;
# Last equation in this section after “further linearization” is incorrect. This equation cannot be further linearized, please fix this.&lt;br /&gt;
# Please explain the steps in the numerical examples in detail. The step-by-step solution should be provided. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Missing part of text: “Proof of convexity of with positive definite test of Hessian…”&lt;br /&gt;
# Applications are not numerical examples. Please refer to this link for example of applications: [[Duality|https://optimization.cbe.cornell.edu/index.php?title=Duality]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
# The section current applications is redundant&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
# Under current applications, do not just use a hyperlink to describe an application. Actually describe it. And properly inline citation style should be used instead of the hyperlink. &lt;br /&gt;
# The convexification application of MINLP can be further simplified for binary variables. Please refer to the lecture slides for more information.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references by using this as Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
&lt;br /&gt;
== [[Sparse Reconstruction with Compressed Sensing|Sparse reconstruction with Compressed Sensing]] ==&lt;br /&gt;
This Wiki needs a significant rewrite. Please go through the comments for details.&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction section should include information about the problem and its implications presented briefly. Please use full sentences to write this Wiki. You may use tools like Grammarly to check sentence formation and grammar.&lt;br /&gt;
# This section includes several typos like “sub modual”. Please fix them throughout the wiki and delete them if not required.&lt;br /&gt;
# Many abbreviations are used before previously defining them. Please define these abbreviations before using them in the text.&lt;br /&gt;
# This section is incomprehensible in its current form. Please rewrite with proper comprehension.&lt;br /&gt;
# Equations and math symbols need proper reformatting. The current version reads like text (along with equations) copy-pasted from a specific source. All mathematical symbols and equations should be formatted via LaTex - this is a learning objective of the Wiki assignment. You can find some useful links on converting your equations/symbols into LaTex code here: (https://optimization.cbe.cornell.edu/index.php?title=Help:Contents).&lt;br /&gt;
# Try to place the figure at the top of the Wiki between the main text.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# I suggest the use of more formal abstract illustrations. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Equations and symbols need proper reformatting.&lt;br /&gt;
# Lemmas and theorems are not expected for this Wiki. Sparse reconstruction is a straightforward concept but is unnecessarily complicated here. Please refer to other Wiki examples to get an idea of what the Wiki should convey.&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Numerical example is missing.&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion section is missing.&lt;br /&gt;
* References&lt;br /&gt;
# The current reference list is not correctly formatted. References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Portfolio optimization|Portfolio Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell id&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introductory sentence should be rephrased. The action of minimizing the risks does not inherently maximize the gains, rather PO aims to maximize gains whilst minimizing risks. &lt;br /&gt;
# Amount of whitespace can be reduced by changing the orientation of Figure 1 and the sentences in this section.&lt;br /&gt;
# Define terms such as risk, return, portfolio, etc., when you introduce them. Assume that the reader may not know much about finance. This goes for all other sections as well. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# A brief mention of modern portfolio theory (i.e.. Markowitz) would be appropriate in this section. &lt;br /&gt;
# Several grammatical errors here involving sentence structure and clarity. Some questionable semantics (e.g., “The portfolio optimization mainly assumes two directions.”) and syntax (phrases such as “.. is as follows” should be followed by a colon). Misuse of commas and missing commas in this section. Two sentences introducing E(rp) and w should be combined into one.&lt;br /&gt;
# Use LaTex to distinguish variables written within a sentence, such as m and n. &lt;br /&gt;
# Rephrase “Cut the relevant information and conditions in the portfolio optimization, as well as the final requirements into the relevant variables, constraints and linear functions of the linear programming problem.”&lt;br /&gt;
# An explanation of a few common constraints would be helpful, rather than just including a table. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Solving the numerical example by GAMS is inappropriate. Please provide detailed step-by-step calculation results.&lt;br /&gt;
# All tables need to be labeled.&lt;br /&gt;
# Include figure number in label for consistency. &lt;br /&gt;
# Fix misspelling “dolling decision variables”. &lt;br /&gt;
# Use LaTex for all variables, equations, and constraints here.&lt;br /&gt;
# Example 2 table is hard to read, so making it bigger would help. &lt;br /&gt;
# Remove the “Using excel as the solver” part from the sentence before the solution discussion. &lt;br /&gt;
# Some grammatical errors here (phrases such as “.. is as follows” should be followed by a colon). &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Rephrase “Portfolio optimization can be used to screen investment projects that meet investors, rationally allocate investment amounts, etc.”&lt;br /&gt;
# Not sure “relevant” is the correct word choice here. &lt;br /&gt;
# You need more specific examples with the utility of portfolio optimization, this section is quite general as is. Some more detail and focus on real-world applications in the financial industry that relate to retirement planning, financial security, economic stability, etc., would be helpful. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Need some commas here.&lt;br /&gt;
# The sentence “Linear programming has been around since the 1940’s and has such a wide base of applications” is not necessary. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove white space between end of sentences and reference numbers.&lt;br /&gt;
&lt;br /&gt;
== [[Chance-constraint method|Chance constraint method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please consider correcting a few grammatical errors: “pre-planned for”, “god”, “certain levels of feasibility is guaranteed in what are”, and “Performance of a system”&lt;br /&gt;
# In “Chance-constraint”, it is capitalized randomly throughout the introduction. Please correct.   &lt;br /&gt;
# Please use technical language to briefly introduce chance-constrained programming. Words like “acts of god”, “cost of doing business” are not appropriate for a  technical Wiki.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Xi is an uncertainty/randomness variable. It is better to use clear language. &lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others.&lt;br /&gt;
# Theory is insufficient. Please expand and explain different approaches. &lt;br /&gt;
# Please add pros and cons explicitly as a list. &lt;br /&gt;
# Explain the physical meaning for examples of chance constraints along with all the notations used.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please remove this example as it is directly from this book. The example should be purely numerical without any background.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others. &lt;br /&gt;
# Please change the table format so as not to confuse the reader. &lt;br /&gt;
# Multiple instances of [Chart to be added] are missing.&lt;br /&gt;
# Example is incomplete. &lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please connect several grammatical and spelling errors: “real life application”, Energy creation, particularly in renewable sources, have high variabilities”, and others&lt;br /&gt;
# “Zhao, Xue, Cao, and Zhang”. No need to list all authors within the article. Provide a reference is sufficient. If authors must be mentioned, (Zhao et al.) should be ok.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Uniqueness and universality earlier are not clear to me. If they are not discussed earlier in the application, it would be better not to introduce new discussions in the conclusion.&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
==  [[Bayesian Optimization]] ==&lt;br /&gt;
* Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor on the section titles.&lt;br /&gt;
* Contents: Subheadings for EI and the algorithm should not be bolded, Random words should not be capitalized.&lt;br /&gt;
* Author list: Remove cornell ID, Please check names&lt;br /&gt;
* Introduction&lt;br /&gt;
# The introduction is too general and not substantial enough. For example, simply saying BayesOpt is useful when the objective function is unknown obscures exactly HOW it is useful (namely, computational efficiency in applications where ground truth sampling is expensive). Discussion on applications should be moved to a separate section.&lt;br /&gt;
# Machine learning rarely includes black-box functions to be optimized. Bayesian optimization is almost never used for optimizing ML loss functions but can instead be used for hyperparameter optimization. Please update such claims in this section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Captions need reformatting.&lt;br /&gt;
# Consider italicizing keywords rather than bolding.&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Discussion on acquisition functions should include comparisons, tradeoffs, and reasons to use one over the other. Should also note that expected improvement is the most widely used in practice, and explain.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Please write equations in the Wiki instead of attaching images for equations.&lt;br /&gt;
# Acquisition function figure could be made larger and clearer to improve readability.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any references to functions or methods in code ‘e.g. fmin’ should be properly formatted as code-stylized text.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Avoid including a figure of the code for this example and explicitly describe the steps to the modeling and solution process instead. &lt;br /&gt;
# Avoid pronouns such as “our” and “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please do not use brackets to enclose lists.&lt;br /&gt;
# Some claims here should be supported by references. Please cite each source after its sentence. &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to “pop” machine learning blogs where anyone can be an author. (e.g. towardsdatascience)&lt;br /&gt;
# All references are URLs. Please cite publications and literature.&lt;br /&gt;
# A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
Notes on grammar: Needs some work. Several instances where colons are inappropriately inserted mid sentence or in subheadings. Explanations are not terse. Several instances of switching between personal and impersonal style of writing, which is distracting.&lt;br /&gt;
&lt;br /&gt;
== [[Conjugate gradient methods]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Introduction&lt;br /&gt;
# All inline notations (e.g., `x`, `A`) should be typed using LaTex.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
# Is Gauss-Newton no longer referenced?&lt;br /&gt;
# Theorems listed in the first section should be accompanied with high level explanation, not just a list of the theorems themselves. The page should read like an article, with proper flow.&lt;br /&gt;
# Please indent equation blocks.&lt;br /&gt;
# Please properly format pseudocode.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Steps should be accompanied with explanation, or reference to the corresponding step in the pseudocode.&lt;br /&gt;
# Please properly format in a more organized manner, aligning equations appropriately and demarcating steps appropriately.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
# Consider including 2 additional examples of applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Consider adding future research directions&lt;br /&gt;
* References&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Too few references.&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Geometric programming|Geometric Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Examples of applications in this section use the same reference. Please cite their individual sources.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The symbol denoting the domain in the definition of a monomial is unclear. Please clarify it or fix this if it is incorrect.&lt;br /&gt;
# Definition of posynomial refers to section 2.1 which is missing from the Wiki (sections are not numbered in the main text).&lt;br /&gt;
# In the generalized posynomial subsection, bullet points do not tell us why h(x) is posynomial. Either provide reasons or simply state that h(x) is posynomial. Also explain why h3 is a generalized posynomial.&lt;br /&gt;
# Additional theory on the feasibility analysis could be provided in this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the transformation example, the last two constraints could also be simplified by applying a natural logarithm on both sides. Please update them as well.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The figure in this section needs to be labeled. &lt;br /&gt;
# The figure needs to be resized and perhaps aligned to the center.  &lt;br /&gt;
* A conclusion section:&lt;br /&gt;
# Please avoid vague language such as: “This makes”.&lt;br /&gt;
# Please avoid opinionated statements: “one of the best ways”.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# This Wiki has very few references. A quick Google Scholar search may provide relevant references.&lt;br /&gt;
&lt;br /&gt;
== [[Adam]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Some grammatical errors here, mostly related to the need for commas in certain places (e.g., “Before Adam..”).&lt;br /&gt;
# Some minor errors with parts of speech throughout the section, need to revisit phrases such as “which has broader scope in future for”, etc. &lt;br /&gt;
# Try splitting up some of the longer sentences in this section, a couple are hard to read.&lt;br /&gt;
# Avoid definitive statements about Adam being the best or always better solver, as this is simply not true (the choice of the “best” optimizer is setting-dependent). Use language such as “Research has shown that Adam has demonstrated superior experimental performance over..” and then cite academic references to back this claim. &lt;br /&gt;
# What does adam stand for? Introduction is insufficient. Please expand. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Revise grammar here, noticing some missing commas and uncapitalized word after period.&lt;br /&gt;
# Rephrase “second one is to update the old position with the updated position”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section, and actual subscripts instead of “m_t”, etc. &lt;br /&gt;
# Avoid inserting inline citations after words like “According to..” or “This article..” as it is a bit informal. This could be rephrased or changed to something like “According to author,^[2] …” with author name inserted. &lt;br /&gt;
# Remove white space before the period in RMSP discussion.&lt;br /&gt;
# Please provide a pseudocode. &lt;br /&gt;
# Please use list the two methods here “Adam is a combination of two gradient descent methods which are explained below”&lt;br /&gt;
# Please expand the theory section significantly. Theoretical convergence properties should be discussed, even if briefly.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Same comment as before, consider replacing inline citations after words like “According to..”. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to blogs and use peer-reviewed academic references instead. &lt;br /&gt;
# Too few references.&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[A-star algorithm|a* algorithm]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor and avoid HTML formatting on the section titles.&lt;br /&gt;
* An introduction of the topic:&lt;br /&gt;
# Weird spacing between paragraphs. Please fix this issue.&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. &lt;br /&gt;
# Please consider correcting a few grammatical errors: “Optimal path”, “cross country”, missing period at end of first paragraph, other random capitalizations, etc.&lt;br /&gt;
# There are no citations in the introduction. Please cite every source.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add the mathematical description of the algorithm.&lt;br /&gt;
# Reference style varies in sentences. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please fix grammatical and spelling errors as (“from current position to the goal”, “There are a lot of discussions”, etc). Also, many hyphens are missing as “non playable”.&lt;br /&gt;
# In algorithms, it is a standard to add high-level description (i.e. pseudocode or flowchart). Please incorporate it. &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section (e.g., “f(n)...”, “h(n)..”, etc.). This goes for other sections as well.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The numerical example does not show the full computations the algorithm performs. Please show the computation on a smaller example.&lt;br /&gt;
# Instead of writing things like “The above image..”, label each figure and use the figure number to refer to it in text. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# No references in the applications. Please cite every source &lt;br /&gt;
# Preferably, add at least an additional application.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion should summarize descriptions. Please modify it to provide a summary.  &lt;br /&gt;
# Please pay attention to the length and structure of sentences here and in the full page. First sentence is hard to read.&lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format and are not linked correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Incorrect reference style. Please follow the example and use the template.&lt;br /&gt;
&lt;br /&gt;
== [[Job shop scheduling|Job-Shop Scheduling Problem]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The current introduction to the jobshop scheduling problem has only two sentences in addition to the parameter description. Introduction typically contains information about the problem, its importance in the real-world, and some information about the solution techniques and their types to solve the problem. Please add some information that covers the above.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# It is unclear whether the assumptions stated in this section are required to apply the following solution techniques. Please clarify the same. Also use complete sentences to state them.&lt;br /&gt;
# The branch and bounds method described in this section only discusses the solution technique for problems with one machines. However, branch and bound is a general technique that can be applied to any MILP problems with varying scales. Please update the “methods” section to be as general as possible.&lt;br /&gt;
# Since this Wiki focuses on jobshop scheduling, at least two methods are expected. Branch and bound is a general MILP technique, so, it is recommended to add a tailored technique that can only solve specific jobshop scheduling problems. Solving the numerical example with this technique is not necessary.&lt;br /&gt;
# Reference to the branch and bound technique described in this section is a “youtube” video. Please add references in literature that describe this method in detail. The method used in this video is highly tailored for a single machine application. This is also an incorrect way to cite a reference. Please keep this section as general as possible.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section and all other sections as well.&lt;br /&gt;
# Check grammar in this section. For example, phrases like “are as follows” need to be followed by a colon and not a period. &lt;br /&gt;
# Consider rewriting the assumptions as a list in this section. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The example used in this section is exactly the same as the one in the youtube video. Please use a modification of this example or choose another example/method to demonstrate the solution technique. Your team should ideally create a numerical example independently. If you take a numerical example directly from a particular source, you will need to get explicit permission from the textbook author in writing and share that written permission with the instructors.&lt;br /&gt;
# The figure in this section is not numbered when all others are. Relabel this figure for consistency and its number to refer to it in-text.&lt;br /&gt;
# A numerical example should be simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments).&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section should only focus on real-world applications of the jobshop scheduling problem. But currently, this section includes additional information on solution techniques/complexity that is appropriate for the Introduction section. Please discuss the applications of the problem in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# The meaning of  “Operations applications” is unclear. Please explain or update if necessary.&lt;br /&gt;
# The current conclusion section does not properly summarize the problem. Please refer to other Wiki examples for an idea to update the section accordingly.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Please reference media sources like reference 5 appropriately.&lt;br /&gt;
# A simple Google Scholar search would give you many &amp;quot;formal&amp;quot; references.&lt;br /&gt;
&lt;br /&gt;
== [[Optimization in game theory]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: remove cornell IDs. &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Why only a subsection on &amp;quot;Nash Equilibrium&amp;quot; is included in &amp;quot;Theory&amp;quot; section? Please re-format.&lt;br /&gt;
# Please edit references.&lt;br /&gt;
# Add a mathematical description of the problem and a pseudocode/flowchart for the Lemke-Howson algorithm.  &lt;br /&gt;
# Rephrase “This algorithm utilizes iterated pivoting much like the simplex algorithm used in the simplex algorithm used in linear programming”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please organize the last part in a more readable format. Questions may be in bold and numbered, answers are more direct, etc.&lt;br /&gt;
# Remember to cite all images and tables. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Very good, link the reference and cite all sources. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summarizing especially from theory sentences and avoid long sentences. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Incorrect reference style. Please correct.&lt;br /&gt;
&lt;br /&gt;
== [[Trust-region methods]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
# Remove cornell IDs. Author is also spelled incorrectly. &lt;br /&gt;
# Add the course section.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xk”, “f`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “we”. This goes for all other sections as well.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Organization of ideas in this section needs work.&lt;br /&gt;
# You have not defined explicitly why the Cauchy point is important to compute beyond a vague allusion to performance improvements, which is also wrong (it is useful because of its guarantees for convergence, not performance) It is also misspelled.&lt;br /&gt;
# Each approach should have accompanying explanation and motivation for why it is being discussed. It is not enough to outline the algorithm.&lt;br /&gt;
# Please make sure symbols are properly subscripted and superscripted (e.g. “pk” should be “p_k”&lt;br /&gt;
# Please format the algorithm in proper algorithmic pseudocode format.&lt;br /&gt;
# Little to no discussion on global convergence guarantees&lt;br /&gt;
# Please include discussion about the advantages and disadvantages of the algorithm&lt;br /&gt;
# Fix typo “couchy point”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any code functions (uminfunc) should have proper text formatting.&lt;br /&gt;
# The graph needs a better caption explaining how the axes are labeled and what data points are being shown.&lt;br /&gt;
# Please increase the quality of the figure. It is hard to see the red line. &lt;br /&gt;
# Add citation to “The Rosenbrock function is a non-convex function, introduced by Howard H. Rosenbrock in 1960, which is often used as a performance test problem for optimization algorithms.”&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The content in this section as it is currently does NOT describe applications, but rather different approaches within the trust region methodology. Please provide specific applications (e.g. TRPO in reinforcement learning).&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summary, future research directions for example is a good start.&lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style.&lt;br /&gt;
# Please consider having the references as this Wiki template, &amp;lt;nowiki&amp;gt;https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
*There are numerous misspellings, grammatical errors, and incorrect claims. Please fix these.&lt;br /&gt;
&lt;br /&gt;
== [[Momentum]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Apart from an explanation on momentum, it is necessary to briefly point out the limitations of SGD and why momentum could help with these limitations. Please update it accordingly.&lt;br /&gt;
# Remove bold on “Momentum”.&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Equation formatting is very poor and should be formalized.&lt;br /&gt;
# It is important to use technical language for this Wiki. Although a layman’s explanation is appreciated, it would be better to skip using words like “zig zagging”. Try to explain all concepts in a technical language with few simplifications but NOT vice versa.&lt;br /&gt;
# The definition of the update rule for SGD with momentum looks incorrect, specifically the first expression. Please fix it and also explain all the parameters used.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “W”, “V`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “you”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;. Since writing all iterations is not feasible, at least present a few iterations for both cases.&lt;br /&gt;
# Please try to label the plots that explains what each line color means.&lt;br /&gt;
# Starting point for SGD with momentum is different in explanation and the table. Please fix the same.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please use correct terminology like “optimizing non-convex functions” and not “training non-convex models”.&lt;br /&gt;
# Adam, Adadelta, and RMSprop are variants of SGD that already use momentum. Please double check the writing and update if necessary.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please refrain from using words like “zig zag” effects.&lt;br /&gt;
* References&lt;br /&gt;
# Almost all references used are URLs. Please try to add journal/conference articles or books for references, instead of directly citing the URLs.&lt;br /&gt;
&lt;br /&gt;
== [[Stochastic dynamic programming|Stochastic Dynamic programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions &lt;br /&gt;
# Remove the grey box background of equations.&lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Outer-approximation (OA)|Outer-approximation]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic &lt;br /&gt;
# See formatting guideline below&lt;br /&gt;
# Avoid opinionated statements such as “MINLP problems are usually the hardest to solve”.&lt;br /&gt;
# Rearrange the text such that the MINLP formulation is in the theory section and keep the introduction in words only.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Consider left aligning equations and optimization problem formulations by the “=”. See [[Stochastic programming|https://optimization.cbe.cornell.edu/index.php?title=Stochastic_programming]] for an example&lt;br /&gt;
# The sentence “The Outer-Approximation (OA) algorithm was first proposed by Duran and and Grossmann in 1986 to solve MINLP problems.” needs a reference. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# “Minimize” and “subject to” should be “min” and “s.t.” in MathType&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Does not explicitly point out why OA is applicable (and/or preferred) in these applications, rather than other MINLP approaches (show that the problem formulations are amenable to a solution approach through OA)&lt;br /&gt;
# The sentence “... an active research area and there exists a vast number of applications in fields such as engineering, computational chemistry, and finance.” needs references. &lt;br /&gt;
# Place GAMS code in a single code box or remove it.&lt;br /&gt;
# Consider reformatting to make steps more readable. Inserting spaces and breaking down steps would help. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Too short. Consider discussion on future research direction and discussion on uncertainty&lt;br /&gt;
# Please review abbreviations throughout the page. Why is MINLP redefined here? “Outer-Approximation is a well known efficient approach for solving convex mixed-integer nonlinear programs (MINLP)”. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove &amp;quot;Template:Reflist&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== [[Unit commitment problem]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction and avoid discussions of examples or specific applications in this section.&lt;br /&gt;
# The sentence “Nonlinear, Non-convex programming optimization problem.” doesn’t make sense by itself and Non-convex shouldn’t be capitalized.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Figure/image format should be revised to better display the content.&lt;br /&gt;
# Uppercase characters are used randomly (e.g., “non-convex transmission Constraints”) . Please follow correct language conventions for sentence structure.&lt;br /&gt;
# Avoid inserting inline citations after words like “written in matrix form as equation [3]..” or “presented in [3]...” as it is a bit informal when you don’t explicitly name the subject. Also these two sentences are grammatically incorrect and appear to be missing an ending period and comma, respectively. &lt;br /&gt;
# Don’t say “written in matrix form as equation..” and just cite the reference, actually write out the equation. &lt;br /&gt;
# Properly label the figure in this section with a figure number and improve visibility by making it larger. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Label the figures in this section properly with figure numbers.&lt;br /&gt;
# Fix typo “while minimize” to “while minimizing”. &lt;br /&gt;
# Avoid pronouns such as “we”. &lt;br /&gt;
# Use the equation editor when typing equations. &lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# I suggest changing the order of the subtitles here. For example, Single-Period Unit Commitment. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Frank-Wolfe]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# I suggest highlighting disadvantages along with advantages. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# “[n x 1] matrix” please use the equation editor to express mathematical descriptions and symbols (p,b, etc)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please show at least a few iterations. Even for smaller examples if needed. Report the final solution. &lt;br /&gt;
# Please use the LaTex code or equation editor for min and include s.t., etc.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. For your example, please explicitly state that the derivative is taken etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications: &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Same as the introduction. Pros and cons should be evaluated together!&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Line search methods|Line Search Method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Expand the introduction and avoid discussion on some of the specific steps in the solution process. &lt;br /&gt;
# Provide references here. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The phrase “are as follows” in the steepest descent method discussion needs to be followed by a colon. &lt;br /&gt;
# Rephrase “has a nice convergence theory” and cite a reference for this claim.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Add citation after “.. proposed by Phillip Wolfe in 1969.”&lt;br /&gt;
# Figure 1 is between two sections. Please fix this issue. &lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# Add some space between iterations or subsection break&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# Too few references in this section. &lt;br /&gt;
# Last paragraph makes some claims without references. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Piecewise linear approximation|Piecewise Linear Approximation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The content of this section is good, but there are some issues with sentence clarity and some other grammatical errors. Please revisit this section and make changes accordingly. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Fix typo “to force the x’ values become associated with”. &lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Some of these longer sentences are hard to read. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Expand the conclusion section to be longer than one sentence. The conclusion section to include a brief summary of what was discussed above, an emphasis on it’s significance, and a brief discussion of future extensions and research direction if applicable.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to sources when possible.&lt;br /&gt;
&lt;br /&gt;
== [[Mathematical programming with equilibrium constraints|Mathematical Programming with Equilibrium constraints]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes several terms like variational inequalities, constraint qualifications that were not discussed in the class. Please add a sentence to explain them before using them.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The meaning of parameter vector x is unclear. Please add more information or update if necessary.&lt;br /&gt;
# Equations and symbols in the PIPA subsection are not formatted correctly. Please use the same formatting for all equations, so they read as mathematical equations and not text. This goes for all other sections as well.&lt;br /&gt;
# Use equations instead of images to represent math programs and equations in the Implicit Descent and SQP subsection.&lt;br /&gt;
# Apart from the steps for each solution technique, please also add a few sentences that describe each method.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please define the terms like NCP, MP before abbreviating them. Also try not to unnecessarily abbreviate simple terms.&lt;br /&gt;
# Equations should be typed by LaTex. Images for equations are unacceptable.&lt;br /&gt;
# GAMS code is strongly discouraged. Please solve the problem &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The selected numerical example is fine but is directly solved with the MPEC solver in GAMS. Try to solve it manually like the homework/in-class problems step by step using the steps described in the previous section by choosing any of the methods.&lt;br /&gt;
# Avoid using figures in the equations (subject to etc)&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Add references to “power management, highway pricing, chemical process engineering, and traffic planning.”&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Wing shape optimization|Wing shape Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction is missing several references (e.g., “software packages like computational fluid dynamics..”, sentences containing things that aren’t common knowledge, performance claims, etc.)&lt;br /&gt;
# Avoid discussion involving finer details of subject methods in this section. &lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. Same applies to box of content!&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Properly cite the CFD package, don’t just include a link. &lt;br /&gt;
# Properly label the figure with a figure number.&lt;br /&gt;
# Consider removing white space between isolated sentences to improve readability. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# If you’ve already defined an abbreviation (CFD), there is no need to define it again. Just use the abbreviation.&lt;br /&gt;
# Avoid pronouns such as “we” or “they”.&lt;br /&gt;
# Phrases like “under the following” need to be followed by a colon.&lt;br /&gt;
# Properly label the figure with a figure number and consider making them larger to improve visibility. Call the reader&#039;s attention to the figures in text by referencing the figure number.&lt;br /&gt;
# “As seen in the video below” is stated yet there are only images present and it may be initially unclear to the reader which figure is being referenced here. &lt;br /&gt;
# Avoid inserting inline citations like “[4] introduces an..”  as it is a bit informal when you don’t explicitly name the subject.&lt;br /&gt;
# Don’t just cite the reference when discussing the problem formulation, explicitly write the model formulation and solution process using LaTex or equation visual editor.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Some characters are randomly capitalized in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# These variables should be defined before the conclusion section, they are out of place here. Also, please use normal text when explaining variables except for the variable symbol. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Interior-point method for NLP|Interior point method for NLP]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Primal-Dual formulation and comparison to the Barrier Method is not discussed.&lt;br /&gt;
# Include brief discussion about big O convergence rates.&lt;br /&gt;
# Need discussion about the concept of “central path” and the notion of self concordance&lt;br /&gt;
# Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Graphs and images are incorrectly formatted to the page. Consider proper alignment with respect to the text body.&lt;br /&gt;
# Use explicitly typed Latex equations instead of images to represent math programs and equations.&lt;br /&gt;
# Fix typo “optimisation”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xi ”, “μ”, etc.).&lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# There are formatting issues with figures 2,3. Please make sure to embed them within their respective sections. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section &lt;br /&gt;
# Minor character code typos in the conclusion.&lt;br /&gt;
# Also, please add more discussion in this section. Future research directions is a good start.&lt;br /&gt;
# There is a box &amp;quot;􏰐&amp;quot;&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[AdaGrad|Adagrad]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Include discussion on its variants (most important is AdaDelta).&lt;br /&gt;
# Include disadvantages of Adagrad, since this provides motivation for the discussion on the variants and improvements of Adagrad&lt;br /&gt;
# Include comparisons to other popular optimizers (particularly important is comparisons to regular SGD and Adam)&lt;br /&gt;
# Different convergence rates are possible depending on the setting where Adagrad is used, but this is not mentioned on the page currently. As such the regret bound section should be more thoroughly explained.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the first sentence, “..take the following numerical example” should be followed by a colon. &lt;br /&gt;
# Fix typo “trayectory”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is too short; include specific applications in which input features are sparse and Adagrad excels.&lt;br /&gt;
# Add reference to the claim “Mainly, it is a good choice for deep learning models with sparse input features”.&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References &lt;br /&gt;
&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources (even if the base algorithm itself comes from a singular paper)&lt;br /&gt;
&lt;br /&gt;
== [[McCormick envelopes|McCormick Envelopes]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: OK but I suggest removing NetID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# First sentence is hard to read. Please consider keeping sentences below 25-30 words. &lt;br /&gt;
# No references provided. Please cite all sources. &lt;br /&gt;
# Figure 1 is provided in the middle between two sections. Please include in the introduction section. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# When using mathematical expressions and symbols, please use the equation editor. (e.g., x*y, exy + y, sin (x+y) - x2)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution. &lt;br /&gt;
# For the sample GAMS code, please place it in a code box&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each. &lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section: &lt;br /&gt;
* References&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4778</id>
		<title>2021 Cornell Optimization Open Textbook Feedback</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4778"/>
		<updated>2021-12-05T19:58:08Z</updated>

		<summary type="html">&lt;p&gt;Asa273: /* Job-Shop Scheduling Problem */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[Lagrangean duality|Lagrangian duality]] ==&lt;br /&gt;
* Author list, sections and TOC&lt;br /&gt;
# Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor and avoid HTML formatting on the section titles.&lt;br /&gt;
# Remove cornell ID from Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes sentences on constructing the dual problem and is referred to as Lagrangian relaxation (LR). This is incorrect, please fix the definition of LR.&lt;br /&gt;
# Definitions of LR and its relation to duality should be double checked and re-written.&lt;br /&gt;
# Only one reference is present in this section. Please add more relevant references by expanding this section.&lt;br /&gt;
# Consider merging the “introduction” and “history” sections.&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The Lagrangian variables associated with equality constraints h(x) are unbounded but the Lagrangian dual problem states them as non-negative. Please fix the same.&lt;br /&gt;
# Also to construct a dual, we do not change minimization to maximization directly. We observed such things in the examples in lecture notes due to simplification. The lagrangian dual problem would be minimize (,).&lt;br /&gt;
# Adding to the previous point, the Lagrangian is a lower bound on the original objective; the solution to the primal and dual or only equivalent if the duality gap is 0. You reference this in one section, but this is after your statement “Hence, solving the dual problem, which is a function of the Lagrangian multipliers (𝜆*) yields the same solution as the primal problem, which is a function of the original variables (x*). “. Please clarify the specific conditions that must hold for the solution of the dual to be equal to the primal’s.&lt;br /&gt;
# You refer to the “Complementary Slackness Theorem”, but don’t actually write the mathematical representation of complementary slackness. Please fix this. Also consider including the derivation of the complementary slackness condition, as it is both easy and short. Boyd is a good reference for this.&lt;br /&gt;
# Last step of the “process” subsection also needs updating according to the previous comments.&lt;br /&gt;
# The inline notations should also be typed using LaTex.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Only one dual variable is associated with each constraint. The numerical example uses two for the first and second constraint which is unnecessary. Please update it accordingly for both constraints. This particular example will only have two dual variables instead of the five dual variables used currently.&lt;br /&gt;
# All consecutive steps need to be updated since the dual variables would be updated.&lt;br /&gt;
# After substitution the nonlinear function should be further simplified. The current expression reads like a highly nonlinear function but can be easily simplified.&lt;br /&gt;
# Similar to the comments in the methodology section, inverting minimize to maximize is incorrect. Please update the dual objective function and domain of dual variables accordingly.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Bullet points could be used to state the last four real-world examples that explain the physical meaning of the primal and dual problems.&lt;br /&gt;
# Add references for the last set of applications. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# This section contains a few typos. Please fix the same.&lt;br /&gt;
* References&lt;br /&gt;
# Some citations&#039; hyperlinks are displaying.&lt;br /&gt;
&lt;br /&gt;
== [[Disjunctive inequalities|Disjunctive Inequalities]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section and semester&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# No citations are present in this section.&lt;br /&gt;
# “mixed-integer programming (MIP)” should be used instead of “multiple integer programming (MIP)”. Please fix this error.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The abbreviation MILP is not previously defined. Please fix this issue.&lt;br /&gt;
# You consistently use the negative sign instead of the NOT operator for y (-y instead of ¬y). &lt;br /&gt;
# Some inconsistencies with the spacing of variables, constraints, etc., under the “General” section that need to be fixed.&lt;br /&gt;
# Typo in “This is shown below by M1, M2, y1, and y1:” where y1 needs to be changed to y2. Why use two different Big-M variables here? Elsewhere in the Wiki you only use one so this could lead to confusion with a general audience. Also if this was taken from the lecture notes then it needs to be cited.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please reformulate and solve a complete numerical example rather than just reformulating a general example. Demonstrate the use of Big-M and Convex Hull formulation in an optimization problem that provides details such as individual steps in the problem solving process and final results.&lt;br /&gt;
# Add space between vee (V) operator and brackets in first line of Latex&lt;br /&gt;
# Please format variables correctly, for example, use &amp;lt;math&amp;gt;x_1&amp;lt;/math&amp;gt; instead of x1.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please format the equations appropriately either by using latex code or the visual editor. These images are NOT acceptable!&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# There is no conclusion presented in this section at all.&lt;br /&gt;
* References&lt;br /&gt;
# The included references have NOT been used anywhere in the Wiki. Add references for sentences that are not common knowledge and please link them appropriately with the text in Wiki. If the figures used here were not original works, you must also cite them. &lt;br /&gt;
# There are many papers on this topic. A simple Google (Scholar) search could provide you with sufficient references to cite. &lt;br /&gt;
# Many important references of this topic are missing.&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
==[[Stochastic programming|Stochastic Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell IDs&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
# This section only includes two sentences on Stochastic programming (SP), while the rest gives examples of uncertainty. Please discuss the need for SP in the presence of uncertainty. Also, discussion on robust optimization and its limitations should be removed since it is out of place.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please avoid direct inline linkbacks to Wikipedia.&lt;br /&gt;
# The symbol “xi” in the methodology subsection should be explained.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Copying a numerical example &amp;quot;entirely&amp;quot; from a textbook is inappropriate. Your team should come up with a &amp;quot;numerical&amp;quot; case.&lt;br /&gt;
# No specific application context is needed for a numerical example.&lt;br /&gt;
# The inline notations (`x1`, `s1`) should also be typed using LaTex.&lt;br /&gt;
# Label all tables with a table number for better readability. &lt;br /&gt;
# Properly format the solution table with the label attached rather than the following sentence. The solution table looks different from the others, please fix this for consistency. &lt;br /&gt;
* A section to discuss and/or illustrate the applications;&lt;br /&gt;
# I suggest eliminating citing the last name of the first author (i.e. Zhou et al.)&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# URLs of some citations are not properly formatted (not showing the hyperlinks).&lt;br /&gt;
&lt;br /&gt;
== [[Exponential transformation|Exponential Transformation]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction.&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Last sentence with 51 words is hard to read. &lt;br /&gt;
# Second Sentence: please change the word “they” as it could make the meaning ambiguous&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
# If you use abbreviations, please introduce them (e.g. NLP,MINLP)&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please explain the transformation in words along with equations&lt;br /&gt;
# Terms like posynomial should be described in detail.&lt;br /&gt;
# Please move the numerical example to the section below&lt;br /&gt;
# The “(eq 1)” is not needed here.&lt;br /&gt;
# Please expand this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the third equation of the numerical example, it is confusing to have coefficients after numbers. Some readers may read it as an exponent.&lt;br /&gt;
# Last equation in this section after “further linearization” is incorrect. This equation cannot be further linearized, please fix this.&lt;br /&gt;
# Please explain the steps in the numerical examples in detail. The step-by-step solution should be provided. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Missing part of text: “Proof of convexity of with positive definite test of Hessian…”&lt;br /&gt;
# Applications are not numerical examples. Please refer to this link for example of applications: [[Duality|https://optimization.cbe.cornell.edu/index.php?title=Duality]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
# The section current applications is redundant&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
# Under current applications, do not just use a hyperlink to describe an application. Actually describe it. And properly inline citation style should be used instead of the hyperlink. &lt;br /&gt;
# The convexification application of MINLP can be further simplified for binary variables. Please refer to the lecture slides for more information.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references by using this as Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
&lt;br /&gt;
== [[Sparse Reconstruction with Compressed Sensing|Sparse reconstruction with Compressed Sensing]] ==&lt;br /&gt;
This Wiki needs a significant rewrite. Please go through the comments for details.&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction section should include information about the problem and its implications presented briefly. Please use full sentences to write this Wiki. You may use tools like Grammarly to check sentence formation and grammar.&lt;br /&gt;
# This section includes several typos like “sub modual”. Please fix them throughout the wiki and delete them if not required.&lt;br /&gt;
# Many abbreviations are used before previously defining them. Please define these abbreviations before using them in the text.&lt;br /&gt;
# This section is incomprehensible in its current form. Please rewrite with proper comprehension.&lt;br /&gt;
# Equations and math symbols need proper reformatting. The current version reads like text (along with equations) copy-pasted from a specific source. All mathematical symbols and equations should be formatted via LaTex - this is a learning objective of the Wiki assignment. You can find some useful links on converting your equations/symbols into LaTex code here: (https://optimization.cbe.cornell.edu/index.php?title=Help:Contents).&lt;br /&gt;
# Try to place the figure at the top of the Wiki between the main text.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# I suggest the use of more formal abstract illustrations. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Equations and symbols need proper reformatting.&lt;br /&gt;
# Lemmas and theorems are not expected for this Wiki. Sparse reconstruction is a straightforward concept but is unnecessarily complicated here. Please refer to other Wiki examples to get an idea of what the Wiki should convey.&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Numerical example is missing.&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion section is missing.&lt;br /&gt;
* References&lt;br /&gt;
# The current reference list is not correctly formatted. References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Portfolio optimization|Portfolio Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell id&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introductory sentence should be rephrased. The action of minimizing the risks does not inherently maximize the gains, rather PO aims to maximize gains whilst minimizing risks. &lt;br /&gt;
# Amount of whitespace can be reduced by changing the orientation of Figure 1 and the sentences in this section.&lt;br /&gt;
# Define terms such as risk, return, portfolio, etc., when you introduce them. Assume that the reader may not know much about finance. This goes for all other sections as well. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# A brief mention of modern portfolio theory (i.e.. Markowitz) would be appropriate in this section. &lt;br /&gt;
# Several grammatical errors here involving sentence structure and clarity. Some questionable semantics (e.g., “The portfolio optimization mainly assumes two directions.”) and syntax (phrases such as “.. is as follows” should be followed by a colon). Misuse of commas and missing commas in this section. Two sentences introducing E(rp) and w should be combined into one.&lt;br /&gt;
# Use LaTex to distinguish variables written within a sentence, such as m and n. &lt;br /&gt;
# Rephrase “Cut the relevant information and conditions in the portfolio optimization, as well as the final requirements into the relevant variables, constraints and linear functions of the linear programming problem.”&lt;br /&gt;
# An explanation of a few common constraints would be helpful, rather than just including a table. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Solving the numerical example by GAMS is inappropriate. Please provide detailed step-by-step calculation results.&lt;br /&gt;
# All tables need to be labeled.&lt;br /&gt;
# Include figure number in label for consistency. &lt;br /&gt;
# Fix misspelling “dolling decision variables”. &lt;br /&gt;
# Use LaTex for all variables, equations, and constraints here.&lt;br /&gt;
# Example 2 table is hard to read, so making it bigger would help. &lt;br /&gt;
# Remove the “Using excel as the solver” part from the sentence before the solution discussion. &lt;br /&gt;
# Some grammatical errors here (phrases such as “.. is as follows” should be followed by a colon). &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Rephrase “Portfolio optimization can be used to screen investment projects that meet investors, rationally allocate investment amounts, etc.”&lt;br /&gt;
# Not sure “relevant” is the correct word choice here. &lt;br /&gt;
# You need more specific examples with the utility of portfolio optimization, this section is quite general as is. Some more detail and focus on real-world applications in the financial industry that relate to retirement planning, financial security, economic stability, etc., would be helpful. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Need some commas here.&lt;br /&gt;
# The sentence “Linear programming has been around since the 1940’s and has such a wide base of applications” is not necessary. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove white space between end of sentences and reference numbers.&lt;br /&gt;
&lt;br /&gt;
== [[Chance-constraint method|Chance constraint method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please consider correcting a few grammatical errors: “pre-planned for”, “god”, “certain levels of feasibility is guaranteed in what are”, and “Performance of a system”&lt;br /&gt;
# In “Chance-constraint”, it is capitalized randomly throughout the introduction. Please correct.   &lt;br /&gt;
# Please use technical language to briefly introduce chance-constrained programming. Words like “acts of god”, “cost of doing business” are not appropriate for a  technical Wiki.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Xi is an uncertainty/randomness variable. It is better to use clear language. &lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others.&lt;br /&gt;
# Theory is insufficient. Please expand and explain different approaches. &lt;br /&gt;
# Please add pros and cons explicitly as a list. &lt;br /&gt;
# Explain the physical meaning for examples of chance constraints along with all the notations used.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please remove this example as it is directly from this book. The example should be purely numerical without any background.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others. &lt;br /&gt;
# Please change the table format so as not to confuse the reader. &lt;br /&gt;
# Multiple instances of [Chart to be added] are missing.&lt;br /&gt;
# Example is incomplete. &lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please connect several grammatical and spelling errors: “real life application”, Energy creation, particularly in renewable sources, have high variabilities”, and others&lt;br /&gt;
# “Zhao, Xue, Cao, and Zhang”. No need to list all authors within the article. Provide a reference is sufficient. If authors must be mentioned, (Zhao et al.) should be ok.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Uniqueness and universality earlier are not clear to me. If they are not discussed earlier in the application, it would be better not to introduce new discussions in the conclusion.&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
==  [[Bayesian Optimization]] ==&lt;br /&gt;
* Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor on the section titles.&lt;br /&gt;
* Contents: Subheadings for EI and the algorithm should not be bolded, Random words should not be capitalized.&lt;br /&gt;
* Author list: Remove cornell ID, Please check names&lt;br /&gt;
* Introduction&lt;br /&gt;
# The introduction is too general and not substantial enough. For example, simply saying BayesOpt is useful when the objective function is unknown obscures exactly HOW it is useful (namely, computational efficiency in applications where ground truth sampling is expensive). Discussion on applications should be moved to a separate section.&lt;br /&gt;
# Machine learning rarely includes black-box functions to be optimized. Bayesian optimization is almost never used for optimizing ML loss functions but can instead be used for hyperparameter optimization. Please update such claims in this section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Captions need reformatting.&lt;br /&gt;
# Consider italicizing keywords rather than bolding.&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Discussion on acquisition functions should include comparisons, tradeoffs, and reasons to use one over the other. Should also note that expected improvement is the most widely used in practice, and explain.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Please write equations in the Wiki instead of attaching images for equations.&lt;br /&gt;
# Acquisition function figure could be made larger and clearer to improve readability.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any references to functions or methods in code ‘e.g. fmin’ should be properly formatted as code-stylized text.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Avoid including a figure of the code for this example and explicitly describe the steps to the modeling and solution process instead. &lt;br /&gt;
# Avoid pronouns such as “our” and “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please do not use brackets to enclose lists.&lt;br /&gt;
# Some claims here should be supported by references. Please cite each source after its sentence. &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to “pop” machine learning blogs where anyone can be an author. (e.g. towardsdatascience)&lt;br /&gt;
# All references are URLs. Please cite publications and literature.&lt;br /&gt;
# A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
Notes on grammar: Needs some work. Several instances where colons are inappropriately inserted mid sentence or in subheadings. Explanations are not terse. Several instances of switching between personal and impersonal style of writing, which is distracting.&lt;br /&gt;
&lt;br /&gt;
== [[Conjugate gradient methods]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Introduction&lt;br /&gt;
# All inline notations (e.g., `x`, `A`) should be typed using LaTex.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
# Is Gauss-Newton no longer referenced?&lt;br /&gt;
# Theorems listed in the first section should be accompanied with high level explanation, not just a list of the theorems themselves. The page should read like an article, with proper flow.&lt;br /&gt;
# Please indent equation blocks.&lt;br /&gt;
# Please properly format pseudocode.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Steps should be accompanied with explanation, or reference to the corresponding step in the pseudocode.&lt;br /&gt;
# Please properly format in a more organized manner, aligning equations appropriately and demarcating steps appropriately.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
# Consider including 2 additional examples of applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Consider adding future research directions&lt;br /&gt;
* References&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Too few references.&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Geometric programming|Geometric Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Examples of applications in this section use the same reference. Please cite their individual sources.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The symbol denoting the domain in the definition of a monomial is unclear. Please clarify it or fix this if it is incorrect.&lt;br /&gt;
# Definition of posynomial refers to section 2.1 which is missing from the Wiki (sections are not numbered in the main text).&lt;br /&gt;
# In the generalized posynomial subsection, bullet points do not tell us why h(x) is posynomial. Either provide reasons or simply state that h(x) is posynomial. Also explain why h3 is a generalized posynomial.&lt;br /&gt;
# Additional theory on the feasibility analysis could be provided in this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the transformation example, the last two constraints could also be simplified by applying a natural logarithm on both sides. Please update them as well.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The figure in this section needs to be labeled. &lt;br /&gt;
# The figure needs to be resized and perhaps aligned to the center.  &lt;br /&gt;
* A conclusion section:&lt;br /&gt;
# Please avoid vague language such as: “This makes”.&lt;br /&gt;
# Please avoid opinionated statements: “one of the best ways”.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# This Wiki has very few references. A quick Google Scholar search may provide relevant references.&lt;br /&gt;
&lt;br /&gt;
== [[Adam]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Some grammatical errors here, mostly related to the need for commas in certain places (e.g., “Before Adam..”).&lt;br /&gt;
# Some minor errors with parts of speech throughout the section, need to revisit phrases such as “which has broader scope in future for”, etc. &lt;br /&gt;
# Try splitting up some of the longer sentences in this section, a couple are hard to read.&lt;br /&gt;
# Avoid definitive statements about Adam being the best or always better solver, as this is simply not true (the choice of the “best” optimizer is setting-dependent). Use language such as “Research has shown that Adam has demonstrated superior experimental performance over..” and then cite academic references to back this claim. &lt;br /&gt;
# What does adam stand for? Introduction is insufficient. Please expand. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Revise grammar here, noticing some missing commas and uncapitalized word after period.&lt;br /&gt;
# Rephrase “second one is to update the old position with the updated position”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section, and actual subscripts instead of “m_t”, etc. &lt;br /&gt;
# Avoid inserting inline citations after words like “According to..” or “This article..” as it is a bit informal. This could be rephrased or changed to something like “According to author,^[2] …” with author name inserted. &lt;br /&gt;
# Remove white space before the period in RMSP discussion.&lt;br /&gt;
# Please provide a pseudocode. &lt;br /&gt;
# Please use list the two methods here “Adam is a combination of two gradient descent methods which are explained below”&lt;br /&gt;
# Please expand the theory section significantly. Theoretical convergence properties should be discussed, even if briefly.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Same comment as before, consider replacing inline citations after words like “According to..”. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to blogs and use peer-reviewed academic references instead. &lt;br /&gt;
# Too few references.&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[A-star algorithm|a* algorithm]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor and avoid HTML formatting on the section titles.&lt;br /&gt;
* An introduction of the topic:&lt;br /&gt;
# Weird spacing between paragraphs. Please fix this issue.&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. &lt;br /&gt;
# Please consider correcting a few grammatical errors: “Optimal path”, “cross country”, missing period at end of first paragraph, other random capitalizations, etc.&lt;br /&gt;
# There are no citations in the introduction. Please cite every source.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add the mathematical description of the algorithm.&lt;br /&gt;
# Reference style varies in sentences. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please fix grammatical and spelling errors as (“from current position to the goal”, “There are a lot of discussions”, etc). Also, many hyphens are missing as “non playable”.&lt;br /&gt;
# In algorithms, it is a standard to add high-level description (i.e. pseudocode or flowchart). Please incorporate it. &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section (e.g., “f(n)...”, “h(n)..”, etc.). This goes for other sections as well.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The numerical example does not show the full computations the algorithm performs. Please show the computation on a smaller example.&lt;br /&gt;
# Instead of writing things like “The above image..”, label each figure and use the figure number to refer to it in text. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# No references in the applications. Please cite every source &lt;br /&gt;
# Preferably, add at least an additional application.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion should summarize descriptions. Please modify it to provide a summary.  &lt;br /&gt;
# Please pay attention to the length and structure of sentences here and in the full page. First sentence is hard to read.&lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format and are not linked correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Incorrect reference style. Please follow the example and use the template.&lt;br /&gt;
&lt;br /&gt;
== [[Job shop scheduling|Job-Shop Scheduling Problem]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The current introduction to the jobshop scheduling problem has only two sentences in addition to the parameter description. Introduction typically contains information about the problem, its importance in the real-world, and some information about the solution techniques and their types to solve the problem. Please add some information that covers the above.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# It is unclear whether the assumptions stated in this section are required to apply the following solution techniques. Please clarify the same. Also use complete sentences to state them.&lt;br /&gt;
# The branch and bounds method described in this section only discusses the solution technique for problems with one machines. However, branch and bound is a general technique that can be applied to any MILP problems with varying scales. Please update the “methods” section to be as general as possible.&lt;br /&gt;
# Since this Wiki focuses on jobshop scheduling, at least two methods are expected. Branch and bound is a general MILP technique, so, it is recommended to add a tailored technique that can only solve specific jobshop scheduling problems. Solving the numerical example with this technique is not necessary.&lt;br /&gt;
# Reference to the branch and bound technique described in this section is a “youtube” video. Please add references in literature that describe this method in detail. The method used in this video is highly tailored for a single machine application. This is also an incorrect way to cite a reference. Please keep this section as general as possible.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section and all other sections as well.&lt;br /&gt;
# Check grammar in this section. For example, phrases like “are as follows” need to be followed by a colon and not a period. &lt;br /&gt;
# Consider rewriting the assumptions as a list in this section. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The example used in this section is exactly the same as the one in the youtube video. Please use a modification of this example or choose another example/method to demonstrate the solution technique. Your team should ideally create a numerical example independently. If you take a numerical example directly from a particular source, you will need to get explicit permission from the textbook author in writing and share that written permission with the instructors.&lt;br /&gt;
# The figure in this section is not numbered when all others are. Relabel this figure for consistency and its number to refer to it in-text.&lt;br /&gt;
# A numerical example should be simply &amp;quot;numerical&amp;quot; and does not need any application context (similar to those numerical problems in HW assignments).&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section should only focus on real-world applications of the jobshop scheduling problem. But currently, this section includes additional information on solution techniques/complexity that is appropriate for the Introduction section. Please discuss the applications of the problem in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# The meaning of  “Operations applications” is unclear. Please explain or update if necessary.&lt;br /&gt;
# The current conclusion section does not properly summarize the problem. Please refer to other Wiki examples for an idea to update the section accordingly.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Please reference media sources like reference 5 appropriately.&lt;br /&gt;
# A simple Google Scholar search would give you many &amp;quot;formal&amp;quot; references.&lt;br /&gt;
&lt;br /&gt;
== [[Optimization in game theory]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: remove cornell IDs. &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Why only a subsection on &amp;quot;Nash Equilibrium&amp;quot; is included in &amp;quot;Theory&amp;quot; section? Please re-format.&lt;br /&gt;
# Please edit references.&lt;br /&gt;
# Add a mathematical description of the problem and a pseudocode/flowchart for the Lemke-Howson algorithm.  &lt;br /&gt;
# Rephrase “This algorithm utilizes iterated pivoting much like the simplex algorithm used in the simplex algorithm used in linear programming”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please organize the last part in a more readable format. Questions may be in bold and numbered, answers are more direct, etc.&lt;br /&gt;
# Remember to cite all images and tables. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Very good, link the reference and cite all sources. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summarizing especially from theory sentences and avoid long sentences. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Incorrect reference style. Please correct.&lt;br /&gt;
&lt;br /&gt;
== [[Trust-region methods]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
# Remove cornell IDs. Author is also spelled incorrectly. &lt;br /&gt;
# Add the course section.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xk”, “f`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “we”. This goes for all other sections as well.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Organization of ideas in this section needs work.&lt;br /&gt;
# You have not defined explicitly why the Cauchy point is important to compute beyond a vague allusion to performance improvements, which is also wrong (it is useful because of its guarantees for convergence, not performance) It is also misspelled.&lt;br /&gt;
# Each approach should have accompanying explanation and motivation for why it is being discussed. It is not enough to outline the algorithm.&lt;br /&gt;
# Please make sure symbols are properly subscripted and superscripted (e.g. “pk” should be “p_k”&lt;br /&gt;
# Please format the algorithm in proper algorithmic pseudocode format.&lt;br /&gt;
# Little to no discussion on global convergence guarantees&lt;br /&gt;
# Please include discussion about the advantages and disadvantages of the algorithm&lt;br /&gt;
# Fix typo “couchy point”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any code functions (uminfunc) should have proper text formatting.&lt;br /&gt;
# The graph needs a better caption explaining how the axes are labeled and what data points are being shown.&lt;br /&gt;
# Please increase the quality of the figure. It is hard to see the red line. &lt;br /&gt;
# Add citation to “The Rosenbrock function is a non-convex function, introduced by Howard H. Rosenbrock in 1960, which is often used as a performance test problem for optimization algorithms.”&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The content in this section as it is currently does NOT describe applications, but rather different approaches within the trust region methodology. Please provide specific applications (e.g. TRPO in reinforcement learning).&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summary, future research directions for example is a good start.&lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style.&lt;br /&gt;
# Please consider having the references as this Wiki template, &amp;lt;nowiki&amp;gt;https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
*There are numerous misspellings, grammatical errors, and incorrect claims. Please fix these.&lt;br /&gt;
&lt;br /&gt;
== [[Momentum]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Apart from an explanation on momentum, it is necessary to briefly point out the limitations of SGD and why momentum could help with these limitations. Please update it accordingly.&lt;br /&gt;
# Remove bold on “Momentum”.&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Equation formatting is very poor and should be formalized.&lt;br /&gt;
# It is important to use technical language for this Wiki. Although a layman’s explanation is appreciated, it would be better to skip using words like “zig zagging”. Try to explain all concepts in a technical language with few simplifications but NOT vice versa.&lt;br /&gt;
# The definition of the update rule for SGD with momentum looks incorrect, specifically the first expression. Please fix it and also explain all the parameters used.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “W”, “V`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “you”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please try to label the plots that explains what each line color means.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please use correct terminology like “optimizing non-convex functions” and not “training non-convex models”.&lt;br /&gt;
# Adam, Adadelta, and RMSprop are variants of SGD that already use momentum. Please double check the writing and update if necessary.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please refrain from using words like “zig zag” effects.&lt;br /&gt;
* References&lt;br /&gt;
# Almost all references used are URLs. Please try to add journal/conference articles or books for references, instead of directly citing the URLs.&lt;br /&gt;
&lt;br /&gt;
== [[Stochastic dynamic programming|Stochastic Dynamic programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions &lt;br /&gt;
# Remove the grey box background of equations.&lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Outer-approximation (OA)|Outer-approximation]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic &lt;br /&gt;
# See formatting guideline below&lt;br /&gt;
# Avoid opinionated statements such as “MINLP problems are usually the hardest to solve”.&lt;br /&gt;
# Rearrange the text such that the MINLP formulation is in the theory section and keep the introduction in words only.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Consider left aligning equations and optimization problem formulations by the “=”. See [[Stochastic programming|https://optimization.cbe.cornell.edu/index.php?title=Stochastic_programming]] for an example&lt;br /&gt;
# The sentence “The Outer-Approximation (OA) algorithm was first proposed by Duran and and Grossmann in 1986 to solve MINLP problems.” needs a reference. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# “Minimize” and “subject to” should be “min” and “s.t.” in MathType&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Does not explicitly point out why OA is applicable (and/or preferred) in these applications, rather than other MINLP approaches (show that the problem formulations are amenable to a solution approach through OA)&lt;br /&gt;
# The sentence “... an active research area and there exists a vast number of applications in fields such as engineering, computational chemistry, and finance.” needs references. &lt;br /&gt;
# Place GAMS code in a single code box or remove it.&lt;br /&gt;
# Consider reformatting to make steps more readable. Inserting spaces and breaking down steps would help. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Too short. Consider discussion on future research direction and discussion on uncertainty&lt;br /&gt;
# Please review abbreviations throughout the page. Why is MINLP redefined here? “Outer-Approximation is a well known efficient approach for solving convex mixed-integer nonlinear programs (MINLP)”. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove &amp;quot;Template:Reflist&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== [[Unit commitment problem]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction and avoid discussions of examples or specific applications in this section.&lt;br /&gt;
# The sentence “Nonlinear, Non-convex programming optimization problem.” doesn’t make sense by itself and Non-convex shouldn’t be capitalized.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Figure/image format should be revised to better display the content.&lt;br /&gt;
# Uppercase characters are used randomly (e.g., “non-convex transmission Constraints”) . Please follow correct language conventions for sentence structure.&lt;br /&gt;
# Avoid inserting inline citations after words like “written in matrix form as equation [3]..” or “presented in [3]...” as it is a bit informal when you don’t explicitly name the subject. Also these two sentences are grammatically incorrect and appear to be missing an ending period and comma, respectively. &lt;br /&gt;
# Don’t say “written in matrix form as equation..” and just cite the reference, actually write out the equation. &lt;br /&gt;
# Properly label the figure in this section with a figure number and improve visibility by making it larger. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Label the figures in this section properly with figure numbers.&lt;br /&gt;
# Fix typo “while minimize” to “while minimizing”. &lt;br /&gt;
# Avoid pronouns such as “we”. &lt;br /&gt;
# Use the equation editor when typing equations. &lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# I suggest changing the order of the subtitles here. For example, Single-Period Unit Commitment. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Frank-Wolfe]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# I suggest highlighting disadvantages along with advantages. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# “[n x 1] matrix” please use the equation editor to express mathematical descriptions and symbols (p,b, etc)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please show at least a few iterations. Even for smaller examples if needed. Report the final solution. &lt;br /&gt;
# Please use the LaTex code or equation editor for min and include s.t., etc.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. For your example, please explicitly state that the derivative is taken etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications: &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Same as the introduction. Pros and cons should be evaluated together!&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Line search methods|Line Search Method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Expand the introduction and avoid discussion on some of the specific steps in the solution process. &lt;br /&gt;
# Provide references here. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The phrase “are as follows” in the steepest descent method discussion needs to be followed by a colon. &lt;br /&gt;
# Rephrase “has a nice convergence theory” and cite a reference for this claim.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Add citation after “.. proposed by Phillip Wolfe in 1969.”&lt;br /&gt;
# Figure 1 is between two sections. Please fix this issue. &lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# Add some space between iterations or subsection break&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# Too few references in this section. &lt;br /&gt;
# Last paragraph makes some claims without references. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Piecewise linear approximation|Piecewise Linear Approximation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The content of this section is good, but there are some issues with sentence clarity and some other grammatical errors. Please revisit this section and make changes accordingly. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Fix typo “to force the x’ values become associated with”. &lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Some of these longer sentences are hard to read. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Expand the conclusion section to be longer than one sentence. The conclusion section to include a brief summary of what was discussed above, an emphasis on it’s significance, and a brief discussion of future extensions and research direction if applicable.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to sources when possible.&lt;br /&gt;
&lt;br /&gt;
== [[Mathematical programming with equilibrium constraints|Mathematical Programming with Equilibrium constraints]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes several terms like variational inequalities, constraint qualifications that were not discussed in the class. Please add a sentence to explain them before using them.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The meaning of parameter vector x is unclear. Please add more information or update if necessary.&lt;br /&gt;
# Equations and symbols in the PIPA subsection are not formatted correctly. Please use the same formatting for all equations, so they read as mathematical equations and not text. This goes for all other sections as well.&lt;br /&gt;
# Use equations instead of images to represent math programs and equations in the Implicit Descent and SQP subsection.&lt;br /&gt;
# Apart from the steps for each solution technique, please also add a few sentences that describe each method.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please define the terms like NCP, MP before abbreviating them. Also try not to unnecessarily abbreviate simple terms.&lt;br /&gt;
# Equations should be typed by LaTex. Images for equations are unacceptable.&lt;br /&gt;
# GAMS code is strongly discouraged. Please solve the problem &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The selected numerical example is fine but is directly solved with the MPEC solver in GAMS. Try to solve it manually like the homework/in-class problems step by step using the steps described in the previous section by choosing any of the methods.&lt;br /&gt;
# Avoid using figures in the equations (subject to etc)&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Add references to “power management, highway pricing, chemical process engineering, and traffic planning.”&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Wing shape optimization|Wing shape Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction is missing several references (e.g., “software packages like computational fluid dynamics..”, sentences containing things that aren’t common knowledge, performance claims, etc.)&lt;br /&gt;
# Avoid discussion involving finer details of subject methods in this section. &lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. Same applies to box of content!&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Properly cite the CFD package, don’t just include a link. &lt;br /&gt;
# Properly label the figure with a figure number.&lt;br /&gt;
# Consider removing white space between isolated sentences to improve readability. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# If you’ve already defined an abbreviation (CFD), there is no need to define it again. Just use the abbreviation.&lt;br /&gt;
# Avoid pronouns such as “we” or “they”.&lt;br /&gt;
# Phrases like “under the following” need to be followed by a colon.&lt;br /&gt;
# Properly label the figure with a figure number and consider making them larger to improve visibility. Call the reader&#039;s attention to the figures in text by referencing the figure number.&lt;br /&gt;
# “As seen in the video below” is stated yet there are only images present and it may be initially unclear to the reader which figure is being referenced here. &lt;br /&gt;
# Avoid inserting inline citations like “[4] introduces an..”  as it is a bit informal when you don’t explicitly name the subject.&lt;br /&gt;
# Don’t just cite the reference when discussing the problem formulation, explicitly write the model formulation and solution process using LaTex or equation visual editor.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Some characters are randomly capitalized in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# These variables should be defined before the conclusion section, they are out of place here. Also, please use normal text when explaining variables except for the variable symbol. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Interior-point method for NLP|Interior point method for NLP]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Primal-Dual formulation and comparison to the Barrier Method is not discussed.&lt;br /&gt;
# Include brief discussion about big O convergence rates.&lt;br /&gt;
# Need discussion about the concept of “central path” and the notion of self concordance&lt;br /&gt;
# Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Graphs and images are incorrectly formatted to the page. Consider proper alignment with respect to the text body.&lt;br /&gt;
# Use explicitly typed Latex equations instead of images to represent math programs and equations.&lt;br /&gt;
# Fix typo “optimisation”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xi ”, “μ”, etc.).&lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# There are formatting issues with figures 2,3. Please make sure to embed them within their respective sections. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section &lt;br /&gt;
# Minor character code typos in the conclusion.&lt;br /&gt;
# Also, please add more discussion in this section. Future research directions is a good start.&lt;br /&gt;
# There is a box &amp;quot;􏰐&amp;quot;&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[AdaGrad|Adagrad]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Include discussion on its variants (most important is AdaDelta).&lt;br /&gt;
# Include disadvantages of Adagrad, since this provides motivation for the discussion on the variants and improvements of Adagrad&lt;br /&gt;
# Include comparisons to other popular optimizers (particularly important is comparisons to regular SGD and Adam)&lt;br /&gt;
# Different convergence rates are possible depending on the setting where Adagrad is used, but this is not mentioned on the page currently. As such the regret bound section should be more thoroughly explained.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the first sentence, “..take the following numerical example” should be followed by a colon. &lt;br /&gt;
# Fix typo “trayectory”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is too short; include specific applications in which input features are sparse and Adagrad excels.&lt;br /&gt;
# Add reference to the claim “Mainly, it is a good choice for deep learning models with sparse input features”.&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References &lt;br /&gt;
&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources (even if the base algorithm itself comes from a singular paper)&lt;br /&gt;
&lt;br /&gt;
== [[McCormick envelopes|McCormick Envelopes]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: OK but I suggest removing NetID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# First sentence is hard to read. Please consider keeping sentences below 25-30 words. &lt;br /&gt;
# No references provided. Please cite all sources. &lt;br /&gt;
# Figure 1 is provided in the middle between two sections. Please include in the introduction section. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# When using mathematical expressions and symbols, please use the equation editor. (e.g., x*y, exy + y, sin (x+y) - x2)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution. &lt;br /&gt;
# For the sample GAMS code, please place it in a code box&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each. &lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section: &lt;br /&gt;
* References&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4777</id>
		<title>2021 Cornell Optimization Open Textbook Feedback</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4777"/>
		<updated>2021-12-05T19:54:47Z</updated>

		<summary type="html">&lt;p&gt;Asa273: /* Geometric Programming */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[Lagrangean duality|Lagrangian duality]] ==&lt;br /&gt;
* Author list, sections and TOC&lt;br /&gt;
# Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor and avoid HTML formatting on the section titles.&lt;br /&gt;
# Remove cornell ID from Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes sentences on constructing the dual problem and is referred to as Lagrangian relaxation (LR). This is incorrect, please fix the definition of LR.&lt;br /&gt;
# Definitions of LR and its relation to duality should be double checked and re-written.&lt;br /&gt;
# Only one reference is present in this section. Please add more relevant references by expanding this section.&lt;br /&gt;
# Consider merging the “introduction” and “history” sections.&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The Lagrangian variables associated with equality constraints h(x) are unbounded but the Lagrangian dual problem states them as non-negative. Please fix the same.&lt;br /&gt;
# Also to construct a dual, we do not change minimization to maximization directly. We observed such things in the examples in lecture notes due to simplification. The lagrangian dual problem would be minimize (,).&lt;br /&gt;
# Adding to the previous point, the Lagrangian is a lower bound on the original objective; the solution to the primal and dual or only equivalent if the duality gap is 0. You reference this in one section, but this is after your statement “Hence, solving the dual problem, which is a function of the Lagrangian multipliers (𝜆*) yields the same solution as the primal problem, which is a function of the original variables (x*). “. Please clarify the specific conditions that must hold for the solution of the dual to be equal to the primal’s.&lt;br /&gt;
# You refer to the “Complementary Slackness Theorem”, but don’t actually write the mathematical representation of complementary slackness. Please fix this. Also consider including the derivation of the complementary slackness condition, as it is both easy and short. Boyd is a good reference for this.&lt;br /&gt;
# Last step of the “process” subsection also needs updating according to the previous comments.&lt;br /&gt;
# The inline notations should also be typed using LaTex.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Only one dual variable is associated with each constraint. The numerical example uses two for the first and second constraint which is unnecessary. Please update it accordingly for both constraints. This particular example will only have two dual variables instead of the five dual variables used currently.&lt;br /&gt;
# All consecutive steps need to be updated since the dual variables would be updated.&lt;br /&gt;
# After substitution the nonlinear function should be further simplified. The current expression reads like a highly nonlinear function but can be easily simplified.&lt;br /&gt;
# Similar to the comments in the methodology section, inverting minimize to maximize is incorrect. Please update the dual objective function and domain of dual variables accordingly.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Bullet points could be used to state the last four real-world examples that explain the physical meaning of the primal and dual problems.&lt;br /&gt;
# Add references for the last set of applications. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# This section contains a few typos. Please fix the same.&lt;br /&gt;
* References&lt;br /&gt;
# Some citations&#039; hyperlinks are displaying.&lt;br /&gt;
&lt;br /&gt;
== [[Disjunctive inequalities|Disjunctive Inequalities]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section and semester&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# No citations are present in this section.&lt;br /&gt;
# “mixed-integer programming (MIP)” should be used instead of “multiple integer programming (MIP)”. Please fix this error.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The abbreviation MILP is not previously defined. Please fix this issue.&lt;br /&gt;
# You consistently use the negative sign instead of the NOT operator for y (-y instead of ¬y). &lt;br /&gt;
# Some inconsistencies with the spacing of variables, constraints, etc., under the “General” section that need to be fixed.&lt;br /&gt;
# Typo in “This is shown below by M1, M2, y1, and y1:” where y1 needs to be changed to y2. Why use two different Big-M variables here? Elsewhere in the Wiki you only use one so this could lead to confusion with a general audience. Also if this was taken from the lecture notes then it needs to be cited.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please reformulate and solve a complete numerical example rather than just reformulating a general example. Demonstrate the use of Big-M and Convex Hull formulation in an optimization problem that provides details such as individual steps in the problem solving process and final results.&lt;br /&gt;
# Add space between vee (V) operator and brackets in first line of Latex&lt;br /&gt;
# Please format variables correctly, for example, use &amp;lt;math&amp;gt;x_1&amp;lt;/math&amp;gt; instead of x1.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please format the equations appropriately either by using latex code or the visual editor. These images are NOT acceptable!&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# There is no conclusion presented in this section at all.&lt;br /&gt;
* References&lt;br /&gt;
# The included references have NOT been used anywhere in the Wiki. Add references for sentences that are not common knowledge and please link them appropriately with the text in Wiki. If the figures used here were not original works, you must also cite them. &lt;br /&gt;
# There are many papers on this topic. A simple Google (Scholar) search could provide you with sufficient references to cite. &lt;br /&gt;
# Many important references of this topic are missing.&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
==[[Stochastic programming|Stochastic Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell IDs&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
# This section only includes two sentences on Stochastic programming (SP), while the rest gives examples of uncertainty. Please discuss the need for SP in the presence of uncertainty. Also, discussion on robust optimization and its limitations should be removed since it is out of place.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please avoid direct inline linkbacks to Wikipedia.&lt;br /&gt;
# The symbol “xi” in the methodology subsection should be explained.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Copying a numerical example &amp;quot;entirely&amp;quot; from a textbook is inappropriate. Your team should come up with a &amp;quot;numerical&amp;quot; case.&lt;br /&gt;
# No specific application context is needed for a numerical example.&lt;br /&gt;
# The inline notations (`x1`, `s1`) should also be typed using LaTex.&lt;br /&gt;
# Label all tables with a table number for better readability. &lt;br /&gt;
# Properly format the solution table with the label attached rather than the following sentence. The solution table looks different from the others, please fix this for consistency. &lt;br /&gt;
* A section to discuss and/or illustrate the applications;&lt;br /&gt;
# I suggest eliminating citing the last name of the first author (i.e. Zhou et al.)&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# URLs of some citations are not properly formatted (not showing the hyperlinks).&lt;br /&gt;
&lt;br /&gt;
== [[Exponential transformation|Exponential Transformation]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction.&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Last sentence with 51 words is hard to read. &lt;br /&gt;
# Second Sentence: please change the word “they” as it could make the meaning ambiguous&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
# If you use abbreviations, please introduce them (e.g. NLP,MINLP)&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please explain the transformation in words along with equations&lt;br /&gt;
# Terms like posynomial should be described in detail.&lt;br /&gt;
# Please move the numerical example to the section below&lt;br /&gt;
# The “(eq 1)” is not needed here.&lt;br /&gt;
# Please expand this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the third equation of the numerical example, it is confusing to have coefficients after numbers. Some readers may read it as an exponent.&lt;br /&gt;
# Last equation in this section after “further linearization” is incorrect. This equation cannot be further linearized, please fix this.&lt;br /&gt;
# Please explain the steps in the numerical examples in detail. The step-by-step solution should be provided. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Missing part of text: “Proof of convexity of with positive definite test of Hessian…”&lt;br /&gt;
# Applications are not numerical examples. Please refer to this link for example of applications: [[Duality|https://optimization.cbe.cornell.edu/index.php?title=Duality]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
# The section current applications is redundant&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
# Under current applications, do not just use a hyperlink to describe an application. Actually describe it. And properly inline citation style should be used instead of the hyperlink. &lt;br /&gt;
# The convexification application of MINLP can be further simplified for binary variables. Please refer to the lecture slides for more information.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references by using this as Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
&lt;br /&gt;
== [[Sparse Reconstruction with Compressed Sensing|Sparse reconstruction with Compressed Sensing]] ==&lt;br /&gt;
This Wiki needs a significant rewrite. Please go through the comments for details.&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction section should include information about the problem and its implications presented briefly. Please use full sentences to write this Wiki. You may use tools like Grammarly to check sentence formation and grammar.&lt;br /&gt;
# This section includes several typos like “sub modual”. Please fix them throughout the wiki and delete them if not required.&lt;br /&gt;
# Many abbreviations are used before previously defining them. Please define these abbreviations before using them in the text.&lt;br /&gt;
# This section is incomprehensible in its current form. Please rewrite with proper comprehension.&lt;br /&gt;
# Equations and math symbols need proper reformatting. The current version reads like text (along with equations) copy-pasted from a specific source. All mathematical symbols and equations should be formatted via LaTex - this is a learning objective of the Wiki assignment. You can find some useful links on converting your equations/symbols into LaTex code here: (https://optimization.cbe.cornell.edu/index.php?title=Help:Contents).&lt;br /&gt;
# Try to place the figure at the top of the Wiki between the main text.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# I suggest the use of more formal abstract illustrations. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Equations and symbols need proper reformatting.&lt;br /&gt;
# Lemmas and theorems are not expected for this Wiki. Sparse reconstruction is a straightforward concept but is unnecessarily complicated here. Please refer to other Wiki examples to get an idea of what the Wiki should convey.&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Numerical example is missing.&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion section is missing.&lt;br /&gt;
* References&lt;br /&gt;
# The current reference list is not correctly formatted. References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Portfolio optimization|Portfolio Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell id&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introductory sentence should be rephrased. The action of minimizing the risks does not inherently maximize the gains, rather PO aims to maximize gains whilst minimizing risks. &lt;br /&gt;
# Amount of whitespace can be reduced by changing the orientation of Figure 1 and the sentences in this section.&lt;br /&gt;
# Define terms such as risk, return, portfolio, etc., when you introduce them. Assume that the reader may not know much about finance. This goes for all other sections as well. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# A brief mention of modern portfolio theory (i.e.. Markowitz) would be appropriate in this section. &lt;br /&gt;
# Several grammatical errors here involving sentence structure and clarity. Some questionable semantics (e.g., “The portfolio optimization mainly assumes two directions.”) and syntax (phrases such as “.. is as follows” should be followed by a colon). Misuse of commas and missing commas in this section. Two sentences introducing E(rp) and w should be combined into one.&lt;br /&gt;
# Use LaTex to distinguish variables written within a sentence, such as m and n. &lt;br /&gt;
# Rephrase “Cut the relevant information and conditions in the portfolio optimization, as well as the final requirements into the relevant variables, constraints and linear functions of the linear programming problem.”&lt;br /&gt;
# An explanation of a few common constraints would be helpful, rather than just including a table. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Solving the numerical example by GAMS is inappropriate. Please provide detailed step-by-step calculation results.&lt;br /&gt;
# All tables need to be labeled.&lt;br /&gt;
# Include figure number in label for consistency. &lt;br /&gt;
# Fix misspelling “dolling decision variables”. &lt;br /&gt;
# Use LaTex for all variables, equations, and constraints here.&lt;br /&gt;
# Example 2 table is hard to read, so making it bigger would help. &lt;br /&gt;
# Remove the “Using excel as the solver” part from the sentence before the solution discussion. &lt;br /&gt;
# Some grammatical errors here (phrases such as “.. is as follows” should be followed by a colon). &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Rephrase “Portfolio optimization can be used to screen investment projects that meet investors, rationally allocate investment amounts, etc.”&lt;br /&gt;
# Not sure “relevant” is the correct word choice here. &lt;br /&gt;
# You need more specific examples with the utility of portfolio optimization, this section is quite general as is. Some more detail and focus on real-world applications in the financial industry that relate to retirement planning, financial security, economic stability, etc., would be helpful. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Need some commas here.&lt;br /&gt;
# The sentence “Linear programming has been around since the 1940’s and has such a wide base of applications” is not necessary. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove white space between end of sentences and reference numbers.&lt;br /&gt;
&lt;br /&gt;
== [[Chance-constraint method|Chance constraint method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please consider correcting a few grammatical errors: “pre-planned for”, “god”, “certain levels of feasibility is guaranteed in what are”, and “Performance of a system”&lt;br /&gt;
# In “Chance-constraint”, it is capitalized randomly throughout the introduction. Please correct.   &lt;br /&gt;
# Please use technical language to briefly introduce chance-constrained programming. Words like “acts of god”, “cost of doing business” are not appropriate for a  technical Wiki.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Xi is an uncertainty/randomness variable. It is better to use clear language. &lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others.&lt;br /&gt;
# Theory is insufficient. Please expand and explain different approaches. &lt;br /&gt;
# Please add pros and cons explicitly as a list. &lt;br /&gt;
# Explain the physical meaning for examples of chance constraints along with all the notations used.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please remove this example as it is directly from this book. The example should be purely numerical without any background.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others. &lt;br /&gt;
# Please change the table format so as not to confuse the reader. &lt;br /&gt;
# Multiple instances of [Chart to be added] are missing.&lt;br /&gt;
# Example is incomplete. &lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please connect several grammatical and spelling errors: “real life application”, Energy creation, particularly in renewable sources, have high variabilities”, and others&lt;br /&gt;
# “Zhao, Xue, Cao, and Zhang”. No need to list all authors within the article. Provide a reference is sufficient. If authors must be mentioned, (Zhao et al.) should be ok.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Uniqueness and universality earlier are not clear to me. If they are not discussed earlier in the application, it would be better not to introduce new discussions in the conclusion.&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
==  [[Bayesian Optimization]] ==&lt;br /&gt;
* Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor on the section titles.&lt;br /&gt;
* Contents: Subheadings for EI and the algorithm should not be bolded, Random words should not be capitalized.&lt;br /&gt;
* Author list: Remove cornell ID, Please check names&lt;br /&gt;
* Introduction&lt;br /&gt;
# The introduction is too general and not substantial enough. For example, simply saying BayesOpt is useful when the objective function is unknown obscures exactly HOW it is useful (namely, computational efficiency in applications where ground truth sampling is expensive). Discussion on applications should be moved to a separate section.&lt;br /&gt;
# Machine learning rarely includes black-box functions to be optimized. Bayesian optimization is almost never used for optimizing ML loss functions but can instead be used for hyperparameter optimization. Please update such claims in this section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Captions need reformatting.&lt;br /&gt;
# Consider italicizing keywords rather than bolding.&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Discussion on acquisition functions should include comparisons, tradeoffs, and reasons to use one over the other. Should also note that expected improvement is the most widely used in practice, and explain.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Please write equations in the Wiki instead of attaching images for equations.&lt;br /&gt;
# Acquisition function figure could be made larger and clearer to improve readability.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any references to functions or methods in code ‘e.g. fmin’ should be properly formatted as code-stylized text.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Avoid including a figure of the code for this example and explicitly describe the steps to the modeling and solution process instead. &lt;br /&gt;
# Avoid pronouns such as “our” and “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please do not use brackets to enclose lists.&lt;br /&gt;
# Some claims here should be supported by references. Please cite each source after its sentence. &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to “pop” machine learning blogs where anyone can be an author. (e.g. towardsdatascience)&lt;br /&gt;
# All references are URLs. Please cite publications and literature.&lt;br /&gt;
# A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
Notes on grammar: Needs some work. Several instances where colons are inappropriately inserted mid sentence or in subheadings. Explanations are not terse. Several instances of switching between personal and impersonal style of writing, which is distracting.&lt;br /&gt;
&lt;br /&gt;
== [[Conjugate gradient methods]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Introduction&lt;br /&gt;
# All inline notations (e.g., `x`, `A`) should be typed using LaTex.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
# Is Gauss-Newton no longer referenced?&lt;br /&gt;
# Theorems listed in the first section should be accompanied with high level explanation, not just a list of the theorems themselves. The page should read like an article, with proper flow.&lt;br /&gt;
# Please indent equation blocks.&lt;br /&gt;
# Please properly format pseudocode.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Steps should be accompanied with explanation, or reference to the corresponding step in the pseudocode.&lt;br /&gt;
# Please properly format in a more organized manner, aligning equations appropriately and demarcating steps appropriately.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
# Consider including 2 additional examples of applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Consider adding future research directions&lt;br /&gt;
* References&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Too few references.&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Geometric programming|Geometric Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Examples of applications in this section use the same reference. Please cite their individual sources.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The symbol denoting the domain in the definition of a monomial is unclear. Please clarify it or fix this if it is incorrect.&lt;br /&gt;
# Definition of posynomial refers to section 2.1 which is missing from the Wiki (sections are not numbered in the main text).&lt;br /&gt;
# In the generalized posynomial subsection, bullet points do not tell us why h(x) is posynomial. Either provide reasons or simply state that h(x) is posynomial. Also explain why h3 is a generalized posynomial.&lt;br /&gt;
# Additional theory on the feasibility analysis could be provided in this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the transformation example, the last two constraints could also be simplified by applying a natural logarithm on both sides. Please update them as well.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The figure in this section needs to be labeled. &lt;br /&gt;
# The figure needs to be resized and perhaps aligned to the center.  &lt;br /&gt;
* A conclusion section:&lt;br /&gt;
# Please avoid vague language such as: “This makes”.&lt;br /&gt;
# Please avoid opinionated statements: “one of the best ways”.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# This Wiki has very few references. A quick Google Scholar search may provide relevant references.&lt;br /&gt;
&lt;br /&gt;
== [[Adam]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Some grammatical errors here, mostly related to the need for commas in certain places (e.g., “Before Adam..”).&lt;br /&gt;
# Some minor errors with parts of speech throughout the section, need to revisit phrases such as “which has broader scope in future for”, etc. &lt;br /&gt;
# Try splitting up some of the longer sentences in this section, a couple are hard to read.&lt;br /&gt;
# Avoid definitive statements about Adam being the best or always better solver, as this is simply not true (the choice of the “best” optimizer is setting-dependent). Use language such as “Research has shown that Adam has demonstrated superior experimental performance over..” and then cite academic references to back this claim. &lt;br /&gt;
# What does adam stand for? Introduction is insufficient. Please expand. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Revise grammar here, noticing some missing commas and uncapitalized word after period.&lt;br /&gt;
# Rephrase “second one is to update the old position with the updated position”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section, and actual subscripts instead of “m_t”, etc. &lt;br /&gt;
# Avoid inserting inline citations after words like “According to..” or “This article..” as it is a bit informal. This could be rephrased or changed to something like “According to author,^[2] …” with author name inserted. &lt;br /&gt;
# Remove white space before the period in RMSP discussion.&lt;br /&gt;
# Please provide a pseudocode. &lt;br /&gt;
# Please use list the two methods here “Adam is a combination of two gradient descent methods which are explained below”&lt;br /&gt;
# Please expand the theory section significantly. Theoretical convergence properties should be discussed, even if briefly.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Same comment as before, consider replacing inline citations after words like “According to..”. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to blogs and use peer-reviewed academic references instead. &lt;br /&gt;
# Too few references.&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[A-star algorithm|a* algorithm]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor and avoid HTML formatting on the section titles.&lt;br /&gt;
* An introduction of the topic:&lt;br /&gt;
# Weird spacing between paragraphs. Please fix this issue.&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. &lt;br /&gt;
# Please consider correcting a few grammatical errors: “Optimal path”, “cross country”, missing period at end of first paragraph, other random capitalizations, etc.&lt;br /&gt;
# There are no citations in the introduction. Please cite every source.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add the mathematical description of the algorithm.&lt;br /&gt;
# Reference style varies in sentences. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please fix grammatical and spelling errors as (“from current position to the goal”, “There are a lot of discussions”, etc). Also, many hyphens are missing as “non playable”.&lt;br /&gt;
# In algorithms, it is a standard to add high-level description (i.e. pseudocode or flowchart). Please incorporate it. &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section (e.g., “f(n)...”, “h(n)..”, etc.). This goes for other sections as well.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The numerical example does not show the full computations the algorithm performs. Please show the computation on a smaller example.&lt;br /&gt;
# Instead of writing things like “The above image..”, label each figure and use the figure number to refer to it in text. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# No references in the applications. Please cite every source &lt;br /&gt;
# Preferably, add at least an additional application.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion should summarize descriptions. Please modify it to provide a summary.  &lt;br /&gt;
# Please pay attention to the length and structure of sentences here and in the full page. First sentence is hard to read.&lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format and are not linked correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Incorrect reference style. Please follow the example and use the template.&lt;br /&gt;
&lt;br /&gt;
== [[Job shop scheduling|Job-Shop Scheduling Problem]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The current introduction to the jobshop scheduling problem has only two sentences in addition to the parameter description. Introduction typically contains information about the problem, its importance in the real-world, and some information about the solution techniques and their types to solve the problem. Please add some information that covers the above.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# It is unclear whether the assumptions stated in this section are required to apply the following solution techniques. Please clarify the same. Also use complete sentences to state them.&lt;br /&gt;
# The branch and bounds method described in this section only discusses the solution technique for problems with one machines. However, branch and bound is a general technique that can be applied to any MILP problems with varying scales. Please update the “methods” section to be as general as possible.&lt;br /&gt;
# Since this Wiki focuses on jobshop scheduling, at least two methods are expected. Branch and bound is a general MILP technique, so, it is recommended to add a tailored technique that can only solve specific jobshop scheduling problems. Solving the numerical example with this technique is not necessary.&lt;br /&gt;
# Reference to the branch and bound technique described in this section is a “youtube” video. Please add references in literature that describe this method in detail. The method used in this video is highly tailored for a single machine application. This is also an incorrect way to cite a reference. Please keep this section as general as possible.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section and all other sections as well.&lt;br /&gt;
# Check grammar in this section. For example, phrases like “are as follows” need to be followed by a colon and not a period. &lt;br /&gt;
# Consider rewriting the assumptions as a list in this section. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The example used in this section is exactly the same as the one in the youtube video. Please use a modification of this example or choose another example/method to demonstrate the solution technique.&lt;br /&gt;
# The figure in this section is not numbered when all others are. Relabel this figure for consistency and its number to refer to it in-text.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section should only focus on real-world applications of the jobshop scheduling problem. But currently, this section includes additional information on solution techniques/complexity that is appropriate for the Introduction section. Please discuss the applications of the problem in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# The meaning of  “Operations applications” is unclear. Please explain or update if necessary.&lt;br /&gt;
# The current conclusion section does not properly summarize the problem. Please refer to other Wiki examples for an idea to update the section accordingly.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Please reference media sources like reference 5 appropriately.&lt;br /&gt;
# A simple Google Scholar search would give you many &amp;quot;formal&amp;quot; references.&lt;br /&gt;
&lt;br /&gt;
== [[Optimization in game theory]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: remove cornell IDs. &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Why only a subsection on &amp;quot;Nash Equilibrium&amp;quot; is included in &amp;quot;Theory&amp;quot; section? Please re-format.&lt;br /&gt;
# Please edit references.&lt;br /&gt;
# Add a mathematical description of the problem and a pseudocode/flowchart for the Lemke-Howson algorithm.  &lt;br /&gt;
# Rephrase “This algorithm utilizes iterated pivoting much like the simplex algorithm used in the simplex algorithm used in linear programming”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please organize the last part in a more readable format. Questions may be in bold and numbered, answers are more direct, etc.&lt;br /&gt;
# Remember to cite all images and tables. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Very good, link the reference and cite all sources. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summarizing especially from theory sentences and avoid long sentences. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Incorrect reference style. Please correct.&lt;br /&gt;
&lt;br /&gt;
== [[Trust-region methods]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
# Remove cornell IDs. Author is also spelled incorrectly. &lt;br /&gt;
# Add the course section.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xk”, “f`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “we”. This goes for all other sections as well.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Organization of ideas in this section needs work.&lt;br /&gt;
# You have not defined explicitly why the Cauchy point is important to compute beyond a vague allusion to performance improvements, which is also wrong (it is useful because of its guarantees for convergence, not performance) It is also misspelled.&lt;br /&gt;
# Each approach should have accompanying explanation and motivation for why it is being discussed. It is not enough to outline the algorithm.&lt;br /&gt;
# Please make sure symbols are properly subscripted and superscripted (e.g. “pk” should be “p_k”&lt;br /&gt;
# Please format the algorithm in proper algorithmic pseudocode format.&lt;br /&gt;
# Little to no discussion on global convergence guarantees&lt;br /&gt;
# Please include discussion about the advantages and disadvantages of the algorithm&lt;br /&gt;
# Fix typo “couchy point”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any code functions (uminfunc) should have proper text formatting.&lt;br /&gt;
# The graph needs a better caption explaining how the axes are labeled and what data points are being shown.&lt;br /&gt;
# Please increase the quality of the figure. It is hard to see the red line. &lt;br /&gt;
# Add citation to “The Rosenbrock function is a non-convex function, introduced by Howard H. Rosenbrock in 1960, which is often used as a performance test problem for optimization algorithms.”&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The content in this section as it is currently does NOT describe applications, but rather different approaches within the trust region methodology. Please provide specific applications (e.g. TRPO in reinforcement learning).&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summary, future research directions for example is a good start.&lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style.&lt;br /&gt;
# Please consider having the references as this Wiki template, &amp;lt;nowiki&amp;gt;https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
*There are numerous misspellings, grammatical errors, and incorrect claims. Please fix these.&lt;br /&gt;
&lt;br /&gt;
== [[Momentum]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Apart from an explanation on momentum, it is necessary to briefly point out the limitations of SGD and why momentum could help with these limitations. Please update it accordingly.&lt;br /&gt;
# Remove bold on “Momentum”.&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Equation formatting is very poor and should be formalized.&lt;br /&gt;
# It is important to use technical language for this Wiki. Although a layman’s explanation is appreciated, it would be better to skip using words like “zig zagging”. Try to explain all concepts in a technical language with few simplifications but NOT vice versa.&lt;br /&gt;
# The definition of the update rule for SGD with momentum looks incorrect, specifically the first expression. Please fix it and also explain all the parameters used.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “W”, “V`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “you”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please try to label the plots that explains what each line color means.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please use correct terminology like “optimizing non-convex functions” and not “training non-convex models”.&lt;br /&gt;
# Adam, Adadelta, and RMSprop are variants of SGD that already use momentum. Please double check the writing and update if necessary.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please refrain from using words like “zig zag” effects.&lt;br /&gt;
* References&lt;br /&gt;
# Almost all references used are URLs. Please try to add journal/conference articles or books for references, instead of directly citing the URLs.&lt;br /&gt;
&lt;br /&gt;
== [[Stochastic dynamic programming|Stochastic Dynamic programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions &lt;br /&gt;
# Remove the grey box background of equations.&lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Outer-approximation (OA)|Outer-approximation]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic &lt;br /&gt;
# See formatting guideline below&lt;br /&gt;
# Avoid opinionated statements such as “MINLP problems are usually the hardest to solve”.&lt;br /&gt;
# Rearrange the text such that the MINLP formulation is in the theory section and keep the introduction in words only.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Consider left aligning equations and optimization problem formulations by the “=”. See [[Stochastic programming|https://optimization.cbe.cornell.edu/index.php?title=Stochastic_programming]] for an example&lt;br /&gt;
# The sentence “The Outer-Approximation (OA) algorithm was first proposed by Duran and and Grossmann in 1986 to solve MINLP problems.” needs a reference. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# “Minimize” and “subject to” should be “min” and “s.t.” in MathType&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Does not explicitly point out why OA is applicable (and/or preferred) in these applications, rather than other MINLP approaches (show that the problem formulations are amenable to a solution approach through OA)&lt;br /&gt;
# The sentence “... an active research area and there exists a vast number of applications in fields such as engineering, computational chemistry, and finance.” needs references. &lt;br /&gt;
# Place GAMS code in a single code box or remove it.&lt;br /&gt;
# Consider reformatting to make steps more readable. Inserting spaces and breaking down steps would help. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Too short. Consider discussion on future research direction and discussion on uncertainty&lt;br /&gt;
# Please review abbreviations throughout the page. Why is MINLP redefined here? “Outer-Approximation is a well known efficient approach for solving convex mixed-integer nonlinear programs (MINLP)”. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove &amp;quot;Template:Reflist&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== [[Unit commitment problem]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction and avoid discussions of examples or specific applications in this section.&lt;br /&gt;
# The sentence “Nonlinear, Non-convex programming optimization problem.” doesn’t make sense by itself and Non-convex shouldn’t be capitalized.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Figure/image format should be revised to better display the content.&lt;br /&gt;
# Uppercase characters are used randomly (e.g., “non-convex transmission Constraints”) . Please follow correct language conventions for sentence structure.&lt;br /&gt;
# Avoid inserting inline citations after words like “written in matrix form as equation [3]..” or “presented in [3]...” as it is a bit informal when you don’t explicitly name the subject. Also these two sentences are grammatically incorrect and appear to be missing an ending period and comma, respectively. &lt;br /&gt;
# Don’t say “written in matrix form as equation..” and just cite the reference, actually write out the equation. &lt;br /&gt;
# Properly label the figure in this section with a figure number and improve visibility by making it larger. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Label the figures in this section properly with figure numbers.&lt;br /&gt;
# Fix typo “while minimize” to “while minimizing”. &lt;br /&gt;
# Avoid pronouns such as “we”. &lt;br /&gt;
# Use the equation editor when typing equations. &lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# I suggest changing the order of the subtitles here. For example, Single-Period Unit Commitment. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Frank-Wolfe]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# I suggest highlighting disadvantages along with advantages. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# “[n x 1] matrix” please use the equation editor to express mathematical descriptions and symbols (p,b, etc)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please show at least a few iterations. Even for smaller examples if needed. Report the final solution. &lt;br /&gt;
# Please use the LaTex code or equation editor for min and include s.t., etc.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. For your example, please explicitly state that the derivative is taken etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications: &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Same as the introduction. Pros and cons should be evaluated together!&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Line search methods|Line Search Method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Expand the introduction and avoid discussion on some of the specific steps in the solution process. &lt;br /&gt;
# Provide references here. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The phrase “are as follows” in the steepest descent method discussion needs to be followed by a colon. &lt;br /&gt;
# Rephrase “has a nice convergence theory” and cite a reference for this claim.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Add citation after “.. proposed by Phillip Wolfe in 1969.”&lt;br /&gt;
# Figure 1 is between two sections. Please fix this issue. &lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# Add some space between iterations or subsection break&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# Too few references in this section. &lt;br /&gt;
# Last paragraph makes some claims without references. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Piecewise linear approximation|Piecewise Linear Approximation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The content of this section is good, but there are some issues with sentence clarity and some other grammatical errors. Please revisit this section and make changes accordingly. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Fix typo “to force the x’ values become associated with”. &lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Some of these longer sentences are hard to read. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Expand the conclusion section to be longer than one sentence. The conclusion section to include a brief summary of what was discussed above, an emphasis on it’s significance, and a brief discussion of future extensions and research direction if applicable.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to sources when possible.&lt;br /&gt;
&lt;br /&gt;
== [[Mathematical programming with equilibrium constraints|Mathematical Programming with Equilibrium constraints]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes several terms like variational inequalities, constraint qualifications that were not discussed in the class. Please add a sentence to explain them before using them.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The meaning of parameter vector x is unclear. Please add more information or update if necessary.&lt;br /&gt;
# Equations and symbols in the PIPA subsection are not formatted correctly. Please use the same formatting for all equations, so they read as mathematical equations and not text. This goes for all other sections as well.&lt;br /&gt;
# Use equations instead of images to represent math programs and equations in the Implicit Descent and SQP subsection.&lt;br /&gt;
# Apart from the steps for each solution technique, please also add a few sentences that describe each method.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please define the terms like NCP, MP before abbreviating them. Also try not to unnecessarily abbreviate simple terms.&lt;br /&gt;
# Equations should be typed by LaTex. Images for equations are unacceptable.&lt;br /&gt;
# GAMS code is strongly discouraged. Please solve the problem &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The selected numerical example is fine but is directly solved with the MPEC solver in GAMS. Try to solve it manually like the homework/in-class problems step by step using the steps described in the previous section by choosing any of the methods.&lt;br /&gt;
# Avoid using figures in the equations (subject to etc)&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Add references to “power management, highway pricing, chemical process engineering, and traffic planning.”&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Wing shape optimization|Wing shape Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction is missing several references (e.g., “software packages like computational fluid dynamics..”, sentences containing things that aren’t common knowledge, performance claims, etc.)&lt;br /&gt;
# Avoid discussion involving finer details of subject methods in this section. &lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. Same applies to box of content!&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Properly cite the CFD package, don’t just include a link. &lt;br /&gt;
# Properly label the figure with a figure number.&lt;br /&gt;
# Consider removing white space between isolated sentences to improve readability. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# If you’ve already defined an abbreviation (CFD), there is no need to define it again. Just use the abbreviation.&lt;br /&gt;
# Avoid pronouns such as “we” or “they”.&lt;br /&gt;
# Phrases like “under the following” need to be followed by a colon.&lt;br /&gt;
# Properly label the figure with a figure number and consider making them larger to improve visibility. Call the reader&#039;s attention to the figures in text by referencing the figure number.&lt;br /&gt;
# “As seen in the video below” is stated yet there are only images present and it may be initially unclear to the reader which figure is being referenced here. &lt;br /&gt;
# Avoid inserting inline citations like “[4] introduces an..”  as it is a bit informal when you don’t explicitly name the subject.&lt;br /&gt;
# Don’t just cite the reference when discussing the problem formulation, explicitly write the model formulation and solution process using LaTex or equation visual editor.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Some characters are randomly capitalized in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# These variables should be defined before the conclusion section, they are out of place here. Also, please use normal text when explaining variables except for the variable symbol. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Interior-point method for NLP|Interior point method for NLP]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Primal-Dual formulation and comparison to the Barrier Method is not discussed.&lt;br /&gt;
# Include brief discussion about big O convergence rates.&lt;br /&gt;
# Need discussion about the concept of “central path” and the notion of self concordance&lt;br /&gt;
# Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Graphs and images are incorrectly formatted to the page. Consider proper alignment with respect to the text body.&lt;br /&gt;
# Use explicitly typed Latex equations instead of images to represent math programs and equations.&lt;br /&gt;
# Fix typo “optimisation”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xi ”, “μ”, etc.).&lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# There are formatting issues with figures 2,3. Please make sure to embed them within their respective sections. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section &lt;br /&gt;
# Minor character code typos in the conclusion.&lt;br /&gt;
# Also, please add more discussion in this section. Future research directions is a good start.&lt;br /&gt;
# There is a box &amp;quot;􏰐&amp;quot;&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[AdaGrad|Adagrad]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Include discussion on its variants (most important is AdaDelta).&lt;br /&gt;
# Include disadvantages of Adagrad, since this provides motivation for the discussion on the variants and improvements of Adagrad&lt;br /&gt;
# Include comparisons to other popular optimizers (particularly important is comparisons to regular SGD and Adam)&lt;br /&gt;
# Different convergence rates are possible depending on the setting where Adagrad is used, but this is not mentioned on the page currently. As such the regret bound section should be more thoroughly explained.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the first sentence, “..take the following numerical example” should be followed by a colon. &lt;br /&gt;
# Fix typo “trayectory”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is too short; include specific applications in which input features are sparse and Adagrad excels.&lt;br /&gt;
# Add reference to the claim “Mainly, it is a good choice for deep learning models with sparse input features”.&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References &lt;br /&gt;
&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources (even if the base algorithm itself comes from a singular paper)&lt;br /&gt;
&lt;br /&gt;
== [[McCormick envelopes|McCormick Envelopes]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: OK but I suggest removing NetID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# First sentence is hard to read. Please consider keeping sentences below 25-30 words. &lt;br /&gt;
# No references provided. Please cite all sources. &lt;br /&gt;
# Figure 1 is provided in the middle between two sections. Please include in the introduction section. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# When using mathematical expressions and symbols, please use the equation editor. (e.g., x*y, exy + y, sin (x+y) - x2)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution. &lt;br /&gt;
# For the sample GAMS code, please place it in a code box&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each. &lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section: &lt;br /&gt;
* References&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4776</id>
		<title>2021 Cornell Optimization Open Textbook Feedback</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4776"/>
		<updated>2021-12-05T19:45:37Z</updated>

		<summary type="html">&lt;p&gt;Asa273: /* Sparse reconstruction with Compressed Sensing */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[Lagrangean duality|Lagrangian duality]] ==&lt;br /&gt;
* Author list, sections and TOC&lt;br /&gt;
# Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor and avoid HTML formatting on the section titles.&lt;br /&gt;
# Remove cornell ID from Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes sentences on constructing the dual problem and is referred to as Lagrangian relaxation (LR). This is incorrect, please fix the definition of LR.&lt;br /&gt;
# Definitions of LR and its relation to duality should be double checked and re-written.&lt;br /&gt;
# Only one reference is present in this section. Please add more relevant references by expanding this section.&lt;br /&gt;
# Consider merging the “introduction” and “history” sections.&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The Lagrangian variables associated with equality constraints h(x) are unbounded but the Lagrangian dual problem states them as non-negative. Please fix the same.&lt;br /&gt;
# Also to construct a dual, we do not change minimization to maximization directly. We observed such things in the examples in lecture notes due to simplification. The lagrangian dual problem would be minimize (,).&lt;br /&gt;
# Adding to the previous point, the Lagrangian is a lower bound on the original objective; the solution to the primal and dual or only equivalent if the duality gap is 0. You reference this in one section, but this is after your statement “Hence, solving the dual problem, which is a function of the Lagrangian multipliers (𝜆*) yields the same solution as the primal problem, which is a function of the original variables (x*). “. Please clarify the specific conditions that must hold for the solution of the dual to be equal to the primal’s.&lt;br /&gt;
# You refer to the “Complementary Slackness Theorem”, but don’t actually write the mathematical representation of complementary slackness. Please fix this. Also consider including the derivation of the complementary slackness condition, as it is both easy and short. Boyd is a good reference for this.&lt;br /&gt;
# Last step of the “process” subsection also needs updating according to the previous comments.&lt;br /&gt;
# The inline notations should also be typed using LaTex.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Only one dual variable is associated with each constraint. The numerical example uses two for the first and second constraint which is unnecessary. Please update it accordingly for both constraints. This particular example will only have two dual variables instead of the five dual variables used currently.&lt;br /&gt;
# All consecutive steps need to be updated since the dual variables would be updated.&lt;br /&gt;
# After substitution the nonlinear function should be further simplified. The current expression reads like a highly nonlinear function but can be easily simplified.&lt;br /&gt;
# Similar to the comments in the methodology section, inverting minimize to maximize is incorrect. Please update the dual objective function and domain of dual variables accordingly.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Bullet points could be used to state the last four real-world examples that explain the physical meaning of the primal and dual problems.&lt;br /&gt;
# Add references for the last set of applications. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# This section contains a few typos. Please fix the same.&lt;br /&gt;
* References&lt;br /&gt;
# Some citations&#039; hyperlinks are displaying.&lt;br /&gt;
&lt;br /&gt;
== [[Disjunctive inequalities|Disjunctive Inequalities]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section and semester&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# No citations are present in this section.&lt;br /&gt;
# “mixed-integer programming (MIP)” should be used instead of “multiple integer programming (MIP)”. Please fix this error.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The abbreviation MILP is not previously defined. Please fix this issue.&lt;br /&gt;
# You consistently use the negative sign instead of the NOT operator for y (-y instead of ¬y). &lt;br /&gt;
# Some inconsistencies with the spacing of variables, constraints, etc., under the “General” section that need to be fixed.&lt;br /&gt;
# Typo in “This is shown below by M1, M2, y1, and y1:” where y1 needs to be changed to y2. Why use two different Big-M variables here? Elsewhere in the Wiki you only use one so this could lead to confusion with a general audience. Also if this was taken from the lecture notes then it needs to be cited.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please reformulate and solve a complete numerical example rather than just reformulating a general example. Demonstrate the use of Big-M and Convex Hull formulation in an optimization problem that provides details such as individual steps in the problem solving process and final results.&lt;br /&gt;
# Add space between vee (V) operator and brackets in first line of Latex&lt;br /&gt;
# Please format variables correctly, for example, use &amp;lt;math&amp;gt;x_1&amp;lt;/math&amp;gt; instead of x1.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please format the equations appropriately either by using latex code or the visual editor. These images are NOT acceptable!&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# There is no conclusion presented in this section at all.&lt;br /&gt;
* References&lt;br /&gt;
# The included references have NOT been used anywhere in the Wiki. Add references for sentences that are not common knowledge and please link them appropriately with the text in Wiki. If the figures used here were not original works, you must also cite them. &lt;br /&gt;
# There are many papers on this topic. A simple Google (Scholar) search could provide you with sufficient references to cite. &lt;br /&gt;
# Many important references of this topic are missing.&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
==[[Stochastic programming|Stochastic Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell IDs&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
# This section only includes two sentences on Stochastic programming (SP), while the rest gives examples of uncertainty. Please discuss the need for SP in the presence of uncertainty. Also, discussion on robust optimization and its limitations should be removed since it is out of place.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please avoid direct inline linkbacks to Wikipedia.&lt;br /&gt;
# The symbol “xi” in the methodology subsection should be explained.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Copying a numerical example &amp;quot;entirely&amp;quot; from a textbook is inappropriate. Your team should come up with a &amp;quot;numerical&amp;quot; case.&lt;br /&gt;
# No specific application context is needed for a numerical example.&lt;br /&gt;
# The inline notations (`x1`, `s1`) should also be typed using LaTex.&lt;br /&gt;
# Label all tables with a table number for better readability. &lt;br /&gt;
# Properly format the solution table with the label attached rather than the following sentence. The solution table looks different from the others, please fix this for consistency. &lt;br /&gt;
* A section to discuss and/or illustrate the applications;&lt;br /&gt;
# I suggest eliminating citing the last name of the first author (i.e. Zhou et al.)&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# URLs of some citations are not properly formatted (not showing the hyperlinks).&lt;br /&gt;
&lt;br /&gt;
== [[Exponential transformation|Exponential Transformation]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction.&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Last sentence with 51 words is hard to read. &lt;br /&gt;
# Second Sentence: please change the word “they” as it could make the meaning ambiguous&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
# If you use abbreviations, please introduce them (e.g. NLP,MINLP)&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please explain the transformation in words along with equations&lt;br /&gt;
# Terms like posynomial should be described in detail.&lt;br /&gt;
# Please move the numerical example to the section below&lt;br /&gt;
# The “(eq 1)” is not needed here.&lt;br /&gt;
# Please expand this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the third equation of the numerical example, it is confusing to have coefficients after numbers. Some readers may read it as an exponent.&lt;br /&gt;
# Last equation in this section after “further linearization” is incorrect. This equation cannot be further linearized, please fix this.&lt;br /&gt;
# Please explain the steps in the numerical examples in detail. The step-by-step solution should be provided. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Missing part of text: “Proof of convexity of with positive definite test of Hessian…”&lt;br /&gt;
# Applications are not numerical examples. Please refer to this link for example of applications: [[Duality|https://optimization.cbe.cornell.edu/index.php?title=Duality]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
# The section current applications is redundant&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
# Under current applications, do not just use a hyperlink to describe an application. Actually describe it. And properly inline citation style should be used instead of the hyperlink. &lt;br /&gt;
# The convexification application of MINLP can be further simplified for binary variables. Please refer to the lecture slides for more information.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references by using this as Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
&lt;br /&gt;
== [[Sparse Reconstruction with Compressed Sensing|Sparse reconstruction with Compressed Sensing]] ==&lt;br /&gt;
This Wiki needs a significant rewrite. Please go through the comments for details.&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction section should include information about the problem and its implications presented briefly. Please use full sentences to write this Wiki. You may use tools like Grammarly to check sentence formation and grammar.&lt;br /&gt;
# This section includes several typos like “sub modual”. Please fix them throughout the wiki and delete them if not required.&lt;br /&gt;
# Many abbreviations are used before previously defining them. Please define these abbreviations before using them in the text.&lt;br /&gt;
# This section is incomprehensible in its current form. Please rewrite with proper comprehension.&lt;br /&gt;
# Equations and math symbols need proper reformatting. The current version reads like text (along with equations) copy-pasted from a specific source. All mathematical symbols and equations should be formatted via LaTex - this is a learning objective of the Wiki assignment. You can find some useful links on converting your equations/symbols into LaTex code here: (https://optimization.cbe.cornell.edu/index.php?title=Help:Contents).&lt;br /&gt;
# Try to place the figure at the top of the Wiki between the main text.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# I suggest the use of more formal abstract illustrations. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Equations and symbols need proper reformatting.&lt;br /&gt;
# Lemmas and theorems are not expected for this Wiki. Sparse reconstruction is a straightforward concept but is unnecessarily complicated here. Please refer to other Wiki examples to get an idea of what the Wiki should convey.&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Numerical example is missing.&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion section is missing.&lt;br /&gt;
* References&lt;br /&gt;
# The current reference list is not correctly formatted. References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Portfolio optimization|Portfolio Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell id&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introductory sentence should be rephrased. The action of minimizing the risks does not inherently maximize the gains, rather PO aims to maximize gains whilst minimizing risks. &lt;br /&gt;
# Amount of whitespace can be reduced by changing the orientation of Figure 1 and the sentences in this section.&lt;br /&gt;
# Define terms such as risk, return, portfolio, etc., when you introduce them. Assume that the reader may not know much about finance. This goes for all other sections as well. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# A brief mention of modern portfolio theory (i.e.. Markowitz) would be appropriate in this section. &lt;br /&gt;
# Several grammatical errors here involving sentence structure and clarity. Some questionable semantics (e.g., “The portfolio optimization mainly assumes two directions.”) and syntax (phrases such as “.. is as follows” should be followed by a colon). Misuse of commas and missing commas in this section. Two sentences introducing E(rp) and w should be combined into one.&lt;br /&gt;
# Use LaTex to distinguish variables written within a sentence, such as m and n. &lt;br /&gt;
# Rephrase “Cut the relevant information and conditions in the portfolio optimization, as well as the final requirements into the relevant variables, constraints and linear functions of the linear programming problem.”&lt;br /&gt;
# An explanation of a few common constraints would be helpful, rather than just including a table. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Solving the numerical example by GAMS is inappropriate. Please provide detailed step-by-step calculation results.&lt;br /&gt;
# All tables need to be labeled.&lt;br /&gt;
# Include figure number in label for consistency. &lt;br /&gt;
# Fix misspelling “dolling decision variables”. &lt;br /&gt;
# Use LaTex for all variables, equations, and constraints here.&lt;br /&gt;
# Example 2 table is hard to read, so making it bigger would help. &lt;br /&gt;
# Remove the “Using excel as the solver” part from the sentence before the solution discussion. &lt;br /&gt;
# Some grammatical errors here (phrases such as “.. is as follows” should be followed by a colon). &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Rephrase “Portfolio optimization can be used to screen investment projects that meet investors, rationally allocate investment amounts, etc.”&lt;br /&gt;
# Not sure “relevant” is the correct word choice here. &lt;br /&gt;
# You need more specific examples with the utility of portfolio optimization, this section is quite general as is. Some more detail and focus on real-world applications in the financial industry that relate to retirement planning, financial security, economic stability, etc., would be helpful. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Need some commas here.&lt;br /&gt;
# The sentence “Linear programming has been around since the 1940’s and has such a wide base of applications” is not necessary. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove white space between end of sentences and reference numbers.&lt;br /&gt;
&lt;br /&gt;
== [[Chance-constraint method|Chance constraint method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please consider correcting a few grammatical errors: “pre-planned for”, “god”, “certain levels of feasibility is guaranteed in what are”, and “Performance of a system”&lt;br /&gt;
# In “Chance-constraint”, it is capitalized randomly throughout the introduction. Please correct.   &lt;br /&gt;
# Please use technical language to briefly introduce chance-constrained programming. Words like “acts of god”, “cost of doing business” are not appropriate for a  technical Wiki.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Xi is an uncertainty/randomness variable. It is better to use clear language. &lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others.&lt;br /&gt;
# Theory is insufficient. Please expand and explain different approaches. &lt;br /&gt;
# Please add pros and cons explicitly as a list. &lt;br /&gt;
# Explain the physical meaning for examples of chance constraints along with all the notations used.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please remove this example as it is directly from this book. The example should be purely numerical without any background.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others. &lt;br /&gt;
# Please change the table format so as not to confuse the reader. &lt;br /&gt;
# Multiple instances of [Chart to be added] are missing.&lt;br /&gt;
# Example is incomplete. &lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please connect several grammatical and spelling errors: “real life application”, Energy creation, particularly in renewable sources, have high variabilities”, and others&lt;br /&gt;
# “Zhao, Xue, Cao, and Zhang”. No need to list all authors within the article. Provide a reference is sufficient. If authors must be mentioned, (Zhao et al.) should be ok.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Uniqueness and universality earlier are not clear to me. If they are not discussed earlier in the application, it would be better not to introduce new discussions in the conclusion.&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
==  [[Bayesian Optimization]] ==&lt;br /&gt;
* Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor on the section titles.&lt;br /&gt;
* Contents: Subheadings for EI and the algorithm should not be bolded, Random words should not be capitalized.&lt;br /&gt;
* Author list: Remove cornell ID, Please check names&lt;br /&gt;
* Introduction&lt;br /&gt;
# The introduction is too general and not substantial enough. For example, simply saying BayesOpt is useful when the objective function is unknown obscures exactly HOW it is useful (namely, computational efficiency in applications where ground truth sampling is expensive). Discussion on applications should be moved to a separate section.&lt;br /&gt;
# Machine learning rarely includes black-box functions to be optimized. Bayesian optimization is almost never used for optimizing ML loss functions but can instead be used for hyperparameter optimization. Please update such claims in this section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Captions need reformatting.&lt;br /&gt;
# Consider italicizing keywords rather than bolding.&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Discussion on acquisition functions should include comparisons, tradeoffs, and reasons to use one over the other. Should also note that expected improvement is the most widely used in practice, and explain.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Please write equations in the Wiki instead of attaching images for equations.&lt;br /&gt;
# Acquisition function figure could be made larger and clearer to improve readability.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any references to functions or methods in code ‘e.g. fmin’ should be properly formatted as code-stylized text.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Avoid including a figure of the code for this example and explicitly describe the steps to the modeling and solution process instead. &lt;br /&gt;
# Avoid pronouns such as “our” and “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please do not use brackets to enclose lists.&lt;br /&gt;
# Some claims here should be supported by references. Please cite each source after its sentence. &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to “pop” machine learning blogs where anyone can be an author. (e.g. towardsdatascience)&lt;br /&gt;
# All references are URLs. Please cite publications and literature.&lt;br /&gt;
# A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
Notes on grammar: Needs some work. Several instances where colons are inappropriately inserted mid sentence or in subheadings. Explanations are not terse. Several instances of switching between personal and impersonal style of writing, which is distracting.&lt;br /&gt;
&lt;br /&gt;
== [[Conjugate gradient methods]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Introduction&lt;br /&gt;
# All inline notations (e.g., `x`, `A`) should be typed using LaTex.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
# Is Gauss-Newton no longer referenced?&lt;br /&gt;
# Theorems listed in the first section should be accompanied with high level explanation, not just a list of the theorems themselves. The page should read like an article, with proper flow.&lt;br /&gt;
# Please indent equation blocks.&lt;br /&gt;
# Please properly format pseudocode.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Steps should be accompanied with explanation, or reference to the corresponding step in the pseudocode.&lt;br /&gt;
# Please properly format in a more organized manner, aligning equations appropriately and demarcating steps appropriately.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
# Consider including 2 additional examples of applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Consider adding future research directions&lt;br /&gt;
* References&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Too few references.&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Geometric programming|Geometric Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Examples of applications in this section use the same reference. Please cite their individual sources.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The symbol denoting the domain in the definition of a monomial is unclear. Please clarify it or fix this if it is incorrect.&lt;br /&gt;
# Definition of posynomial refers to section 2.1 which is missing from the Wiki (sections are not numbered in the main text).&lt;br /&gt;
# In the generalized posynomial subsection, bullet points do not tell us why h(x) is posynomial. Either provide reasons or simply state that h(x) is posynomial. Also explain why h3 is a generalized posynomial.&lt;br /&gt;
# Additional theory on the feasibility analysis could be provided in this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the transformation example, the last two constraints could also be simplified by applying a natural logarithm on both sides. Please update them as well.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The figure in this section needs to be labeled. &lt;br /&gt;
# The figure needs to be resized and perhaps aligned to the center.  &lt;br /&gt;
* A conclusion section:&lt;br /&gt;
# Please avoid vague language such as: “This makes”.&lt;br /&gt;
# Please avoid opinionated statements: “one of the best ways”.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Adam]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Some grammatical errors here, mostly related to the need for commas in certain places (e.g., “Before Adam..”).&lt;br /&gt;
# Some minor errors with parts of speech throughout the section, need to revisit phrases such as “which has broader scope in future for”, etc. &lt;br /&gt;
# Try splitting up some of the longer sentences in this section, a couple are hard to read.&lt;br /&gt;
# Avoid definitive statements about Adam being the best or always better solver, as this is simply not true (the choice of the “best” optimizer is setting-dependent). Use language such as “Research has shown that Adam has demonstrated superior experimental performance over..” and then cite academic references to back this claim. &lt;br /&gt;
# What does adam stand for? Introduction is insufficient. Please expand. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Revise grammar here, noticing some missing commas and uncapitalized word after period.&lt;br /&gt;
# Rephrase “second one is to update the old position with the updated position”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section, and actual subscripts instead of “m_t”, etc. &lt;br /&gt;
# Avoid inserting inline citations after words like “According to..” or “This article..” as it is a bit informal. This could be rephrased or changed to something like “According to author,^[2] …” with author name inserted. &lt;br /&gt;
# Remove white space before the period in RMSP discussion.&lt;br /&gt;
# Please provide a pseudocode. &lt;br /&gt;
# Please use list the two methods here “Adam is a combination of two gradient descent methods which are explained below”&lt;br /&gt;
# Please expand the theory section significantly. Theoretical convergence properties should be discussed, even if briefly.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Same comment as before, consider replacing inline citations after words like “According to..”. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to blogs and use peer-reviewed academic references instead. &lt;br /&gt;
# Too few references.&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[A-star algorithm|a* algorithm]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor and avoid HTML formatting on the section titles.&lt;br /&gt;
* An introduction of the topic:&lt;br /&gt;
# Weird spacing between paragraphs. Please fix this issue.&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. &lt;br /&gt;
# Please consider correcting a few grammatical errors: “Optimal path”, “cross country”, missing period at end of first paragraph, other random capitalizations, etc.&lt;br /&gt;
# There are no citations in the introduction. Please cite every source.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add the mathematical description of the algorithm.&lt;br /&gt;
# Reference style varies in sentences. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please fix grammatical and spelling errors as (“from current position to the goal”, “There are a lot of discussions”, etc). Also, many hyphens are missing as “non playable”.&lt;br /&gt;
# In algorithms, it is a standard to add high-level description (i.e. pseudocode or flowchart). Please incorporate it. &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section (e.g., “f(n)...”, “h(n)..”, etc.). This goes for other sections as well.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The numerical example does not show the full computations the algorithm performs. Please show the computation on a smaller example.&lt;br /&gt;
# Instead of writing things like “The above image..”, label each figure and use the figure number to refer to it in text. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# No references in the applications. Please cite every source &lt;br /&gt;
# Preferably, add at least an additional application.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion should summarize descriptions. Please modify it to provide a summary.  &lt;br /&gt;
# Please pay attention to the length and structure of sentences here and in the full page. First sentence is hard to read.&lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format and are not linked correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Incorrect reference style. Please follow the example and use the template.&lt;br /&gt;
&lt;br /&gt;
== [[Job shop scheduling|Job-Shop Scheduling Problem]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The current introduction to the jobshop scheduling problem has only two sentences in addition to the parameter description. Introduction typically contains information about the problem, its importance in the real-world, and some information about the solution techniques and their types to solve the problem. Please add some information that covers the above.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# It is unclear whether the assumptions stated in this section are required to apply the following solution techniques. Please clarify the same. Also use complete sentences to state them.&lt;br /&gt;
# The branch and bounds method described in this section only discusses the solution technique for problems with one machines. However, branch and bound is a general technique that can be applied to any MILP problems with varying scales. Please update the “methods” section to be as general as possible.&lt;br /&gt;
# Since this Wiki focuses on jobshop scheduling, at least two methods are expected. Branch and bound is a general MILP technique, so, it is recommended to add a tailored technique that can only solve specific jobshop scheduling problems. Solving the numerical example with this technique is not necessary.&lt;br /&gt;
# Reference to the branch and bound technique described in this section is a “youtube” video. Please add references in literature that describe this method in detail. The method used in this video is highly tailored for a single machine application. This is also an incorrect way to cite a reference. Please keep this section as general as possible.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section and all other sections as well.&lt;br /&gt;
# Check grammar in this section. For example, phrases like “are as follows” need to be followed by a colon and not a period. &lt;br /&gt;
# Consider rewriting the assumptions as a list in this section. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The example used in this section is exactly the same as the one in the youtube video. Please use a modification of this example or choose another example/method to demonstrate the solution technique.&lt;br /&gt;
# The figure in this section is not numbered when all others are. Relabel this figure for consistency and its number to refer to it in-text.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section should only focus on real-world applications of the jobshop scheduling problem. But currently, this section includes additional information on solution techniques/complexity that is appropriate for the Introduction section. Please discuss the applications of the problem in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# The meaning of  “Operations applications” is unclear. Please explain or update if necessary.&lt;br /&gt;
# The current conclusion section does not properly summarize the problem. Please refer to other Wiki examples for an idea to update the section accordingly.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Please reference media sources like reference 5 appropriately.&lt;br /&gt;
# A simple Google Scholar search would give you many &amp;quot;formal&amp;quot; references.&lt;br /&gt;
&lt;br /&gt;
== [[Optimization in game theory]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: remove cornell IDs. &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Why only a subsection on &amp;quot;Nash Equilibrium&amp;quot; is included in &amp;quot;Theory&amp;quot; section? Please re-format.&lt;br /&gt;
# Please edit references.&lt;br /&gt;
# Add a mathematical description of the problem and a pseudocode/flowchart for the Lemke-Howson algorithm.  &lt;br /&gt;
# Rephrase “This algorithm utilizes iterated pivoting much like the simplex algorithm used in the simplex algorithm used in linear programming”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please organize the last part in a more readable format. Questions may be in bold and numbered, answers are more direct, etc.&lt;br /&gt;
# Remember to cite all images and tables. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Very good, link the reference and cite all sources. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summarizing especially from theory sentences and avoid long sentences. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Incorrect reference style. Please correct.&lt;br /&gt;
&lt;br /&gt;
== [[Trust-region methods]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
# Remove cornell IDs. Author is also spelled incorrectly. &lt;br /&gt;
# Add the course section.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xk”, “f`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “we”. This goes for all other sections as well.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Organization of ideas in this section needs work.&lt;br /&gt;
# You have not defined explicitly why the Cauchy point is important to compute beyond a vague allusion to performance improvements, which is also wrong (it is useful because of its guarantees for convergence, not performance) It is also misspelled.&lt;br /&gt;
# Each approach should have accompanying explanation and motivation for why it is being discussed. It is not enough to outline the algorithm.&lt;br /&gt;
# Please make sure symbols are properly subscripted and superscripted (e.g. “pk” should be “p_k”&lt;br /&gt;
# Please format the algorithm in proper algorithmic pseudocode format.&lt;br /&gt;
# Little to no discussion on global convergence guarantees&lt;br /&gt;
# Please include discussion about the advantages and disadvantages of the algorithm&lt;br /&gt;
# Fix typo “couchy point”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any code functions (uminfunc) should have proper text formatting.&lt;br /&gt;
# The graph needs a better caption explaining how the axes are labeled and what data points are being shown.&lt;br /&gt;
# Please increase the quality of the figure. It is hard to see the red line. &lt;br /&gt;
# Add citation to “The Rosenbrock function is a non-convex function, introduced by Howard H. Rosenbrock in 1960, which is often used as a performance test problem for optimization algorithms.”&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The content in this section as it is currently does NOT describe applications, but rather different approaches within the trust region methodology. Please provide specific applications (e.g. TRPO in reinforcement learning).&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summary, future research directions for example is a good start.&lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style.&lt;br /&gt;
# Please consider having the references as this Wiki template, &amp;lt;nowiki&amp;gt;https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
*There are numerous misspellings, grammatical errors, and incorrect claims. Please fix these.&lt;br /&gt;
&lt;br /&gt;
== [[Momentum]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Apart from an explanation on momentum, it is necessary to briefly point out the limitations of SGD and why momentum could help with these limitations. Please update it accordingly.&lt;br /&gt;
# Remove bold on “Momentum”.&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Equation formatting is very poor and should be formalized.&lt;br /&gt;
# It is important to use technical language for this Wiki. Although a layman’s explanation is appreciated, it would be better to skip using words like “zig zagging”. Try to explain all concepts in a technical language with few simplifications but NOT vice versa.&lt;br /&gt;
# The definition of the update rule for SGD with momentum looks incorrect, specifically the first expression. Please fix it and also explain all the parameters used.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “W”, “V`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “you”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please try to label the plots that explains what each line color means.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please use correct terminology like “optimizing non-convex functions” and not “training non-convex models”.&lt;br /&gt;
# Adam, Adadelta, and RMSprop are variants of SGD that already use momentum. Please double check the writing and update if necessary.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please refrain from using words like “zig zag” effects.&lt;br /&gt;
* References&lt;br /&gt;
# Almost all references used are URLs. Please try to add journal/conference articles or books for references, instead of directly citing the URLs.&lt;br /&gt;
&lt;br /&gt;
== [[Stochastic dynamic programming|Stochastic Dynamic programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions &lt;br /&gt;
# Remove the grey box background of equations.&lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Outer-approximation (OA)|Outer-approximation]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic &lt;br /&gt;
# See formatting guideline below&lt;br /&gt;
# Avoid opinionated statements such as “MINLP problems are usually the hardest to solve”.&lt;br /&gt;
# Rearrange the text such that the MINLP formulation is in the theory section and keep the introduction in words only.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Consider left aligning equations and optimization problem formulations by the “=”. See [[Stochastic programming|https://optimization.cbe.cornell.edu/index.php?title=Stochastic_programming]] for an example&lt;br /&gt;
# The sentence “The Outer-Approximation (OA) algorithm was first proposed by Duran and and Grossmann in 1986 to solve MINLP problems.” needs a reference. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# “Minimize” and “subject to” should be “min” and “s.t.” in MathType&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Does not explicitly point out why OA is applicable (and/or preferred) in these applications, rather than other MINLP approaches (show that the problem formulations are amenable to a solution approach through OA)&lt;br /&gt;
# The sentence “... an active research area and there exists a vast number of applications in fields such as engineering, computational chemistry, and finance.” needs references. &lt;br /&gt;
# Place GAMS code in a single code box or remove it.&lt;br /&gt;
# Consider reformatting to make steps more readable. Inserting spaces and breaking down steps would help. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Too short. Consider discussion on future research direction and discussion on uncertainty&lt;br /&gt;
# Please review abbreviations throughout the page. Why is MINLP redefined here? “Outer-Approximation is a well known efficient approach for solving convex mixed-integer nonlinear programs (MINLP)”. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove &amp;quot;Template:Reflist&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== [[Unit commitment problem]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction and avoid discussions of examples or specific applications in this section.&lt;br /&gt;
# The sentence “Nonlinear, Non-convex programming optimization problem.” doesn’t make sense by itself and Non-convex shouldn’t be capitalized.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Figure/image format should be revised to better display the content.&lt;br /&gt;
# Uppercase characters are used randomly (e.g., “non-convex transmission Constraints”) . Please follow correct language conventions for sentence structure.&lt;br /&gt;
# Avoid inserting inline citations after words like “written in matrix form as equation [3]..” or “presented in [3]...” as it is a bit informal when you don’t explicitly name the subject. Also these two sentences are grammatically incorrect and appear to be missing an ending period and comma, respectively. &lt;br /&gt;
# Don’t say “written in matrix form as equation..” and just cite the reference, actually write out the equation. &lt;br /&gt;
# Properly label the figure in this section with a figure number and improve visibility by making it larger. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Label the figures in this section properly with figure numbers.&lt;br /&gt;
# Fix typo “while minimize” to “while minimizing”. &lt;br /&gt;
# Avoid pronouns such as “we”. &lt;br /&gt;
# Use the equation editor when typing equations. &lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# I suggest changing the order of the subtitles here. For example, Single-Period Unit Commitment. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Frank-Wolfe]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# I suggest highlighting disadvantages along with advantages. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# “[n x 1] matrix” please use the equation editor to express mathematical descriptions and symbols (p,b, etc)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please show at least a few iterations. Even for smaller examples if needed. Report the final solution. &lt;br /&gt;
# Please use the LaTex code or equation editor for min and include s.t., etc.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. For your example, please explicitly state that the derivative is taken etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications: &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Same as the introduction. Pros and cons should be evaluated together!&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Line search methods|Line Search Method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Expand the introduction and avoid discussion on some of the specific steps in the solution process. &lt;br /&gt;
# Provide references here. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The phrase “are as follows” in the steepest descent method discussion needs to be followed by a colon. &lt;br /&gt;
# Rephrase “has a nice convergence theory” and cite a reference for this claim.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Add citation after “.. proposed by Phillip Wolfe in 1969.”&lt;br /&gt;
# Figure 1 is between two sections. Please fix this issue. &lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# Add some space between iterations or subsection break&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# Too few references in this section. &lt;br /&gt;
# Last paragraph makes some claims without references. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Piecewise linear approximation|Piecewise Linear Approximation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The content of this section is good, but there are some issues with sentence clarity and some other grammatical errors. Please revisit this section and make changes accordingly. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Fix typo “to force the x’ values become associated with”. &lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Some of these longer sentences are hard to read. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Expand the conclusion section to be longer than one sentence. The conclusion section to include a brief summary of what was discussed above, an emphasis on it’s significance, and a brief discussion of future extensions and research direction if applicable.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to sources when possible.&lt;br /&gt;
&lt;br /&gt;
== [[Mathematical programming with equilibrium constraints|Mathematical Programming with Equilibrium constraints]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes several terms like variational inequalities, constraint qualifications that were not discussed in the class. Please add a sentence to explain them before using them.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The meaning of parameter vector x is unclear. Please add more information or update if necessary.&lt;br /&gt;
# Equations and symbols in the PIPA subsection are not formatted correctly. Please use the same formatting for all equations, so they read as mathematical equations and not text. This goes for all other sections as well.&lt;br /&gt;
# Use equations instead of images to represent math programs and equations in the Implicit Descent and SQP subsection.&lt;br /&gt;
# Apart from the steps for each solution technique, please also add a few sentences that describe each method.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please define the terms like NCP, MP before abbreviating them. Also try not to unnecessarily abbreviate simple terms.&lt;br /&gt;
# Equations should be typed by LaTex. Images for equations are unacceptable.&lt;br /&gt;
# GAMS code is strongly discouraged. Please solve the problem &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The selected numerical example is fine but is directly solved with the MPEC solver in GAMS. Try to solve it manually like the homework/in-class problems step by step using the steps described in the previous section by choosing any of the methods.&lt;br /&gt;
# Avoid using figures in the equations (subject to etc)&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Add references to “power management, highway pricing, chemical process engineering, and traffic planning.”&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Wing shape optimization|Wing shape Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction is missing several references (e.g., “software packages like computational fluid dynamics..”, sentences containing things that aren’t common knowledge, performance claims, etc.)&lt;br /&gt;
# Avoid discussion involving finer details of subject methods in this section. &lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. Same applies to box of content!&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Properly cite the CFD package, don’t just include a link. &lt;br /&gt;
# Properly label the figure with a figure number.&lt;br /&gt;
# Consider removing white space between isolated sentences to improve readability. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# If you’ve already defined an abbreviation (CFD), there is no need to define it again. Just use the abbreviation.&lt;br /&gt;
# Avoid pronouns such as “we” or “they”.&lt;br /&gt;
# Phrases like “under the following” need to be followed by a colon.&lt;br /&gt;
# Properly label the figure with a figure number and consider making them larger to improve visibility. Call the reader&#039;s attention to the figures in text by referencing the figure number.&lt;br /&gt;
# “As seen in the video below” is stated yet there are only images present and it may be initially unclear to the reader which figure is being referenced here. &lt;br /&gt;
# Avoid inserting inline citations like “[4] introduces an..”  as it is a bit informal when you don’t explicitly name the subject.&lt;br /&gt;
# Don’t just cite the reference when discussing the problem formulation, explicitly write the model formulation and solution process using LaTex or equation visual editor.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Some characters are randomly capitalized in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# These variables should be defined before the conclusion section, they are out of place here. Also, please use normal text when explaining variables except for the variable symbol. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Interior-point method for NLP|Interior point method for NLP]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Primal-Dual formulation and comparison to the Barrier Method is not discussed.&lt;br /&gt;
# Include brief discussion about big O convergence rates.&lt;br /&gt;
# Need discussion about the concept of “central path” and the notion of self concordance&lt;br /&gt;
# Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Graphs and images are incorrectly formatted to the page. Consider proper alignment with respect to the text body.&lt;br /&gt;
# Use explicitly typed Latex equations instead of images to represent math programs and equations.&lt;br /&gt;
# Fix typo “optimisation”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xi ”, “μ”, etc.).&lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# There are formatting issues with figures 2,3. Please make sure to embed them within their respective sections. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section &lt;br /&gt;
# Minor character code typos in the conclusion.&lt;br /&gt;
# Also, please add more discussion in this section. Future research directions is a good start.&lt;br /&gt;
# There is a box &amp;quot;􏰐&amp;quot;&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[AdaGrad|Adagrad]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Include discussion on its variants (most important is AdaDelta).&lt;br /&gt;
# Include disadvantages of Adagrad, since this provides motivation for the discussion on the variants and improvements of Adagrad&lt;br /&gt;
# Include comparisons to other popular optimizers (particularly important is comparisons to regular SGD and Adam)&lt;br /&gt;
# Different convergence rates are possible depending on the setting where Adagrad is used, but this is not mentioned on the page currently. As such the regret bound section should be more thoroughly explained.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the first sentence, “..take the following numerical example” should be followed by a colon. &lt;br /&gt;
# Fix typo “trayectory”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is too short; include specific applications in which input features are sparse and Adagrad excels.&lt;br /&gt;
# Add reference to the claim “Mainly, it is a good choice for deep learning models with sparse input features”.&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References &lt;br /&gt;
&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources (even if the base algorithm itself comes from a singular paper)&lt;br /&gt;
&lt;br /&gt;
== [[McCormick envelopes|McCormick Envelopes]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: OK but I suggest removing NetID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# First sentence is hard to read. Please consider keeping sentences below 25-30 words. &lt;br /&gt;
# No references provided. Please cite all sources. &lt;br /&gt;
# Figure 1 is provided in the middle between two sections. Please include in the introduction section. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# When using mathematical expressions and symbols, please use the equation editor. (e.g., x*y, exy + y, sin (x+y) - x2)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution. &lt;br /&gt;
# For the sample GAMS code, please place it in a code box&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each. &lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section: &lt;br /&gt;
* References&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4775</id>
		<title>2021 Cornell Optimization Open Textbook Feedback</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4775"/>
		<updated>2021-12-05T19:42:38Z</updated>

		<summary type="html">&lt;p&gt;Asa273: /* Lagrangian duality */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[Lagrangean duality|Lagrangian duality]] ==&lt;br /&gt;
* Author list, sections and TOC&lt;br /&gt;
# Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor and avoid HTML formatting on the section titles.&lt;br /&gt;
# Remove cornell ID from Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes sentences on constructing the dual problem and is referred to as Lagrangian relaxation (LR). This is incorrect, please fix the definition of LR.&lt;br /&gt;
# Definitions of LR and its relation to duality should be double checked and re-written.&lt;br /&gt;
# Only one reference is present in this section. Please add more relevant references by expanding this section.&lt;br /&gt;
# Consider merging the “introduction” and “history” sections.&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The Lagrangian variables associated with equality constraints h(x) are unbounded but the Lagrangian dual problem states them as non-negative. Please fix the same.&lt;br /&gt;
# Also to construct a dual, we do not change minimization to maximization directly. We observed such things in the examples in lecture notes due to simplification. The lagrangian dual problem would be minimize (,).&lt;br /&gt;
# Adding to the previous point, the Lagrangian is a lower bound on the original objective; the solution to the primal and dual or only equivalent if the duality gap is 0. You reference this in one section, but this is after your statement “Hence, solving the dual problem, which is a function of the Lagrangian multipliers (𝜆*) yields the same solution as the primal problem, which is a function of the original variables (x*). “. Please clarify the specific conditions that must hold for the solution of the dual to be equal to the primal’s.&lt;br /&gt;
# You refer to the “Complementary Slackness Theorem”, but don’t actually write the mathematical representation of complementary slackness. Please fix this. Also consider including the derivation of the complementary slackness condition, as it is both easy and short. Boyd is a good reference for this.&lt;br /&gt;
# Last step of the “process” subsection also needs updating according to the previous comments.&lt;br /&gt;
# The inline notations should also be typed using LaTex.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Only one dual variable is associated with each constraint. The numerical example uses two for the first and second constraint which is unnecessary. Please update it accordingly for both constraints. This particular example will only have two dual variables instead of the five dual variables used currently.&lt;br /&gt;
# All consecutive steps need to be updated since the dual variables would be updated.&lt;br /&gt;
# After substitution the nonlinear function should be further simplified. The current expression reads like a highly nonlinear function but can be easily simplified.&lt;br /&gt;
# Similar to the comments in the methodology section, inverting minimize to maximize is incorrect. Please update the dual objective function and domain of dual variables accordingly.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Bullet points could be used to state the last four real-world examples that explain the physical meaning of the primal and dual problems.&lt;br /&gt;
# Add references for the last set of applications. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# This section contains a few typos. Please fix the same.&lt;br /&gt;
* References&lt;br /&gt;
# Some citations&#039; hyperlinks are displaying.&lt;br /&gt;
&lt;br /&gt;
== [[Disjunctive inequalities|Disjunctive Inequalities]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section and semester&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# No citations are present in this section.&lt;br /&gt;
# “mixed-integer programming (MIP)” should be used instead of “multiple integer programming (MIP)”. Please fix this error.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The abbreviation MILP is not previously defined. Please fix this issue.&lt;br /&gt;
# You consistently use the negative sign instead of the NOT operator for y (-y instead of ¬y). &lt;br /&gt;
# Some inconsistencies with the spacing of variables, constraints, etc., under the “General” section that need to be fixed.&lt;br /&gt;
# Typo in “This is shown below by M1, M2, y1, and y1:” where y1 needs to be changed to y2. Why use two different Big-M variables here? Elsewhere in the Wiki you only use one so this could lead to confusion with a general audience. Also if this was taken from the lecture notes then it needs to be cited.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please reformulate and solve a complete numerical example rather than just reformulating a general example. Demonstrate the use of Big-M and Convex Hull formulation in an optimization problem that provides details such as individual steps in the problem solving process and final results.&lt;br /&gt;
# Add space between vee (V) operator and brackets in first line of Latex&lt;br /&gt;
# Please format variables correctly, for example, use &amp;lt;math&amp;gt;x_1&amp;lt;/math&amp;gt; instead of x1.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please format the equations appropriately either by using latex code or the visual editor. These images are NOT acceptable!&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# There is no conclusion presented in this section at all.&lt;br /&gt;
* References&lt;br /&gt;
# The included references have NOT been used anywhere in the Wiki. Add references for sentences that are not common knowledge and please link them appropriately with the text in Wiki. If the figures used here were not original works, you must also cite them. &lt;br /&gt;
# There are many papers on this topic. A simple Google (Scholar) search could provide you with sufficient references to cite. &lt;br /&gt;
# Many important references of this topic are missing.&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
==[[Stochastic programming|Stochastic Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell IDs&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
# This section only includes two sentences on Stochastic programming (SP), while the rest gives examples of uncertainty. Please discuss the need for SP in the presence of uncertainty. Also, discussion on robust optimization and its limitations should be removed since it is out of place.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please avoid direct inline linkbacks to Wikipedia.&lt;br /&gt;
# The symbol “xi” in the methodology subsection should be explained.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Copying a numerical example &amp;quot;entirely&amp;quot; from a textbook is inappropriate. Your team should come up with a &amp;quot;numerical&amp;quot; case.&lt;br /&gt;
# No specific application context is needed for a numerical example.&lt;br /&gt;
# The inline notations (`x1`, `s1`) should also be typed using LaTex.&lt;br /&gt;
# Label all tables with a table number for better readability. &lt;br /&gt;
# Properly format the solution table with the label attached rather than the following sentence. The solution table looks different from the others, please fix this for consistency. &lt;br /&gt;
* A section to discuss and/or illustrate the applications;&lt;br /&gt;
# I suggest eliminating citing the last name of the first author (i.e. Zhou et al.)&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# URLs of some citations are not properly formatted (not showing the hyperlinks).&lt;br /&gt;
&lt;br /&gt;
== [[Exponential transformation|Exponential Transformation]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction.&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Last sentence with 51 words is hard to read. &lt;br /&gt;
# Second Sentence: please change the word “they” as it could make the meaning ambiguous&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
# If you use abbreviations, please introduce them (e.g. NLP,MINLP)&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please explain the transformation in words along with equations&lt;br /&gt;
# Terms like posynomial should be described in detail.&lt;br /&gt;
# Please move the numerical example to the section below&lt;br /&gt;
# The “(eq 1)” is not needed here.&lt;br /&gt;
# Please expand this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the third equation of the numerical example, it is confusing to have coefficients after numbers. Some readers may read it as an exponent.&lt;br /&gt;
# Last equation in this section after “further linearization” is incorrect. This equation cannot be further linearized, please fix this.&lt;br /&gt;
# Please explain the steps in the numerical examples in detail. The step-by-step solution should be provided. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Missing part of text: “Proof of convexity of with positive definite test of Hessian…”&lt;br /&gt;
# Applications are not numerical examples. Please refer to this link for example of applications: [[Duality|https://optimization.cbe.cornell.edu/index.php?title=Duality]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
# The section current applications is redundant&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
# Under current applications, do not just use a hyperlink to describe an application. Actually describe it. And properly inline citation style should be used instead of the hyperlink. &lt;br /&gt;
# The convexification application of MINLP can be further simplified for binary variables. Please refer to the lecture slides for more information.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references by using this as Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
&lt;br /&gt;
== [[Sparse Reconstruction with Compressed Sensing|Sparse reconstruction with Compressed Sensing]] ==&lt;br /&gt;
This Wiki needs a significant rewrite. Please go through the comments for details.&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction section should include information about the problem and its implications presented briefly. Please use full sentences to write this Wiki. You may use tools like Grammarly to check sentence formation and grammar.&lt;br /&gt;
# This section includes several typos like “sub modual”. Please fix them throughout the wiki and delete them if not required.&lt;br /&gt;
# Many abbreviations are used before previously defining them. Please define these abbreviations before using them in the text.&lt;br /&gt;
# This section is incomprehensible in its current form. Please rewrite with proper comprehension.&lt;br /&gt;
# Equations and math symbols need proper reformatting. The current version reads like text (along with equations) copy-pasted from a specific source.&lt;br /&gt;
# Try to place the figure at the top of the Wiki between the main text.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# I suggest the use of more formal abstract illustrations. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Equations and symbols need proper reformatting.&lt;br /&gt;
# Lemmas and theorems are not expected for this Wiki. Sparse reconstruction is a straightforward concept but is unnecessarily complicated here. Please refer to other Wiki examples to get an idea of what the Wiki should convey.&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Numerical example is missing.&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion section is missing.&lt;br /&gt;
* References&lt;br /&gt;
# The current reference list is not correctly formatted. References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Portfolio optimization|Portfolio Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell id&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introductory sentence should be rephrased. The action of minimizing the risks does not inherently maximize the gains, rather PO aims to maximize gains whilst minimizing risks. &lt;br /&gt;
# Amount of whitespace can be reduced by changing the orientation of Figure 1 and the sentences in this section.&lt;br /&gt;
# Define terms such as risk, return, portfolio, etc., when you introduce them. Assume that the reader may not know much about finance. This goes for all other sections as well. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# A brief mention of modern portfolio theory (i.e.. Markowitz) would be appropriate in this section. &lt;br /&gt;
# Several grammatical errors here involving sentence structure and clarity. Some questionable semantics (e.g., “The portfolio optimization mainly assumes two directions.”) and syntax (phrases such as “.. is as follows” should be followed by a colon). Misuse of commas and missing commas in this section. Two sentences introducing E(rp) and w should be combined into one.&lt;br /&gt;
# Use LaTex to distinguish variables written within a sentence, such as m and n. &lt;br /&gt;
# Rephrase “Cut the relevant information and conditions in the portfolio optimization, as well as the final requirements into the relevant variables, constraints and linear functions of the linear programming problem.”&lt;br /&gt;
# An explanation of a few common constraints would be helpful, rather than just including a table. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Solving the numerical example by GAMS is inappropriate. Please provide detailed step-by-step calculation results.&lt;br /&gt;
# All tables need to be labeled.&lt;br /&gt;
# Include figure number in label for consistency. &lt;br /&gt;
# Fix misspelling “dolling decision variables”. &lt;br /&gt;
# Use LaTex for all variables, equations, and constraints here.&lt;br /&gt;
# Example 2 table is hard to read, so making it bigger would help. &lt;br /&gt;
# Remove the “Using excel as the solver” part from the sentence before the solution discussion. &lt;br /&gt;
# Some grammatical errors here (phrases such as “.. is as follows” should be followed by a colon). &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Rephrase “Portfolio optimization can be used to screen investment projects that meet investors, rationally allocate investment amounts, etc.”&lt;br /&gt;
# Not sure “relevant” is the correct word choice here. &lt;br /&gt;
# You need more specific examples with the utility of portfolio optimization, this section is quite general as is. Some more detail and focus on real-world applications in the financial industry that relate to retirement planning, financial security, economic stability, etc., would be helpful. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Need some commas here.&lt;br /&gt;
# The sentence “Linear programming has been around since the 1940’s and has such a wide base of applications” is not necessary. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove white space between end of sentences and reference numbers.&lt;br /&gt;
&lt;br /&gt;
== [[Chance-constraint method|Chance constraint method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please consider correcting a few grammatical errors: “pre-planned for”, “god”, “certain levels of feasibility is guaranteed in what are”, and “Performance of a system”&lt;br /&gt;
# In “Chance-constraint”, it is capitalized randomly throughout the introduction. Please correct.   &lt;br /&gt;
# Please use technical language to briefly introduce chance-constrained programming. Words like “acts of god”, “cost of doing business” are not appropriate for a  technical Wiki.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Xi is an uncertainty/randomness variable. It is better to use clear language. &lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others.&lt;br /&gt;
# Theory is insufficient. Please expand and explain different approaches. &lt;br /&gt;
# Please add pros and cons explicitly as a list. &lt;br /&gt;
# Explain the physical meaning for examples of chance constraints along with all the notations used.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please remove this example as it is directly from this book. The example should be purely numerical without any background.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others. &lt;br /&gt;
# Please change the table format so as not to confuse the reader. &lt;br /&gt;
# Multiple instances of [Chart to be added] are missing.&lt;br /&gt;
# Example is incomplete. &lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please connect several grammatical and spelling errors: “real life application”, Energy creation, particularly in renewable sources, have high variabilities”, and others&lt;br /&gt;
# “Zhao, Xue, Cao, and Zhang”. No need to list all authors within the article. Provide a reference is sufficient. If authors must be mentioned, (Zhao et al.) should be ok.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Uniqueness and universality earlier are not clear to me. If they are not discussed earlier in the application, it would be better not to introduce new discussions in the conclusion.&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
==  [[Bayesian Optimization]] ==&lt;br /&gt;
* Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor on the section titles.&lt;br /&gt;
* Contents: Subheadings for EI and the algorithm should not be bolded, Random words should not be capitalized.&lt;br /&gt;
* Author list: Remove cornell ID, Please check names&lt;br /&gt;
* Introduction&lt;br /&gt;
# The introduction is too general and not substantial enough. For example, simply saying BayesOpt is useful when the objective function is unknown obscures exactly HOW it is useful (namely, computational efficiency in applications where ground truth sampling is expensive). Discussion on applications should be moved to a separate section.&lt;br /&gt;
# Machine learning rarely includes black-box functions to be optimized. Bayesian optimization is almost never used for optimizing ML loss functions but can instead be used for hyperparameter optimization. Please update such claims in this section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Captions need reformatting.&lt;br /&gt;
# Consider italicizing keywords rather than bolding.&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Discussion on acquisition functions should include comparisons, tradeoffs, and reasons to use one over the other. Should also note that expected improvement is the most widely used in practice, and explain.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Please write equations in the Wiki instead of attaching images for equations.&lt;br /&gt;
# Acquisition function figure could be made larger and clearer to improve readability.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any references to functions or methods in code ‘e.g. fmin’ should be properly formatted as code-stylized text.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Avoid including a figure of the code for this example and explicitly describe the steps to the modeling and solution process instead. &lt;br /&gt;
# Avoid pronouns such as “our” and “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please do not use brackets to enclose lists.&lt;br /&gt;
# Some claims here should be supported by references. Please cite each source after its sentence. &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to “pop” machine learning blogs where anyone can be an author. (e.g. towardsdatascience)&lt;br /&gt;
# All references are URLs. Please cite publications and literature.&lt;br /&gt;
# A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
Notes on grammar: Needs some work. Several instances where colons are inappropriately inserted mid sentence or in subheadings. Explanations are not terse. Several instances of switching between personal and impersonal style of writing, which is distracting.&lt;br /&gt;
&lt;br /&gt;
== [[Conjugate gradient methods]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Introduction&lt;br /&gt;
# All inline notations (e.g., `x`, `A`) should be typed using LaTex.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
# Is Gauss-Newton no longer referenced?&lt;br /&gt;
# Theorems listed in the first section should be accompanied with high level explanation, not just a list of the theorems themselves. The page should read like an article, with proper flow.&lt;br /&gt;
# Please indent equation blocks.&lt;br /&gt;
# Please properly format pseudocode.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Steps should be accompanied with explanation, or reference to the corresponding step in the pseudocode.&lt;br /&gt;
# Please properly format in a more organized manner, aligning equations appropriately and demarcating steps appropriately.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
# Consider including 2 additional examples of applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Consider adding future research directions&lt;br /&gt;
* References&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Too few references.&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Geometric programming|Geometric Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Examples of applications in this section use the same reference. Please cite their individual sources.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The symbol denoting the domain in the definition of a monomial is unclear. Please clarify it or fix this if it is incorrect.&lt;br /&gt;
# Definition of posynomial refers to section 2.1 which is missing from the Wiki (sections are not numbered in the main text).&lt;br /&gt;
# In the generalized posynomial subsection, bullet points do not tell us why h(x) is posynomial. Either provide reasons or simply state that h(x) is posynomial. Also explain why h3 is a generalized posynomial.&lt;br /&gt;
# Additional theory on the feasibility analysis could be provided in this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the transformation example, the last two constraints could also be simplified by applying a natural logarithm on both sides. Please update them as well.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The figure in this section needs to be labeled. &lt;br /&gt;
# The figure needs to be resized and perhaps aligned to the center.  &lt;br /&gt;
* A conclusion section:&lt;br /&gt;
# Please avoid vague language such as: “This makes”.&lt;br /&gt;
# Please avoid opinionated statements: “one of the best ways”.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Adam]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Some grammatical errors here, mostly related to the need for commas in certain places (e.g., “Before Adam..”).&lt;br /&gt;
# Some minor errors with parts of speech throughout the section, need to revisit phrases such as “which has broader scope in future for”, etc. &lt;br /&gt;
# Try splitting up some of the longer sentences in this section, a couple are hard to read.&lt;br /&gt;
# Avoid definitive statements about Adam being the best or always better solver, as this is simply not true (the choice of the “best” optimizer is setting-dependent). Use language such as “Research has shown that Adam has demonstrated superior experimental performance over..” and then cite academic references to back this claim. &lt;br /&gt;
# What does adam stand for? Introduction is insufficient. Please expand. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Revise grammar here, noticing some missing commas and uncapitalized word after period.&lt;br /&gt;
# Rephrase “second one is to update the old position with the updated position”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section, and actual subscripts instead of “m_t”, etc. &lt;br /&gt;
# Avoid inserting inline citations after words like “According to..” or “This article..” as it is a bit informal. This could be rephrased or changed to something like “According to author,^[2] …” with author name inserted. &lt;br /&gt;
# Remove white space before the period in RMSP discussion.&lt;br /&gt;
# Please provide a pseudocode. &lt;br /&gt;
# Please use list the two methods here “Adam is a combination of two gradient descent methods which are explained below”&lt;br /&gt;
# Please expand the theory section significantly. Theoretical convergence properties should be discussed, even if briefly.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Same comment as before, consider replacing inline citations after words like “According to..”. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to blogs and use peer-reviewed academic references instead. &lt;br /&gt;
# Too few references.&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[A-star algorithm|a* algorithm]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor and avoid HTML formatting on the section titles.&lt;br /&gt;
* An introduction of the topic:&lt;br /&gt;
# Weird spacing between paragraphs. Please fix this issue.&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. &lt;br /&gt;
# Please consider correcting a few grammatical errors: “Optimal path”, “cross country”, missing period at end of first paragraph, other random capitalizations, etc.&lt;br /&gt;
# There are no citations in the introduction. Please cite every source.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add the mathematical description of the algorithm.&lt;br /&gt;
# Reference style varies in sentences. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please fix grammatical and spelling errors as (“from current position to the goal”, “There are a lot of discussions”, etc). Also, many hyphens are missing as “non playable”.&lt;br /&gt;
# In algorithms, it is a standard to add high-level description (i.e. pseudocode or flowchart). Please incorporate it. &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section (e.g., “f(n)...”, “h(n)..”, etc.). This goes for other sections as well.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The numerical example does not show the full computations the algorithm performs. Please show the computation on a smaller example.&lt;br /&gt;
# Instead of writing things like “The above image..”, label each figure and use the figure number to refer to it in text. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# No references in the applications. Please cite every source &lt;br /&gt;
# Preferably, add at least an additional application.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion should summarize descriptions. Please modify it to provide a summary.  &lt;br /&gt;
# Please pay attention to the length and structure of sentences here and in the full page. First sentence is hard to read.&lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format and are not linked correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Incorrect reference style. Please follow the example and use the template.&lt;br /&gt;
&lt;br /&gt;
== [[Job shop scheduling|Job-Shop Scheduling Problem]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The current introduction to the jobshop scheduling problem has only two sentences in addition to the parameter description. Introduction typically contains information about the problem, its importance in the real-world, and some information about the solution techniques and their types to solve the problem. Please add some information that covers the above.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# It is unclear whether the assumptions stated in this section are required to apply the following solution techniques. Please clarify the same. Also use complete sentences to state them.&lt;br /&gt;
# The branch and bounds method described in this section only discusses the solution technique for problems with one machines. However, branch and bound is a general technique that can be applied to any MILP problems with varying scales. Please update the “methods” section to be as general as possible.&lt;br /&gt;
# Since this Wiki focuses on jobshop scheduling, at least two methods are expected. Branch and bound is a general MILP technique, so, it is recommended to add a tailored technique that can only solve specific jobshop scheduling problems. Solving the numerical example with this technique is not necessary.&lt;br /&gt;
# Reference to the branch and bound technique described in this section is a “youtube” video. Please add references in literature that describe this method in detail. The method used in this video is highly tailored for a single machine application. This is also an incorrect way to cite a reference. Please keep this section as general as possible.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section and all other sections as well.&lt;br /&gt;
# Check grammar in this section. For example, phrases like “are as follows” need to be followed by a colon and not a period. &lt;br /&gt;
# Consider rewriting the assumptions as a list in this section. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The example used in this section is exactly the same as the one in the youtube video. Please use a modification of this example or choose another example/method to demonstrate the solution technique.&lt;br /&gt;
# The figure in this section is not numbered when all others are. Relabel this figure for consistency and its number to refer to it in-text.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section should only focus on real-world applications of the jobshop scheduling problem. But currently, this section includes additional information on solution techniques/complexity that is appropriate for the Introduction section. Please discuss the applications of the problem in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# The meaning of  “Operations applications” is unclear. Please explain or update if necessary.&lt;br /&gt;
# The current conclusion section does not properly summarize the problem. Please refer to other Wiki examples for an idea to update the section accordingly.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Please reference media sources like reference 5 appropriately.&lt;br /&gt;
# A simple Google Scholar search would give you many &amp;quot;formal&amp;quot; references.&lt;br /&gt;
&lt;br /&gt;
== [[Optimization in game theory]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: remove cornell IDs. &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Why only a subsection on &amp;quot;Nash Equilibrium&amp;quot; is included in &amp;quot;Theory&amp;quot; section? Please re-format.&lt;br /&gt;
# Please edit references.&lt;br /&gt;
# Add a mathematical description of the problem and a pseudocode/flowchart for the Lemke-Howson algorithm.  &lt;br /&gt;
# Rephrase “This algorithm utilizes iterated pivoting much like the simplex algorithm used in the simplex algorithm used in linear programming”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please organize the last part in a more readable format. Questions may be in bold and numbered, answers are more direct, etc.&lt;br /&gt;
# Remember to cite all images and tables. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Very good, link the reference and cite all sources. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summarizing especially from theory sentences and avoid long sentences. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Incorrect reference style. Please correct.&lt;br /&gt;
&lt;br /&gt;
== [[Trust-region methods]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
# Remove cornell IDs. Author is also spelled incorrectly. &lt;br /&gt;
# Add the course section.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xk”, “f`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “we”. This goes for all other sections as well.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Organization of ideas in this section needs work.&lt;br /&gt;
# You have not defined explicitly why the Cauchy point is important to compute beyond a vague allusion to performance improvements, which is also wrong (it is useful because of its guarantees for convergence, not performance) It is also misspelled.&lt;br /&gt;
# Each approach should have accompanying explanation and motivation for why it is being discussed. It is not enough to outline the algorithm.&lt;br /&gt;
# Please make sure symbols are properly subscripted and superscripted (e.g. “pk” should be “p_k”&lt;br /&gt;
# Please format the algorithm in proper algorithmic pseudocode format.&lt;br /&gt;
# Little to no discussion on global convergence guarantees&lt;br /&gt;
# Please include discussion about the advantages and disadvantages of the algorithm&lt;br /&gt;
# Fix typo “couchy point”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any code functions (uminfunc) should have proper text formatting.&lt;br /&gt;
# The graph needs a better caption explaining how the axes are labeled and what data points are being shown.&lt;br /&gt;
# Please increase the quality of the figure. It is hard to see the red line. &lt;br /&gt;
# Add citation to “The Rosenbrock function is a non-convex function, introduced by Howard H. Rosenbrock in 1960, which is often used as a performance test problem for optimization algorithms.”&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The content in this section as it is currently does NOT describe applications, but rather different approaches within the trust region methodology. Please provide specific applications (e.g. TRPO in reinforcement learning).&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summary, future research directions for example is a good start.&lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style.&lt;br /&gt;
# Please consider having the references as this Wiki template, &amp;lt;nowiki&amp;gt;https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
*There are numerous misspellings, grammatical errors, and incorrect claims. Please fix these.&lt;br /&gt;
&lt;br /&gt;
== [[Momentum]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Apart from an explanation on momentum, it is necessary to briefly point out the limitations of SGD and why momentum could help with these limitations. Please update it accordingly.&lt;br /&gt;
# Remove bold on “Momentum”.&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Equation formatting is very poor and should be formalized.&lt;br /&gt;
# It is important to use technical language for this Wiki. Although a layman’s explanation is appreciated, it would be better to skip using words like “zig zagging”. Try to explain all concepts in a technical language with few simplifications but NOT vice versa.&lt;br /&gt;
# The definition of the update rule for SGD with momentum looks incorrect, specifically the first expression. Please fix it and also explain all the parameters used.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “W”, “V`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “you”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please try to label the plots that explains what each line color means.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please use correct terminology like “optimizing non-convex functions” and not “training non-convex models”.&lt;br /&gt;
# Adam, Adadelta, and RMSprop are variants of SGD that already use momentum. Please double check the writing and update if necessary.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please refrain from using words like “zig zag” effects.&lt;br /&gt;
* References&lt;br /&gt;
# Almost all references used are URLs. Please try to add journal/conference articles or books for references, instead of directly citing the URLs.&lt;br /&gt;
&lt;br /&gt;
== [[Stochastic dynamic programming|Stochastic Dynamic programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions &lt;br /&gt;
# Remove the grey box background of equations.&lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Outer-approximation (OA)|Outer-approximation]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic &lt;br /&gt;
# See formatting guideline below&lt;br /&gt;
# Avoid opinionated statements such as “MINLP problems are usually the hardest to solve”.&lt;br /&gt;
# Rearrange the text such that the MINLP formulation is in the theory section and keep the introduction in words only.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Consider left aligning equations and optimization problem formulations by the “=”. See [[Stochastic programming|https://optimization.cbe.cornell.edu/index.php?title=Stochastic_programming]] for an example&lt;br /&gt;
# The sentence “The Outer-Approximation (OA) algorithm was first proposed by Duran and and Grossmann in 1986 to solve MINLP problems.” needs a reference. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# “Minimize” and “subject to” should be “min” and “s.t.” in MathType&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Does not explicitly point out why OA is applicable (and/or preferred) in these applications, rather than other MINLP approaches (show that the problem formulations are amenable to a solution approach through OA)&lt;br /&gt;
# The sentence “... an active research area and there exists a vast number of applications in fields such as engineering, computational chemistry, and finance.” needs references. &lt;br /&gt;
# Place GAMS code in a single code box or remove it.&lt;br /&gt;
# Consider reformatting to make steps more readable. Inserting spaces and breaking down steps would help. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Too short. Consider discussion on future research direction and discussion on uncertainty&lt;br /&gt;
# Please review abbreviations throughout the page. Why is MINLP redefined here? “Outer-Approximation is a well known efficient approach for solving convex mixed-integer nonlinear programs (MINLP)”. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove &amp;quot;Template:Reflist&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== [[Unit commitment problem]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction and avoid discussions of examples or specific applications in this section.&lt;br /&gt;
# The sentence “Nonlinear, Non-convex programming optimization problem.” doesn’t make sense by itself and Non-convex shouldn’t be capitalized.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Figure/image format should be revised to better display the content.&lt;br /&gt;
# Uppercase characters are used randomly (e.g., “non-convex transmission Constraints”) . Please follow correct language conventions for sentence structure.&lt;br /&gt;
# Avoid inserting inline citations after words like “written in matrix form as equation [3]..” or “presented in [3]...” as it is a bit informal when you don’t explicitly name the subject. Also these two sentences are grammatically incorrect and appear to be missing an ending period and comma, respectively. &lt;br /&gt;
# Don’t say “written in matrix form as equation..” and just cite the reference, actually write out the equation. &lt;br /&gt;
# Properly label the figure in this section with a figure number and improve visibility by making it larger. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Label the figures in this section properly with figure numbers.&lt;br /&gt;
# Fix typo “while minimize” to “while minimizing”. &lt;br /&gt;
# Avoid pronouns such as “we”. &lt;br /&gt;
# Use the equation editor when typing equations. &lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# I suggest changing the order of the subtitles here. For example, Single-Period Unit Commitment. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Frank-Wolfe]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# I suggest highlighting disadvantages along with advantages. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# “[n x 1] matrix” please use the equation editor to express mathematical descriptions and symbols (p,b, etc)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please show at least a few iterations. Even for smaller examples if needed. Report the final solution. &lt;br /&gt;
# Please use the LaTex code or equation editor for min and include s.t., etc.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. For your example, please explicitly state that the derivative is taken etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications: &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Same as the introduction. Pros and cons should be evaluated together!&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Line search methods|Line Search Method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Expand the introduction and avoid discussion on some of the specific steps in the solution process. &lt;br /&gt;
# Provide references here. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The phrase “are as follows” in the steepest descent method discussion needs to be followed by a colon. &lt;br /&gt;
# Rephrase “has a nice convergence theory” and cite a reference for this claim.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Add citation after “.. proposed by Phillip Wolfe in 1969.”&lt;br /&gt;
# Figure 1 is between two sections. Please fix this issue. &lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# Add some space between iterations or subsection break&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# Too few references in this section. &lt;br /&gt;
# Last paragraph makes some claims without references. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Piecewise linear approximation|Piecewise Linear Approximation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The content of this section is good, but there are some issues with sentence clarity and some other grammatical errors. Please revisit this section and make changes accordingly. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Fix typo “to force the x’ values become associated with”. &lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Some of these longer sentences are hard to read. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Expand the conclusion section to be longer than one sentence. The conclusion section to include a brief summary of what was discussed above, an emphasis on it’s significance, and a brief discussion of future extensions and research direction if applicable.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to sources when possible.&lt;br /&gt;
&lt;br /&gt;
== [[Mathematical programming with equilibrium constraints|Mathematical Programming with Equilibrium constraints]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes several terms like variational inequalities, constraint qualifications that were not discussed in the class. Please add a sentence to explain them before using them.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The meaning of parameter vector x is unclear. Please add more information or update if necessary.&lt;br /&gt;
# Equations and symbols in the PIPA subsection are not formatted correctly. Please use the same formatting for all equations, so they read as mathematical equations and not text. This goes for all other sections as well.&lt;br /&gt;
# Use equations instead of images to represent math programs and equations in the Implicit Descent and SQP subsection.&lt;br /&gt;
# Apart from the steps for each solution technique, please also add a few sentences that describe each method.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please define the terms like NCP, MP before abbreviating them. Also try not to unnecessarily abbreviate simple terms.&lt;br /&gt;
# Equations should be typed by LaTex. Images for equations are unacceptable.&lt;br /&gt;
# GAMS code is strongly discouraged. Please solve the problem &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The selected numerical example is fine but is directly solved with the MPEC solver in GAMS. Try to solve it manually like the homework/in-class problems step by step using the steps described in the previous section by choosing any of the methods.&lt;br /&gt;
# Avoid using figures in the equations (subject to etc)&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Add references to “power management, highway pricing, chemical process engineering, and traffic planning.”&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Wing shape optimization|Wing shape Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction is missing several references (e.g., “software packages like computational fluid dynamics..”, sentences containing things that aren’t common knowledge, performance claims, etc.)&lt;br /&gt;
# Avoid discussion involving finer details of subject methods in this section. &lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. Same applies to box of content!&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Properly cite the CFD package, don’t just include a link. &lt;br /&gt;
# Properly label the figure with a figure number.&lt;br /&gt;
# Consider removing white space between isolated sentences to improve readability. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# If you’ve already defined an abbreviation (CFD), there is no need to define it again. Just use the abbreviation.&lt;br /&gt;
# Avoid pronouns such as “we” or “they”.&lt;br /&gt;
# Phrases like “under the following” need to be followed by a colon.&lt;br /&gt;
# Properly label the figure with a figure number and consider making them larger to improve visibility. Call the reader&#039;s attention to the figures in text by referencing the figure number.&lt;br /&gt;
# “As seen in the video below” is stated yet there are only images present and it may be initially unclear to the reader which figure is being referenced here. &lt;br /&gt;
# Avoid inserting inline citations like “[4] introduces an..”  as it is a bit informal when you don’t explicitly name the subject.&lt;br /&gt;
# Don’t just cite the reference when discussing the problem formulation, explicitly write the model formulation and solution process using LaTex or equation visual editor.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Some characters are randomly capitalized in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# These variables should be defined before the conclusion section, they are out of place here. Also, please use normal text when explaining variables except for the variable symbol. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Interior-point method for NLP|Interior point method for NLP]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Primal-Dual formulation and comparison to the Barrier Method is not discussed.&lt;br /&gt;
# Include brief discussion about big O convergence rates.&lt;br /&gt;
# Need discussion about the concept of “central path” and the notion of self concordance&lt;br /&gt;
# Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Graphs and images are incorrectly formatted to the page. Consider proper alignment with respect to the text body.&lt;br /&gt;
# Use explicitly typed Latex equations instead of images to represent math programs and equations.&lt;br /&gt;
# Fix typo “optimisation”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xi ”, “μ”, etc.).&lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# There are formatting issues with figures 2,3. Please make sure to embed them within their respective sections. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section &lt;br /&gt;
# Minor character code typos in the conclusion.&lt;br /&gt;
# Also, please add more discussion in this section. Future research directions is a good start.&lt;br /&gt;
# There is a box &amp;quot;􏰐&amp;quot;&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[AdaGrad|Adagrad]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Include discussion on its variants (most important is AdaDelta).&lt;br /&gt;
# Include disadvantages of Adagrad, since this provides motivation for the discussion on the variants and improvements of Adagrad&lt;br /&gt;
# Include comparisons to other popular optimizers (particularly important is comparisons to regular SGD and Adam)&lt;br /&gt;
# Different convergence rates are possible depending on the setting where Adagrad is used, but this is not mentioned on the page currently. As such the regret bound section should be more thoroughly explained.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the first sentence, “..take the following numerical example” should be followed by a colon. &lt;br /&gt;
# Fix typo “trayectory”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is too short; include specific applications in which input features are sparse and Adagrad excels.&lt;br /&gt;
# Add reference to the claim “Mainly, it is a good choice for deep learning models with sparse input features”.&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References &lt;br /&gt;
&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources (even if the base algorithm itself comes from a singular paper)&lt;br /&gt;
&lt;br /&gt;
== [[McCormick envelopes|McCormick Envelopes]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: OK but I suggest removing NetID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# First sentence is hard to read. Please consider keeping sentences below 25-30 words. &lt;br /&gt;
# No references provided. Please cite all sources. &lt;br /&gt;
# Figure 1 is provided in the middle between two sections. Please include in the introduction section. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# When using mathematical expressions and symbols, please use the equation editor. (e.g., x*y, exy + y, sin (x+y) - x2)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution. &lt;br /&gt;
# For the sample GAMS code, please place it in a code box&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each. &lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section: &lt;br /&gt;
* References&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4772</id>
		<title>2021 Cornell Optimization Open Textbook Feedback</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4772"/>
		<updated>2021-12-05T04:05:43Z</updated>

		<summary type="html">&lt;p&gt;Asa273: /* Disjunctive Inequalities */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[Lagrangean duality|Lagrangian duality]] ==&lt;br /&gt;
* Author list, sections and TOC&lt;br /&gt;
# Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor and avoid HTML formatting on the section titles.&lt;br /&gt;
# Remove cornell ID from Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes sentences on constructing the dual problem and is referred to as Lagrangian relaxation (LR). This is incorrect, please fix the definition of LR.&lt;br /&gt;
# Definitions of LR and its relation to duality should be double checked and re-written.&lt;br /&gt;
# Only one reference is present in this section. Please add more relevant references by expanding this section.&lt;br /&gt;
# Consider merging the “introduction” and “history” sections.&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The Lagrangian variables associated with equality constraints h(x) are unbounded but the Lagrangian dual problem states them as non-negative. Please fix the same.&lt;br /&gt;
# Also to construct a dual, we do not change minimization to maximization directly. We observed such things in the examples in lecture notes due to simplification. The lagrangian dual problem would be minimize (,).&lt;br /&gt;
# Adding to the previous point, the Lagrangian is a lower bound on the original objective; the solution to the primal and dual or only equivalent if the duality gap is 0. You reference this in one section, but this is after your statement “Hence, solving the dual problem, which is a function of the Lagrangian multipliers (𝜆*) yields the same solution as the primal problem, which is a function of the original variables (x*). “. Please clarify the specific conditions that must hold for the solution of the dual to be equal to the primal’s.&lt;br /&gt;
# You refer to the “Complementary Slackness Theorem”, but don’t actually write the mathematical representation of complementary slackness. Please fix this. Also consider including the derivation of the complementary slackness condition, as it is both easy and short. Boyd is a good reference for this.&lt;br /&gt;
# Last step of the “process” subsection also needs updating according to the previous comments.&lt;br /&gt;
# The inline notations should also be typed using LaTex.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Only one dual variable is associated with each constraint. The numerical example uses two for the first and second constraint which is unnecessary. Please update it accordingly for both constraints. This particular example will only have two dual variables instead of the five dual variables used currently.&lt;br /&gt;
# All consecutive steps need to be updated since the dual variables would be updated.&lt;br /&gt;
# After substitution the nonlinear function should be further simplified. The current expression reads like a highly nonlinear function but can be easily simplified.&lt;br /&gt;
# Similar to the comments in the methodology section, inverting minimize to maximize is incorrect. Please update the dual objective function accordingly.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Bullet points could be used to state the last four real-world examples that explain the physical meaning of the primal and dual problems.&lt;br /&gt;
# Add references for the last set of applications. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# This section contains a few typos. Please fix the same.&lt;br /&gt;
* References&lt;br /&gt;
# Some citations&#039; hyperlinks are displaying.&lt;br /&gt;
&lt;br /&gt;
== [[Disjunctive inequalities|Disjunctive Inequalities]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section and semester&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# No citations are present in this section.&lt;br /&gt;
# “mixed-integer programming (MIP)” should be used instead of “multiple integer programming (MIP)”. Please fix this error.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The abbreviation MILP is not previously defined. Please fix this issue.&lt;br /&gt;
# You consistently use the negative sign instead of the NOT operator for y (-y instead of ¬y). &lt;br /&gt;
# Some inconsistencies with the spacing of variables, constraints, etc., under the “General” section that need to be fixed.&lt;br /&gt;
# Typo in “This is shown below by M1, M2, y1, and y1:” where y1 needs to be changed to y2. Why use two different Big-M variables here? Elsewhere in the Wiki you only use one so this could lead to confusion with a general audience. Also if this was taken from the lecture notes then it needs to be cited.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please reformulate and solve a complete numerical example rather than just reformulating a general example. Demonstrate the use of Big-M and Convex Hull formulation in an optimization problem that provides details such as individual steps in the problem solving process and final results.&lt;br /&gt;
# Add space between vee (V) operator and brackets in first line of Latex&lt;br /&gt;
# Please format variables correctly, for example, use &amp;lt;math&amp;gt;x_1&amp;lt;/math&amp;gt; instead of x1.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please format the equations appropriately either by using latex code or the visual editor. These images are NOT acceptable!&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# There is no conclusion presented in this section at all.&lt;br /&gt;
* References&lt;br /&gt;
# The included references have NOT been used anywhere in the Wiki. Add references for sentences that are not common knowledge and please link them appropriately with the text in Wiki. If the figures used here were not original works, you must also cite them. &lt;br /&gt;
# There are many papers on this topic. A simple Google (Scholar) search could provide you with sufficient references to cite. &lt;br /&gt;
# Many important references of this topic are missing.&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
==[[Stochastic programming|Stochastic Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell IDs&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
# This section only includes two sentences on Stochastic programming (SP), while the rest gives examples of uncertainty. Please discuss the need for SP in the presence of uncertainty. Also, discussion on robust optimization and its limitations should be removed since it is out of place.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please avoid direct inline linkbacks to Wikipedia.&lt;br /&gt;
# The symbol “xi” in the methodology subsection should be explained.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Copying a numerical example &amp;quot;entirely&amp;quot; from a textbook is inappropriate. Your team should come up with a &amp;quot;numerical&amp;quot; case.&lt;br /&gt;
# No specific application context is needed for a numerical example.&lt;br /&gt;
# The inline notations (`x1`, `s1`) should also be typed using LaTex.&lt;br /&gt;
# Label all tables with a table number for better readability. &lt;br /&gt;
# Properly format the solution table with the label attached rather than the following sentence. The solution table looks different from the others, please fix this for consistency. &lt;br /&gt;
* A section to discuss and/or illustrate the applications;&lt;br /&gt;
# I suggest eliminating citing the last name of the first author (i.e. Zhou et al.)&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# URLs of some citations are not properly formatted (not showing the hyperlinks).&lt;br /&gt;
&lt;br /&gt;
== [[Exponential transformation|Exponential Transformation]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction.&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Last sentence with 51 words is hard to read. &lt;br /&gt;
# Second Sentence: please change the word “they” as it could make the meaning ambiguous&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
# If you use abbreviations, please introduce them (e.g. NLP,MINLP)&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please explain the transformation in words along with equations&lt;br /&gt;
# Terms like posynomial should be described in detail.&lt;br /&gt;
# Please move the numerical example to the section below&lt;br /&gt;
# The “(eq 1)” is not needed here.&lt;br /&gt;
# Please expand this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the third equation of the numerical example, it is confusing to have coefficients after numbers. Some readers may read it as an exponent.&lt;br /&gt;
# Last equation in this section after “further linearization” is incorrect. This equation cannot be further linearized, please fix this.&lt;br /&gt;
# Please explain the steps in the numerical examples in detail. The step-by-step solution should be provided. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Missing part of text: “Proof of convexity of with positive definite test of Hessian…”&lt;br /&gt;
# Applications are not numerical examples. Please refer to this link for example of applications: [[Duality|https://optimization.cbe.cornell.edu/index.php?title=Duality]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
# The section current applications is redundant&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
# Under current applications, do not just use a hyperlink to describe an application. Actually describe it. And properly inline citation style should be used instead of the hyperlink. &lt;br /&gt;
# The convexification application of MINLP can be further simplified for binary variables. Please refer to the lecture slides for more information.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references by using this as Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
&lt;br /&gt;
== [[Sparse Reconstruction with Compressed Sensing|Sparse reconstruction with Compressed Sensing]] ==&lt;br /&gt;
This Wiki needs a significant rewrite. Please go through the comments for details.&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction section should include information about the problem and its implications presented briefly. Please use full sentences to write this Wiki. You may use tools like Grammarly to check sentence formation and grammar.&lt;br /&gt;
# This section includes several typos like “sub modual”. Please fix them throughout the wiki and delete them if not required.&lt;br /&gt;
# Many abbreviations are used before previously defining them. Please define these abbreviations before using them in the text.&lt;br /&gt;
# This section is incomprehensible in its current form. Please rewrite with proper comprehension.&lt;br /&gt;
# Equations and math symbols need proper reformatting. The current version reads like text (along with equations) copy-pasted from a specific source.&lt;br /&gt;
# Try to place the figure at the top of the Wiki between the main text.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# I suggest the use of more formal abstract illustrations. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Equations and symbols need proper reformatting.&lt;br /&gt;
# Lemmas and theorems are not expected for this Wiki. Sparse reconstruction is a straightforward concept but is unnecessarily complicated here. Please refer to other Wiki examples to get an idea of what the Wiki should convey.&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Numerical example is missing.&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion section is missing.&lt;br /&gt;
* References&lt;br /&gt;
# The current reference list is not correctly formatted. References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Portfolio optimization|Portfolio Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell id&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introductory sentence should be rephrased. The action of minimizing the risks does not inherently maximize the gains, rather PO aims to maximize gains whilst minimizing risks. &lt;br /&gt;
# Amount of whitespace can be reduced by changing the orientation of Figure 1 and the sentences in this section.&lt;br /&gt;
# Define terms such as risk, return, portfolio, etc., when you introduce them. Assume that the reader may not know much about finance. This goes for all other sections as well. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# A brief mention of modern portfolio theory (i.e.. Markowitz) would be appropriate in this section. &lt;br /&gt;
# Several grammatical errors here involving sentence structure and clarity. Some questionable semantics (e.g., “The portfolio optimization mainly assumes two directions.”) and syntax (phrases such as “.. is as follows” should be followed by a colon). Misuse of commas and missing commas in this section. Two sentences introducing E(rp) and w should be combined into one.&lt;br /&gt;
# Use LaTex to distinguish variables written within a sentence, such as m and n. &lt;br /&gt;
# Rephrase “Cut the relevant information and conditions in the portfolio optimization, as well as the final requirements into the relevant variables, constraints and linear functions of the linear programming problem.”&lt;br /&gt;
# An explanation of a few common constraints would be helpful, rather than just including a table. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Solving the numerical example by GAMS is inappropriate. Please provide detailed step-by-step calculation results.&lt;br /&gt;
# All tables need to be labeled.&lt;br /&gt;
# Include figure number in label for consistency. &lt;br /&gt;
# Fix misspelling “dolling decision variables”. &lt;br /&gt;
# Use LaTex for all variables, equations, and constraints here.&lt;br /&gt;
# Example 2 table is hard to read, so making it bigger would help. &lt;br /&gt;
# Remove the “Using excel as the solver” part from the sentence before the solution discussion. &lt;br /&gt;
# Some grammatical errors here (phrases such as “.. is as follows” should be followed by a colon). &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Rephrase “Portfolio optimization can be used to screen investment projects that meet investors, rationally allocate investment amounts, etc.”&lt;br /&gt;
# Not sure “relevant” is the correct word choice here. &lt;br /&gt;
# You need more specific examples with the utility of portfolio optimization, this section is quite general as is. Some more detail and focus on real-world applications in the financial industry that relate to retirement planning, financial security, economic stability, etc., would be helpful. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Need some commas here.&lt;br /&gt;
# The sentence “Linear programming has been around since the 1940’s and has such a wide base of applications” is not necessary. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove white space between end of sentences and reference numbers.&lt;br /&gt;
&lt;br /&gt;
== [[Chance-constraint method|Chance constraint method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please consider correcting a few grammatical errors: “pre-planned for”, “god”, “certain levels of feasibility is guaranteed in what are”, and “Performance of a system”&lt;br /&gt;
# In “Chance-constraint”, it is capitalized randomly throughout the introduction. Please correct.   &lt;br /&gt;
# Please use technical language to briefly introduce chance-constrained programming. Words like “acts of god”, “cost of doing business” are not appropriate for a  technical Wiki.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Xi is an uncertainty/randomness variable. It is better to use clear language. &lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others.&lt;br /&gt;
# Theory is insufficient. Please expand and explain different approaches. &lt;br /&gt;
# Please add pros and cons explicitly as a list. &lt;br /&gt;
# Explain the physical meaning for examples of chance constraints along with all the notations used.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please remove this example as it is directly from this book. The example should be purely numerical without any background.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others. &lt;br /&gt;
# Please change the table format so as not to confuse the reader. &lt;br /&gt;
# Multiple instances of [Chart to be added] are missing.&lt;br /&gt;
# Example is incomplete. &lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please connect several grammatical and spelling errors: “real life application”, Energy creation, particularly in renewable sources, have high variabilities”, and others&lt;br /&gt;
# “Zhao, Xue, Cao, and Zhang”. No need to list all authors within the article. Provide a reference is sufficient. If authors must be mentioned, (Zhao et al.) should be ok.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Uniqueness and universality earlier are not clear to me. If they are not discussed earlier in the application, it would be better not to introduce new discussions in the conclusion.&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
==  [[Bayesian Optimization]] ==&lt;br /&gt;
* Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor on the section titles.&lt;br /&gt;
* Contents: Subheadings for EI and the algorithm should not be bolded, Random words should not be capitalized.&lt;br /&gt;
* Author list: Remove cornell ID, Please check names&lt;br /&gt;
* Introduction&lt;br /&gt;
# The introduction is too general and not substantial enough. For example, simply saying BayesOpt is useful when the objective function is unknown obscures exactly HOW it is useful (namely, computational efficiency in applications where ground truth sampling is expensive). Discussion on applications should be moved to a separate section.&lt;br /&gt;
# Machine learning rarely includes black-box functions to be optimized. Bayesian optimization is almost never used for optimizing ML loss functions but can instead be used for hyperparameter optimization. Please update such claims in this section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Captions need reformatting.&lt;br /&gt;
# Consider italicizing keywords rather than bolding.&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Discussion on acquisition functions should include comparisons, tradeoffs, and reasons to use one over the other. Should also note that expected improvement is the most widely used in practice, and explain.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Please write equations in the Wiki instead of attaching images for equations.&lt;br /&gt;
# Acquisition function figure could be made larger and clearer to improve readability.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any references to functions or methods in code ‘e.g. fmin’ should be properly formatted as code-stylized text.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Avoid including a figure of the code for this example and explicitly describe the steps to the modeling and solution process instead. &lt;br /&gt;
# Avoid pronouns such as “our” and “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please do not use brackets to enclose lists.&lt;br /&gt;
# Some claims here should be supported by references. Please cite each source after its sentence. &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to “pop” machine learning blogs where anyone can be an author. (e.g. towardsdatascience)&lt;br /&gt;
# All references are URLs. Please cite publications and literature.&lt;br /&gt;
# A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
Notes on grammar: Needs some work. Several instances where colons are inappropriately inserted mid sentence or in subheadings. Explanations are not terse. Several instances of switching between personal and impersonal style of writing, which is distracting.&lt;br /&gt;
&lt;br /&gt;
== [[Conjugate gradient methods]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Introduction&lt;br /&gt;
# All inline notations (e.g., `x`, `A`) should be typed using LaTex.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# All equations need to be better formatted.&lt;br /&gt;
# Is Gauss-Newton no longer referenced?&lt;br /&gt;
# Theorems listed in the first section should be accompanied with high level explanation, not just a list of the theorems themselves. The page should read like an article, with proper flow.&lt;br /&gt;
# Please indent equation blocks.&lt;br /&gt;
# Please properly format pseudocode.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Steps should be accompanied with explanation, or reference to the corresponding step in the pseudocode.&lt;br /&gt;
# Please properly format in a more organized manner, aligning equations appropriately and demarcating steps appropriately.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
# Consider including 2 additional examples of applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Consider adding future research directions&lt;br /&gt;
* References&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Too few references.&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Geometric programming|Geometric Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Examples of applications in this section use the same reference. Please cite their individual sources.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The symbol denoting the domain in the definition of a monomial is unclear. Please clarify it or fix this if it is incorrect.&lt;br /&gt;
# Definition of posynomial refers to section 2.1 which is missing from the Wiki (sections are not numbered in the main text).&lt;br /&gt;
# In the generalized posynomial subsection, bullet points do not tell us why h(x) is posynomial. Either provide reasons or simply state that h(x) is posynomial. Also explain why h3 is a generalized posynomial.&lt;br /&gt;
# Additional theory on the feasibility analysis could be provided in this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the transformation example, the last two constraints could also be simplified by applying a natural logarithm on both sides. Please update them as well.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The figure in this section needs to be labeled. &lt;br /&gt;
# The figure needs to be resized and perhaps aligned to the center.  &lt;br /&gt;
* A conclusion section:&lt;br /&gt;
# Please avoid vague language such as: “This makes”.&lt;br /&gt;
# Please avoid opinionated statements: “one of the best ways”.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Adam]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Some grammatical errors here, mostly related to the need for commas in certain places (e.g., “Before Adam..”).&lt;br /&gt;
# Some minor errors with parts of speech throughout the section, need to revisit phrases such as “which has broader scope in future for”, etc. &lt;br /&gt;
# Try splitting up some of the longer sentences in this section, a couple are hard to read.&lt;br /&gt;
# Avoid definitive statements about Adam being the best or always better solver, as this is simply not true (the choice of the “best” optimizer is setting-dependent). Use language such as “Research has shown that Adam has demonstrated superior experimental performance over..” and then cite academic references to back this claim. &lt;br /&gt;
# What does adam stand for? Introduction is insufficient. Please expand. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Revise grammar here, noticing some missing commas and uncapitalized word after period.&lt;br /&gt;
# Rephrase “second one is to update the old position with the updated position”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section, and actual subscripts instead of “m_t”, etc. &lt;br /&gt;
# Avoid inserting inline citations after words like “According to..” or “This article..” as it is a bit informal. This could be rephrased or changed to something like “According to author,^[2] …” with author name inserted. &lt;br /&gt;
# Remove white space before the period in RMSP discussion.&lt;br /&gt;
# Please provide a pseudocode. &lt;br /&gt;
# Please use list the two methods here “Adam is a combination of two gradient descent methods which are explained below”&lt;br /&gt;
# Please expand the theory section significantly. Theoretical convergence properties should be discussed, even if briefly.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Same comment as before, consider replacing inline citations after words like “According to..”. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to blogs and use peer-reviewed academic references instead. &lt;br /&gt;
# Too few references.&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[A-star algorithm|a* algorithm]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor and avoid HTML formatting on the section titles.&lt;br /&gt;
* An introduction of the topic:&lt;br /&gt;
# Weird spacing between paragraphs. Please fix this issue.&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. &lt;br /&gt;
# Please consider correcting a few grammatical errors: “Optimal path”, “cross country”, missing period at end of first paragraph, other random capitalizations, etc.&lt;br /&gt;
# There are no citations in the introduction. Please cite every source.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add the mathematical description of the algorithm.&lt;br /&gt;
# Reference style varies in sentences. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please fix grammatical and spelling errors as (“from current position to the goal”, “There are a lot of discussions”, etc). Also, many hyphens are missing as “non playable”.&lt;br /&gt;
# In algorithms, it is a standard to add high-level description (i.e. pseudocode or flowchart). Please incorporate it. &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section (e.g., “f(n)...”, “h(n)..”, etc.). This goes for other sections as well.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The numerical example does not show the full computations the algorithm performs. Please show the computation on a smaller example.&lt;br /&gt;
# Instead of writing things like “The above image..”, label each figure and use the figure number to refer to it in text. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# No references in the applications. Please cite every source &lt;br /&gt;
# Preferably, add at least an additional application.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion should summarize descriptions. Please modify it to provide a summary.  &lt;br /&gt;
# Please pay attention to the length and structure of sentences here and in the full page. First sentence is hard to read.&lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format and are not linked correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Incorrect reference style. Please follow the example and use the template.&lt;br /&gt;
&lt;br /&gt;
== [[Job shop scheduling|Job-Shop Scheduling Problem]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The current introduction to the jobshop scheduling problem has only two sentences in addition to the parameter description. Introduction typically contains information about the problem, its importance in the real-world, and some information about the solution techniques and their types to solve the problem. Please add some information that covers the above.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# It is unclear whether the assumptions stated in this section are required to apply the following solution techniques. Please clarify the same. Also use complete sentences to state them.&lt;br /&gt;
# The branch and bounds method described in this section only discusses the solution technique for problems with one machines. However, branch and bound is a general technique that can be applied to any MILP problems with varying scales. Please update the “methods” section to be as general as possible.&lt;br /&gt;
# Since this Wiki focuses on jobshop scheduling, at least two methods are expected. Branch and bound is a general MILP technique, so, it is recommended to add a tailored technique that can only solve specific jobshop scheduling problems. Solving the numerical example with this technique is not necessary.&lt;br /&gt;
# Reference to the branch and bound technique described in this section is a “youtube” video. Please add references in literature that describe this method in detail. The method used in this video is highly tailored for a single machine application. This is also an incorrect way to cite a reference. Please keep this section as general as possible.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section and all other sections as well.&lt;br /&gt;
# Check grammar in this section. For example, phrases like “are as follows” need to be followed by a colon and not a period. &lt;br /&gt;
# Consider rewriting the assumptions as a list in this section. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The example used in this section is exactly the same as the one in the youtube video. Please use a modification of this example or choose another example/method to demonstrate the solution technique.&lt;br /&gt;
# The figure in this section is not numbered when all others are. Relabel this figure for consistency and its number to refer to it in-text.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section should only focus on real-world applications of the jobshop scheduling problem. But currently, this section includes additional information on solution techniques/complexity that is appropriate for the Introduction section. Please discuss the applications of the problem in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# The meaning of  “Operations applications” is unclear. Please explain or update if necessary.&lt;br /&gt;
# The current conclusion section does not properly summarize the problem. Please refer to other Wiki examples for an idea to update the section accordingly.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Please reference media sources like reference 5 appropriately.&lt;br /&gt;
# A simple Google Scholar search would give you many &amp;quot;formal&amp;quot; references.&lt;br /&gt;
&lt;br /&gt;
== [[Optimization in game theory]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: remove cornell IDs. &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Why only a subsection on &amp;quot;Nash Equilibrium&amp;quot; is included in &amp;quot;Theory&amp;quot; section? Please re-format.&lt;br /&gt;
# Please edit references.&lt;br /&gt;
# Add a mathematical description of the problem and a pseudocode/flowchart for the Lemke-Howson algorithm.  &lt;br /&gt;
# Rephrase “This algorithm utilizes iterated pivoting much like the simplex algorithm used in the simplex algorithm used in linear programming”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please organize the last part in a more readable format. Questions may be in bold and numbered, answers are more direct, etc.&lt;br /&gt;
# Remember to cite all images and tables. &lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Very good, link the reference and cite all sources. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summarizing especially from theory sentences and avoid long sentences. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Incorrect reference style. Please correct.&lt;br /&gt;
&lt;br /&gt;
== [[Trust-region methods]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
# Remove cornell IDs. Author is also spelled incorrectly. &lt;br /&gt;
# Add the course section.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xk”, “f`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “we”. This goes for all other sections as well.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Organization of ideas in this section needs work.&lt;br /&gt;
# You have not defined explicitly why the Cauchy point is important to compute beyond a vague allusion to performance improvements, which is also wrong (it is useful because of its guarantees for convergence, not performance) It is also misspelled.&lt;br /&gt;
# Each approach should have accompanying explanation and motivation for why it is being discussed. It is not enough to outline the algorithm.&lt;br /&gt;
# Please make sure symbols are properly subscripted and superscripted (e.g. “pk” should be “p_k”&lt;br /&gt;
# Please format the algorithm in proper algorithmic pseudocode format.&lt;br /&gt;
# Little to no discussion on global convergence guarantees&lt;br /&gt;
# Please include discussion about the advantages and disadvantages of the algorithm&lt;br /&gt;
# Fix typo “couchy point”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any code functions (uminfunc) should have proper text formatting.&lt;br /&gt;
# The graph needs a better caption explaining how the axes are labeled and what data points are being shown.&lt;br /&gt;
# Please increase the quality of the figure. It is hard to see the red line. &lt;br /&gt;
# Add citation to “The Rosenbrock function is a non-convex function, introduced by Howard H. Rosenbrock in 1960, which is often used as a performance test problem for optimization algorithms.”&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The content in this section as it is currently does NOT describe applications, but rather different approaches within the trust region methodology. Please provide specific applications (e.g. TRPO in reinforcement learning).&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summary, future research directions for example is a good start.&lt;br /&gt;
* References&lt;br /&gt;
# Incorrect reference style.&lt;br /&gt;
# Please consider having the references as this Wiki template, &amp;lt;nowiki&amp;gt;https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
*There are numerous misspellings, grammatical errors, and incorrect claims. Please fix these.&lt;br /&gt;
&lt;br /&gt;
== [[Momentum]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Apart from an explanation on momentum, it is necessary to briefly point out the limitations of SGD and why momentum could help with these limitations. Please update it accordingly.&lt;br /&gt;
# Remove bold on “Momentum”.&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Equation formatting is very poor and should be formalized.&lt;br /&gt;
# It is important to use technical language for this Wiki. Although a layman’s explanation is appreciated, it would be better to skip using words like “zig zagging”. Try to explain all concepts in a technical language with few simplifications but NOT vice versa.&lt;br /&gt;
# The definition of the update rule for SGD with momentum looks incorrect, specifically the first expression. Please fix it and also explain all the parameters used.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “W”, “V`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “you”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please try to label the plots that explains what each line color means.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please use correct terminology like “optimizing non-convex functions” and not “training non-convex models”.&lt;br /&gt;
# Adam, Adadelta, and RMSprop are variants of SGD that already use momentum. Please double check the writing and update if necessary.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please refrain from using words like “zig zag” effects.&lt;br /&gt;
* References&lt;br /&gt;
# Almost all references used are URLs. Please try to add journal/conference articles or books for references, instead of directly citing the URLs.&lt;br /&gt;
&lt;br /&gt;
== [[Stochastic dynamic programming|Stochastic Dynamic programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions &lt;br /&gt;
# Remove the grey box background of equations.&lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Outer-approximation (OA)|Outer-approximation]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic &lt;br /&gt;
# See formatting guideline below&lt;br /&gt;
# Avoid opinionated statements such as “MINLP problems are usually the hardest to solve”.&lt;br /&gt;
# Rearrange the text such that the MINLP formulation is in the theory section and keep the introduction in words only.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Consider left aligning equations and optimization problem formulations by the “=”. See [[Stochastic programming|https://optimization.cbe.cornell.edu/index.php?title=Stochastic_programming]] for an example&lt;br /&gt;
# The sentence “The Outer-Approximation (OA) algorithm was first proposed by Duran and and Grossmann in 1986 to solve MINLP problems.” needs a reference. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# “Minimize” and “subject to” should be “min” and “s.t.” in MathType&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Does not explicitly point out why OA is applicable (and/or preferred) in these applications, rather than other MINLP approaches (show that the problem formulations are amenable to a solution approach through OA)&lt;br /&gt;
# The sentence “... an active research area and there exists a vast number of applications in fields such as engineering, computational chemistry, and finance.” needs references. &lt;br /&gt;
# Place GAMS code in a single code box or remove it.&lt;br /&gt;
# Consider reformatting to make steps more readable. Inserting spaces and breaking down steps would help. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Too short. Consider discussion on future research direction and discussion on uncertainty&lt;br /&gt;
# Please review abbreviations throughout the page. Why is MINLP redefined here? “Outer-Approximation is a well known efficient approach for solving convex mixed-integer nonlinear programs (MINLP)”. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove &amp;quot;Template:Reflist&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== [[Unit commitment problem]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction and avoid discussions of examples or specific applications in this section.&lt;br /&gt;
# The sentence “Nonlinear, Non-convex programming optimization problem.” doesn’t make sense by itself and Non-convex shouldn’t be capitalized.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Figure/image format should be revised to better display the content.&lt;br /&gt;
# Uppercase characters are used randomly (e.g., “non-convex transmission Constraints”) . Please follow correct language conventions for sentence structure.&lt;br /&gt;
# Avoid inserting inline citations after words like “written in matrix form as equation [3]..” or “presented in [3]...” as it is a bit informal when you don’t explicitly name the subject. Also these two sentences are grammatically incorrect and appear to be missing an ending period and comma, respectively. &lt;br /&gt;
# Don’t say “written in matrix form as equation..” and just cite the reference, actually write out the equation. &lt;br /&gt;
# Properly label the figure in this section with a figure number and improve visibility by making it larger. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Label the figures in this section properly with figure numbers.&lt;br /&gt;
# Fix typo “while minimize” to “while minimizing”. &lt;br /&gt;
# Avoid pronouns such as “we”. &lt;br /&gt;
# Use the equation editor when typing equations. &lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# I suggest changing the order of the subtitles here. For example, Single-Period Unit Commitment. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[Frank-Wolfe]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# I suggest highlighting disadvantages along with advantages. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# “[n x 1] matrix” please use the equation editor to express mathematical descriptions and symbols (p,b, etc)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please show at least a few iterations. Even for smaller examples if needed. Report the final solution. &lt;br /&gt;
# Please use the LaTex code or equation editor for min and include s.t., etc.&lt;br /&gt;
# Please ensure that the example : (1) is NOT directly taken from a book, and (2) a step-by-step solution should be provided, showing every intermediate steps. For your example, please explicitly state that the derivative is taken etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications: &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Same as the introduction. Pros and cons should be evaluated together!&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Line search methods|Line Search Method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Expand the introduction and avoid discussion on some of the specific steps in the solution process. &lt;br /&gt;
# Provide references here. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The phrase “are as follows” in the steepest descent method discussion needs to be followed by a colon. &lt;br /&gt;
# Rephrase “has a nice convergence theory” and cite a reference for this claim.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Add citation after “.. proposed by Phillip Wolfe in 1969.”&lt;br /&gt;
# Figure 1 is between two sections. Please fix this issue. &lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# Add some space between iterations or subsection break&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# Too few references in this section. &lt;br /&gt;
# Last paragraph makes some claims without references. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Piecewise linear approximation|Piecewise Linear Approximation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The content of this section is good, but there are some issues with sentence clarity and some other grammatical errors. Please revisit this section and make changes accordingly. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Fix typo “to force the x’ values become associated with”. &lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Some of these longer sentences are hard to read. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Expand the conclusion section to be longer than one sentence. The conclusion section to include a brief summary of what was discussed above, an emphasis on it’s significance, and a brief discussion of future extensions and research direction if applicable.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to sources when possible.&lt;br /&gt;
&lt;br /&gt;
== [[Mathematical programming with equilibrium constraints|Mathematical Programming with Equilibrium constraints]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes several terms like variational inequalities, constraint qualifications that were not discussed in the class. Please add a sentence to explain them before using them.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The meaning of parameter vector x is unclear. Please add more information or update if necessary.&lt;br /&gt;
# Equations and symbols in the PIPA subsection are not formatted correctly. Please use the same formatting for all equations, so they read as mathematical equations and not text. This goes for all other sections as well.&lt;br /&gt;
# Use equations instead of images to represent math programs and equations in the Implicit Descent and SQP subsection.&lt;br /&gt;
# Apart from the steps for each solution technique, please also add a few sentences that describe each method.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please define the terms like NCP, MP before abbreviating them. Also try not to unnecessarily abbreviate simple terms.&lt;br /&gt;
# Equations should be typed by LaTex. Images for equations are unacceptable.&lt;br /&gt;
# GAMS code is strongly discouraged. Please solve the problem &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The selected numerical example is fine but is directly solved with the MPEC solver in GAMS. Try to solve it manually like the homework/in-class problems step by step using the steps described in the previous section by choosing any of the methods.&lt;br /&gt;
# Avoid using figures in the equations (subject to etc)&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Add references to “power management, highway pricing, chemical process engineering, and traffic planning.”&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Wing shape optimization|Wing shape Optimization]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction is missing several references (e.g., “software packages like computational fluid dynamics..”, sentences containing things that aren’t common knowledge, performance claims, etc.)&lt;br /&gt;
# Avoid discussion involving finer details of subject methods in this section. &lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. Same applies to box of content!&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Properly cite the CFD package, don’t just include a link. &lt;br /&gt;
# Properly label the figure with a figure number.&lt;br /&gt;
# Consider removing white space between isolated sentences to improve readability. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# If you’ve already defined an abbreviation (CFD), there is no need to define it again. Just use the abbreviation.&lt;br /&gt;
# Avoid pronouns such as “we” or “they”.&lt;br /&gt;
# Phrases like “under the following” need to be followed by a colon.&lt;br /&gt;
# Properly label the figure with a figure number and consider making them larger to improve visibility. Call the reader&#039;s attention to the figures in text by referencing the figure number.&lt;br /&gt;
# “As seen in the video below” is stated yet there are only images present and it may be initially unclear to the reader which figure is being referenced here. &lt;br /&gt;
# Avoid inserting inline citations like “[4] introduces an..”  as it is a bit informal when you don’t explicitly name the subject.&lt;br /&gt;
# Don’t just cite the reference when discussing the problem formulation, explicitly write the model formulation and solution process using LaTex or equation visual editor.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Some characters are randomly capitalized in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# These variables should be defined before the conclusion section, they are out of place here. Also, please use normal text when explaining variables except for the variable symbol. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Interior-point method for NLP|Interior point method for NLP]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Primal-Dual formulation and comparison to the Barrier Method is not discussed.&lt;br /&gt;
# Include brief discussion about big O convergence rates.&lt;br /&gt;
# Need discussion about the concept of “central path” and the notion of self concordance&lt;br /&gt;
# Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Graphs and images are incorrectly formatted to the page. Consider proper alignment with respect to the text body.&lt;br /&gt;
# Use explicitly typed Latex equations instead of images to represent math programs and equations.&lt;br /&gt;
# Fix typo “optimisation”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xi ”, “μ”, etc.).&lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# There are formatting issues with figures 2,3. Please make sure to embed them within their respective sections. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section &lt;br /&gt;
# Minor character code typos in the conclusion.&lt;br /&gt;
# Also, please add more discussion in this section. Future research directions is a good start.&lt;br /&gt;
# There is a box &amp;quot;􏰐&amp;quot;&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[AdaGrad|Adagrad]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Include discussion on its variants (most important is AdaDelta).&lt;br /&gt;
# Include disadvantages of Adagrad, since this provides motivation for the discussion on the variants and improvements of Adagrad&lt;br /&gt;
# Include comparisons to other popular optimizers (particularly important is comparisons to regular SGD and Adam)&lt;br /&gt;
# Different convergence rates are possible depending on the setting where Adagrad is used, but this is not mentioned on the page currently. As such the regret bound section should be more thoroughly explained.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the first sentence, “..take the following numerical example” should be followed by a colon. &lt;br /&gt;
# Fix typo “trayectory”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is too short; include specific applications in which input features are sparse and Adagrad excels.&lt;br /&gt;
# Add reference to the claim “Mainly, it is a good choice for deep learning models with sparse input features”.&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References &lt;br /&gt;
&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources (even if the base algorithm itself comes from a singular paper)&lt;br /&gt;
&lt;br /&gt;
== [[McCormick envelopes|McCormick Envelopes]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: OK but I suggest removing NetID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# First sentence is hard to read. Please consider keeping sentences below 25-30 words. &lt;br /&gt;
# No references provided. Please cite all sources. &lt;br /&gt;
# Figure 1 is provided in the middle between two sections. Please include in the introduction section. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# When using mathematical expressions and symbols, please use the equation editor. (e.g., x*y, exy + y, sin (x+y) - x2)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution. &lt;br /&gt;
# For the sample GAMS code, please place it in a code box&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each. &lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section: &lt;br /&gt;
* References&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4755</id>
		<title>2021 Cornell Optimization Open Textbook Feedback</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4755"/>
		<updated>2021-12-05T01:09:08Z</updated>

		<summary type="html">&lt;p&gt;Asa273: /* McCormick Envelopes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[Lagrangean duality|Lagrangian duality]] ==&lt;br /&gt;
* Author list, sections and TOC&lt;br /&gt;
# Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor and avoid HTML formatting on the section titles.&lt;br /&gt;
# Remove cornell ID from Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes sentences on constructing the dual problem and is referred to as Lagrangian relaxation (LR). This is incorrect, please fix the definition of LR.&lt;br /&gt;
# Definitions of LR and its relation to duality should be double checked and re-written.&lt;br /&gt;
# Only one reference is present in this section. Please add more relevant references by expanding this section.&lt;br /&gt;
# Consider merging the “introduction” and “history” sections.&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The Lagrangian variables associated with equality constraints h(x) are unbounded but the Lagrangian dual problem states them as non-negative. Please fix the same.&lt;br /&gt;
# Also to construct a dual, we do not change minimization to maximization directly. We observed such things in the examples in lecture notes due to simplification. The lagrangian dual problem would be minimize (,).&lt;br /&gt;
# Adding to the previous point, the Lagrangian is a lower bound on the original objective; the solution to the primal and dual or only equivalent if the duality gap is 0. You reference this in one section, but this is after your statement “Hence, solving the dual problem, which is a function of the Lagrangian multipliers (𝜆*) yields the same solution as the primal problem, which is a function of the original variables (x*). “. Please clarify the specific conditions that must hold for the solution of the dual to be equal to the primal’s.&lt;br /&gt;
# You refer to the “Complementary Slackness Theorem”, but don’t actually write the mathematical representation of complementary slackness. Please fix this. Also consider including the derivation of the complementary slackness condition, as it is both easy and short. Boyd is a good reference for this.&lt;br /&gt;
# Last step of the “process” subsection also needs updating according to the previous comments.&lt;br /&gt;
# The inline notations should also be typed using LaTex.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Only one dual variable is associated with each constraint. The numerical example uses two for the first and second constraint which is unnecessary. Please update it accordingly for both constraints. This particular example will only have two dual variables instead of the five dual variables used currently.&lt;br /&gt;
# All consecutive steps need to be updated since the dual variables would be updated.&lt;br /&gt;
# After substitution the nonlinear function should be further simplified. The current expression reads like a highly nonlinear function but can be easily simplified.&lt;br /&gt;
# Similar to the comments in the methodology section, inverting minimize to maximize is incorrect. Please update the dual objective function accordingly.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Bullet points could be used to state the last four real-world examples that explain the physical meaning of the primal and dual problems.&lt;br /&gt;
# Add references for the last set of applications. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# This section contains a few typos. Please fix the same.&lt;br /&gt;
* References&lt;br /&gt;
# Some citations&#039; hyperlinks are displaying.&lt;br /&gt;
&lt;br /&gt;
== [[Disjunctive inequalities|Disjunctive Inequalities]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section and semester&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# No citations are present in this section.&lt;br /&gt;
# “mixed-integer programming (MIP)” should be used instead of “multiple integer programming (MIP)”. Please fix this error.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The abbreviation MILP is not previously defined. Please fix this issue.&lt;br /&gt;
# You consistently use the negative sign instead of the NOT operator for y (-y instead of ¬y). &lt;br /&gt;
# Some inconsistencies with the spacing of variables, constraints, etc., under the “General” section that need to be fixed.&lt;br /&gt;
# Typo in “This is shown below by M1, M2, y1, and y1:” where y1 needs to be changed to y2. Why use two different Big-M variables here? Elsewhere in the Wiki you only use one so this could lead to confusion with a general audience. Also if this was taken from the lecture notes then it needs to be cited.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please reformulate and solve a complete numerical example rather than just reformulating a general example. Demonstrate the use of Big-M and Convex Hull formulation in an optimization problem that provides details such as individual steps in the problem solving process and final results.&lt;br /&gt;
# Add space between vee (V) operator and brackets in first line of Latex&lt;br /&gt;
# Please format variables correctly, for example, use x1 instead of x1.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please format the equations appropriately either by using latex code or the visual editor. These images are NOT acceptable!&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# There is no conclusion presented in this section at all.&lt;br /&gt;
* References&lt;br /&gt;
# The included references have NOT been used anywhere in the Wiki. Add references for sentences that are not common knowledge and please link them appropriately with the text in Wiki. If the figures used here were not original works, you must also cite them. &lt;br /&gt;
# There are many papers on this topic. A simple Google (Scholar) search could provide you with sufficient references to cite. &lt;br /&gt;
# Many important references of this topic are missing.&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
==[[Stochastic programming|Stochastic Programming]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell IDs&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
# This section only includes two sentences on Stochastic programming (SP), while the rest gives examples of uncertainty. Please discuss the need for SP in the presence of uncertainty. Also, discussion on robust optimization and its limitations should be removed since it is out of place.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please avoid direct inline linkbacks to Wikipedia.&lt;br /&gt;
# The symbol “xi” in the methodology subsection should be explained.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Copying a numerical example &amp;quot;entirely&amp;quot; from a textbook is inappropriate. Your team should come up with a &amp;quot;numerical&amp;quot; case.&lt;br /&gt;
# No specific application context is needed for a numerical example.&lt;br /&gt;
# The inline notations (`x1`, `s1`) should also be typed using LaTex.&lt;br /&gt;
# Label all tables with a table number for better readability. &lt;br /&gt;
# Properly format the solution table with the label attached rather than the following sentence. The solution table looks different from the others, please fix this for consistency. &lt;br /&gt;
* A section to discuss and/or illustrate the applications;&lt;br /&gt;
# I suggest eliminating citing the last name of the first author (i.e. Zhou et al.)&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# URLs of some citations are not properly formatted (not showing the hyperlinks).&lt;br /&gt;
&lt;br /&gt;
== [[Exponential transformation|Exponential Transformation]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction.&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Last sentence with 51 words is hard to read. &lt;br /&gt;
# Second Sentence: please change the word “they” as it could make the meaning ambiguous&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
# If you use abbreviations, please introduce them (e.g. NLP,MINLP)&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please explain the transformation in words along with equations&lt;br /&gt;
# Terms like posynomial should be described in detail.&lt;br /&gt;
# Please move the numerical example to the section below&lt;br /&gt;
# The “(eq 1)” is not needed here.&lt;br /&gt;
# Please expand this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the third equation of the numerical example, it is confusing to have coefficients after numbers. Some readers may read it as an exponent.&lt;br /&gt;
# Last equation in this section after “further linearization” is incorrect. This equation cannot be further linearized, please fix this.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Missing part of text: “Proof of convexity of with positive definite test of Hessian…”&lt;br /&gt;
# Applications are not numerical examples. Please refer to this link for example of applications: [[Duality|https://optimization.cbe.cornell.edu/index.php?title=Duality]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
# The section current applications is redundant&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
# Under current applications, do not just use a hyperlink to describe an application. Actually describe it. And properly inline citation style should be used instead of the hyperlink. &lt;br /&gt;
# The convexification application of MINLP can be further simplified for binary variables. Please refer to the lecture slides for more information.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references by using this as Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
&lt;br /&gt;
== [[Sparse Reconstruction with Compressed Sensing|Sparse reconstruction with Compressed Sensing]]  ==&lt;br /&gt;
This Wiki needs a significant rewrite. Please go through the comments for details.&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction section should include information about the problem and its implications presented briefly. Please use full sentences to write this Wiki. You may use tools like Grammarly to check sentence formation and grammar.&lt;br /&gt;
# This section includes several typos like “sub modual”. Please fix them throughout the wiki and delete them if not required.&lt;br /&gt;
# Many abbreviations are used before previously defining them. Please define these abbreviations before using them in the text.&lt;br /&gt;
# This section is incomprehensible in its current form. Please rewrite with proper comprehension.&lt;br /&gt;
# Equations and math symbols need proper reformatting. The current version reads like text (along with equations) copy-pasted from a specific source.&lt;br /&gt;
# Try to place the figure at the top of the Wiki between the main text.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# I suggest the use of more formal abstract illustrations. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Equations and symbols need proper reformatting.&lt;br /&gt;
# Lemmas and theorems are not expected for this Wiki. Sparse reconstruction is a straightforward concept but is unnecessarily complicated here. Please refer to other Wiki examples to get an idea of what the Wiki should convey.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Numerical example is missing.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion section is missing.&lt;br /&gt;
* References&lt;br /&gt;
# The current reference list is not correctly formatted. References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Portfolio optimization|Portfolio Optimization]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell id&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introductory sentence should be rephrased. The action of minimizing the risks does not inherently maximize the gains, rather PO aims to maximize gains whilst minimizing risks. &lt;br /&gt;
# Amount of whitespace can be reduced by changing the orientation of Figure 1 and the sentences in this section.&lt;br /&gt;
# Define terms such as risk, return, portfolio, etc., when you introduce them. Assume that the reader may not know much about finance. This goes for all other sections as well. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# A brief mention of modern portfolio theory (i.e.. Markowitz) would be appropriate in this section. &lt;br /&gt;
# Several grammatical errors here involving sentence structure and clarity. Some questionable semantics (e.g., “The portfolio optimization mainly assumes two directions.”) and syntax (phrases such as “.. is as follows” should be followed by a colon). Misuse of commas and missing commas in this section. Two sentences introducing E(rp) and w should be combined into one.&lt;br /&gt;
# Use LaTex to distinguish variables written within a sentence, such as m and n. &lt;br /&gt;
# Rephrase “Cut the relevant information and conditions in the portfolio optimization, as well as the final requirements into the relevant variables, constraints and linear functions of the linear programming problem.”&lt;br /&gt;
# An explanation of a few common constraints would be helpful, rather than just including a table. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# All tables need to be labeled.&lt;br /&gt;
# Include figure number in label for consistency. &lt;br /&gt;
# Fix misspelling “dolling decision variables”. &lt;br /&gt;
# Use LaTex for all variables, equations, and constraints here.&lt;br /&gt;
# Example 2 table is hard to read, so making it bigger would help. &lt;br /&gt;
# Remove the “Using excel as the solver” part from the sentence before the solution discussion. &lt;br /&gt;
# Some grammatical errors here (phrases such as “.. is as follows” should be followed by a colon). &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Rephrase “Portfolio optimization can be used to screen investment projects that meet investors, rationally allocate investment amounts, etc.”&lt;br /&gt;
# Not sure “relevant” is the correct word choice here. &lt;br /&gt;
# You need more specific examples with the utility of portfolio optimization, this section is quite general as is. Some more detail and focus on real-world applications in the financial industry that relate to retirement planning, financial security, economic stability, etc., would be helpful. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Need some commas here.&lt;br /&gt;
# The sentence “Linear programming has been around since the 1940’s and has such a wide base of applications” is not necessary. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove white space between end of sentences and reference numbers.&lt;br /&gt;
&lt;br /&gt;
== [[Chance-constraint method|Chance constraint method]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please consider correcting a few grammatical errors: “pre-planned for”, “god”, “certain levels of feasibility is guaranteed in what are”, and “Performance of a system”&lt;br /&gt;
# In “Chance-constraint”, it is capitalized randomly throughout the introduction. Please correct.   &lt;br /&gt;
# Please use technical language to briefly introduce chance-constrained programming. Words like “acts of god”, “cost of doing business” are not appropriate for a  technical Wiki.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Xi is an uncertainty/randomness variable. It is better to use clear language. &lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others.&lt;br /&gt;
# Theory is insufficient. Please expand and explain different approaches. &lt;br /&gt;
# Please add pros and cons explicitly as a list. &lt;br /&gt;
# Explain the physical meaning for examples of chance constraints along with all the notations used.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others. &lt;br /&gt;
# Please change the table format so as not to confuse the reader. &lt;br /&gt;
# Multiple instances of [Chart to be added] are missing.&lt;br /&gt;
# Example is incomplete. &lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please connect several grammatical and spelling errors: “real life application”, Energy creation, particularly in renewable sources, have high variabilities”, and others&lt;br /&gt;
# “Zhao, Xue, Cao, and Zhang”. No need to list all authors within the article. Provide a reference is sufficient. If authors must be mentioned, (Zhao et al.) should be ok.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Uniqueness and universality earlier are not clear to me. If they are not discussed earlier in the application, it would be better not to introduce new discussions in the conclusion.&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Bayesian Optimization | Bayesian Optimization]]  ==&lt;br /&gt;
&lt;br /&gt;
* Contents: Subheadings for EI and the algorithm should not be bolded, Random words should not be capitalized.&lt;br /&gt;
* Author list: Remove cornell ID, Please check names&lt;br /&gt;
* Introduction&lt;br /&gt;
# The introduction is too general and not substantial enough. For example, simply saying BayesOpt is useful when the objective function is unknown obscures exactly HOW it is useful (namely, computational efficiency in applications where ground truth sampling is expensive). Discussion on applications should be moved to a separate section.&lt;br /&gt;
# Machine learning rarely includes black-box functions to be optimized. Bayesian optimization is almost never used for optimizing ML loss functions but can instead be used for hyperparameter optimization. Please update such claims in this section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Captions need reformatting.&lt;br /&gt;
# Consider italicizing keywords rather than bolding.&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Discussion on acquisition functions should include comparisons, tradeoffs, and reasons to use one over the other. Should also note that expected improvement is the most widely used in practice, and explain.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Please write equations in the Wiki instead of attaching images for equations.&lt;br /&gt;
# Acquisition function figure could be made larger and clearer to improve readability.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any references to functions or methods in code ‘e.g. fmin’ should be properly formatted as code-stylized text.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Avoid including a figure of the code for this example and explicitly describe the steps to the modeling and solution process instead. &lt;br /&gt;
# Avoid pronouns such as “our” and “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please do not use brackets to enclose lists.&lt;br /&gt;
# Some claims here should be supported by references. Please cite each source after its sentence. &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to “pop” machine learning blogs where anyone can be an author. (e.g. towardsdatascience)&lt;br /&gt;
&lt;br /&gt;
Notes on grammar: Needs some work. Several instances where colons are inappropriately inserted mid sentence or in subheadings. Explanations are not terse. Several instances of switching between personal and impersonal style of writing, which is distracting.&lt;br /&gt;
&lt;br /&gt;
== [[Conjugate gradient methods|Conjugate gradient methods ]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Introduction&lt;br /&gt;
# All inline notations (e.g., `x`, `A`) should be typed using LaTex.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Is Gauss-Newton no longer referenced?&lt;br /&gt;
# Theorems listed in the first section should be accompanied with high level explanation, not just a list of the theorems themselves. The page should read like an article, with proper flow.&lt;br /&gt;
# Please indent equation blocks.&lt;br /&gt;
# Please properly format pseudocode.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Steps should be accompanied with explanation, or reference to the corresponding step in the pseudocode.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
# Consider including 2 additional examples of applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Consider adding future research directions&lt;br /&gt;
* References&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Too few references.&lt;br /&gt;
&lt;br /&gt;
== [[Geometric programming|Geometric Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Examples of applications in this section use the same reference. Please cite their individual sources.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The symbol denoting the domain in the definition of a monomial is unclear. Please clarify it or fix this if it is incorrect.&lt;br /&gt;
# Definition of posynomial refers to section 2.1 which is missing from the Wiki (sections are not numbered in the main text).&lt;br /&gt;
# In the generalized posynomial subsection, bullet points do not tell us why h(x) is posynomial. Either provide reasons or simply state that h(x) is posynomial. Also explain why h3 is a generalized posynomial.&lt;br /&gt;
# Additional theory on the feasibility analysis could be provided in this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the transformation example, the last two constraints could also be simplified by applying a natural logarithm on both sides. Please update them as well.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The figure in this section needs to be labeled. &lt;br /&gt;
# The figure needs to be resized and perhaps aligned to the center.  &lt;br /&gt;
* A conclusion section:&lt;br /&gt;
# Please avoid vague language such as: “This makes”.&lt;br /&gt;
# Please avoid opinionated statements: “one of the best ways”.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Adam|Adam]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Some grammatical errors here, mostly related to the need for commas in certain places (e.g., “Before Adam..”).&lt;br /&gt;
# Some minor errors with parts of speech throughout the section, need to revisit phrases such as “which has broader scope in future for”, etc. &lt;br /&gt;
# Try splitting up some of the longer sentences in this section, a couple are hard to read.&lt;br /&gt;
# Avoid definitive statements about Adam being the best or always better solver, as this is simply not true (the choice of the “best” optimizer is setting-dependent). Use language such as “Research has shown that Adam has demonstrated superior experimental performance over..” and then cite academic references to back this claim. &lt;br /&gt;
# What does adam stand for? Introduction is insufficient. Please expand. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Revise grammar here, noticing some missing commas and uncapitalized word after period.&lt;br /&gt;
# Rephrase “second one is to update the old position with the updated position”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section, and actual subscripts instead of “m_t”, etc. &lt;br /&gt;
# Avoid inserting inline citations after words like “According to..” or “This article..” as it is a bit informal. This could be rephrased or changed to something like “According to author,^[2] …” with author name inserted. &lt;br /&gt;
# Remove white space before the period in RMSP discussion.&lt;br /&gt;
# Please provide a pseudocode. &lt;br /&gt;
# Please use list the two methods here “Adam is a combination of two gradient descent methods which are explained below”&lt;br /&gt;
# Please expand the theory section significantly. Theoretical convergence properties should be discussed, even if briefly.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Same comment as before, consider replacing inline citations after words like “According to..”. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to blogs and use peer-reviewed academic references instead. &lt;br /&gt;
# Too few references.&lt;br /&gt;
&lt;br /&gt;
== [[A-star algorithm|a* algorithm]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic:&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. &lt;br /&gt;
# Please consider correcting a few grammatical errors: “Optimal path”, “cross country”, missing period at end of first paragraph, other random capitalizations, etc.&lt;br /&gt;
# There are no citations in the introduction. Please cite every source.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add the mathematical description of the algorithm.&lt;br /&gt;
# Reference style varies in sentences. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please fix grammatical and spelling errors as (“from current position to the goal”, “There are a lot of discussions”, etc). Also, many hyphens are missing as “non playable”.&lt;br /&gt;
# In algorithms, it is a standard to add high-level description (i.e. pseudocode or flowchart). Please incorporate it. &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section (e.g., “f(n)...”, “h(n)..”, etc.). This goes for other sections as well.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The numerical example does not show the full computations the algorithm performs. Please show the computation on a smaller example.&lt;br /&gt;
# Instead of writing things like “The above image..”, label each figure and use the figure number to refer to it in text. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# No references in the applications. Please cite every source &lt;br /&gt;
# Preferably, add at least an additional application.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion should summarize descriptions. Please modify it to provide a summary.  &lt;br /&gt;
# Please pay attention to the length and structure of sentences here and in the full page. First sentence is hard to read.&lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format and are not linked correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Job shop scheduling|Job-Shop Scheduling Problem]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The current introduction to the jobshop scheduling problem has only two sentences in addition to the parameter description. Introduction typically contains information about the problem, its importance in the real-world, and some information about the solution techniques and their types to solve the problem. Please add some information that covers the above.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# It is unclear whether the assumptions stated in this section are required to apply the following solution techniques. Please clarify the same. Also use complete sentences to state them.&lt;br /&gt;
# The branch and bounds method described in this section only discusses the solution technique for problems with one machines. However, branch and bound is a general technique that can be applied to any MILP problems with varying scales. Please update the “methods” section to be as general as possible.&lt;br /&gt;
# Since this Wiki focuses on jobshop scheduling, at least two methods are expected. Branch and bound is a general MILP technique, so, it is recommended to add a tailored technique that can only solve specific jobshop scheduling problems. Solving the numerical example with this technique is not necessary.&lt;br /&gt;
# Reference to the branch and bound technique described in this section is a “youtube” video. Please add references in literature that describe this method in detail. The method used in this video is highly tailored for a single machine application. This is also an incorrect way to cite a reference. Please keep this section as general as possible.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section and all other sections as well.&lt;br /&gt;
# Check grammar in this section. For example, phrases like “are as follows” need to be followed by a colon and not a period. &lt;br /&gt;
# Consider rewriting the assumptions as a list in this section. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The example used in this section is exactly the same as the one in the youtube video. Please use a modification of this example or choose another example/method to demonstrate the solution technique.&lt;br /&gt;
# The figure in this section is not numbered when all others are. Relabel this figure for consistency and its number to refer to it in-text.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section should only focus on real-world applications of the jobshop scheduling problem. But currently, this section includes additional information on solution techniques/complexity that is appropriate for the Introduction section. Please discuss the applications of the problem in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# The meaning of  “Operations applications” is unclear. Please explain or update if necessary.&lt;br /&gt;
# The current conclusion section does not properly summarize the problem. Please refer to other Wiki examples for an idea to update the section accordingly.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Please reference media sources like reference 5 appropriately.&lt;br /&gt;
&lt;br /&gt;
== [[Optimization in game theory|Optimization in game theory]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: remove cornell IDs. &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please edit references.&lt;br /&gt;
# Add a mathematical description of the problem and a pseudocode/flowchart for the Lemke-Howson algorithm.  &lt;br /&gt;
# Rephrase “This algorithm utilizes iterated pivoting much like the simplex algorithm used in the simplex algorithm used in linear programming”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please organize the last part in a more readable format. Questions may be in bold and numbered, answers are more direct, etc.&lt;br /&gt;
# Remember to cite all images and tables. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Very good, link the reference and cite all sources. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summarizing especially from theory sentences and avoid long sentences. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
&lt;br /&gt;
== [[Trust-region methods|Trust-region methods]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
# Remove cornell IDs. Author is also spelled incorrectly. &lt;br /&gt;
# Add the course section.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xk”, “f`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “we”. This goes for all other sections as well.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Organization of ideas in this section needs work.&lt;br /&gt;
# You have not defined explicitly why the Cauchy point is important to compute beyond a vague allusion to performance improvements, which is also wrong (it is useful because of its guarantees for convergence, not performance) It is also misspelled.&lt;br /&gt;
# Each approach should have accompanying explanation and motivation for why it is being discussed. It is not enough to outline the algorithm.&lt;br /&gt;
# Please make sure symbols are properly subscripted and superscripted (e.g. “pk” should be “p_k”&lt;br /&gt;
# Please format the algorithm in proper algorithmic pseudocode format.&lt;br /&gt;
# Little to no discussion on global convergence guarantees&lt;br /&gt;
# Please include discussion about the advantages and disadvantages of the algorithm&lt;br /&gt;
# Fix typo “couchy point”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any code functions (uminfunc) should have proper text formatting.&lt;br /&gt;
# The graph needs a better caption explaining how the axes are labeled and what data points are being shown.&lt;br /&gt;
# Please increase the quality of the figure. It is hard to see the red line. &lt;br /&gt;
# Add citation to “The Rosenbrock function is a non-convex function, introduced by Howard H. Rosenbrock in 1960, which is often used as a performance test problem for optimization algorithms.”&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The content in this section as it is currently does NOT describe applications, but rather different approaches within the trust region methodology. Please provide specific applications (e.g. TRPO in reinforcement learning).&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summary, future research directions for example is a good start.&lt;br /&gt;
* References&lt;br /&gt;
# Please consider having the references as this Wiki template, &amp;lt;nowiki&amp;gt;https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
There are numerous misspellings, grammatical errors, and incorrect claims. Please fix these.&lt;br /&gt;
&lt;br /&gt;
== [[Momentum|Momentum]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Apart from an explanation on momentum, it is necessary to briefly point out the limitations of SGD and why momentum could help with these limitations. Please update it accordingly.&lt;br /&gt;
# Remove bold on “Momentum”.&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# It is important to use technical language for this Wiki. Although a layman’s explanation is appreciated, it would be better to skip using words like “zig zagging”. Try to explain all concepts in a technical language with few simplifications but NOT vice versa.&lt;br /&gt;
# The definition of the update rule for SGD with momentum looks incorrect, specifically the first expression. Please fix it and also explain all the parameters used.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “W”, “V`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “you”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please try to label the plots that explains what each line color means.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please use correct terminology like “optimizing non-convex functions” and not “training non-convex models”.&lt;br /&gt;
# Adam, Adadelta, and RMSprop are variants of SGD that already use momentum. Please double check the writing and update if necessary.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please refrain from using words like “zig zag” effects.&lt;br /&gt;
* References&lt;br /&gt;
# Almost all references used are URLs. Please try to add journal/conference articles or books for references, instead of directly citing the URLs.&lt;br /&gt;
&lt;br /&gt;
==  [[Stochastic dynamic programming|Stochastic Dynamic programming]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions &lt;br /&gt;
# Remove the grey box background of equations.&lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Outer-approximation (OA)|Outer-approximation]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic &lt;br /&gt;
# See formatting guideline below&lt;br /&gt;
# Avoid opinionated statements such as “MINLP problems are usually the hardest to solve”.&lt;br /&gt;
# Rearrange the text such that the MINLP formulation is in the theory section and keep the introduction in words only.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Consider left aligning equations and optimization problem formulations by the “=”. See [[Stochastic programming|https://optimization.cbe.cornell.edu/index.php?title=Stochastic_programming]] for an example&lt;br /&gt;
# The sentence “The Outer-Approximation (OA) algorithm was first proposed by Duran and and Grossmann in 1986 to solve MINLP problems.” needs a reference. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# “Minimize” and “subject to” should be “min” and “s.t.” in MathType&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Does not explicitly point out why OA is applicable (and/or preferred) in these applications, rather than other MINLP approaches (show that the problem formulations are amenable to a solution approach through OA)&lt;br /&gt;
# The sentence “... an active research area and there exists a vast number of applications in fields such as engineering, computational chemistry, and finance.” needs references. &lt;br /&gt;
# Place GAMS code in a single code box or remove it.&lt;br /&gt;
# Consider reformatting to make steps more readable. Inserting spaces and breaking down steps would help. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Too short. Consider discussion on future research direction and discussion on uncertainty&lt;br /&gt;
# Please review abbreviations throughout the page. Why is MINLP redefined here? “Outer-Approximation is a well known efficient approach for solving convex mixed-integer nonlinear programs (MINLP)”. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove &amp;quot;Template:Reflist&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==  [[Unit commitment problem|Unit commitment problem]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction and avoid discussions of examples or specific applications in this section.&lt;br /&gt;
# The sentence “Nonlinear, Non-convex programming optimization problem.” doesn’t make sense by itself and Non-convex shouldn’t be capitalized.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Figure/image format should be revised to better display the content.&lt;br /&gt;
# Uppercase characters are used randomly (e.g., “non-convex transmission Constraints”) . Please follow correct language conventions for sentence structure.&lt;br /&gt;
# Avoid inserting inline citations after words like “written in matrix form as equation [3]..” or “presented in [3]...” as it is a bit informal when you don’t explicitly name the subject. Also these two sentences are grammatically incorrect and appear to be missing an ending period and comma, respectively. &lt;br /&gt;
# Don’t say “written in matrix form as equation..” and just cite the reference, actually write out the equation. &lt;br /&gt;
# Properly label the figure in this section with a figure number and improve visibility by making it larger. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Label the figures in this section properly with figure numbers.&lt;br /&gt;
# Fix typo “while minimize” to “while minimizing”. &lt;br /&gt;
# Avoid pronouns such as “we”. &lt;br /&gt;
# Use the equation editor when typing equations. &lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# I suggest changing the order of the subtitles here. For example, Single-Period Unit Commitment. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
==  [[Frank-Wolfe|Frank-Wolfe]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# I suggest highlighting disadvantages along with advantages. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# “[n x 1] matrix” please use the equation editor to express mathematical descriptions and symbols (p,b, etc)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please show at least a few iterations. Even for smaller examples if needed. Report the final solution. &lt;br /&gt;
# Please use the LaTex code or equation editor for min and include s.t., etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications: &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Same as the introduction. Pros and cons should be evaluated together!&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
==  [[Line search methods|Line Search Method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Expand the introduction and avoid discussion on some of the specific steps in the solution process. &lt;br /&gt;
# Provide references here. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The phrase “are as follows” in the steepest descent method discussion needs to be followed by a colon. &lt;br /&gt;
# Rephrase “has a nice convergence theory” and cite a reference for this claim.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Add citation after “.. proposed by Phillip Wolfe in 1969.”&lt;br /&gt;
# Figure 1 is between two sections. Please fix this issue. &lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# Add some space between iterations or subsection break&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# Too few references in this section. &lt;br /&gt;
# Last paragraph makes some claims without references. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Piecewise linear approximation|Piecewise Linear Approximation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The content of this section is good, but there are some issues with sentence clarity and some other grammatical errors. Please revisit this section and make changes accordingly. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Fix typo “to force the x’ values become associated with”. &lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Some of these longer sentences are hard to read. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Expand the conclusion section to be longer than one sentence. The conclusion section to include a brief summary of what was discussed above, an emphasis on it’s significance, and a brief discussion of future extensions and research direction if applicable.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to sources when possible.&lt;br /&gt;
&lt;br /&gt;
==  [[Mathematical programming with equilibrium constraints|Mathematical Programming with Equilibrium constraints]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes several terms like variational inequalities, constraint qualifications that were not discussed in the class. Please add a sentence to explain them before using them.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The meaning of parameter vector x is unclear. Please add more information or update if necessary.&lt;br /&gt;
# Equations and symbols in the PIPA subsection are not formatted correctly. Please use the same formatting for all equations, so they read as mathematical equations and not text. This goes for all other sections as well.&lt;br /&gt;
# Use equations instead of images to represent math programs and equations in the Implicit Descent and SQP subsection.&lt;br /&gt;
# Apart from the steps for each solution technique, please also add a few sentences that describe each method.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please define the terms like NCP, MP before abbreviating them. Also try not to unnecessarily abbreviate simple terms.&lt;br /&gt;
# Equations should be typed by LaTex. Images for equations are unacceptable.&lt;br /&gt;
# GAMS code is strongly discouraged. Please solve the problem &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The selected numerical example is fine but is directly solved with the MPEC solver in GAMS. Try to solve it manually like the homework/in-class problems step by step using the steps described in the previous section by choosing any of the methods.&lt;br /&gt;
# Avoid using figures in the equations (subject to etc)&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Add references to “power management, highway pricing, chemical process engineering, and traffic planning.”&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Wing shape optimization|Wing shape Optimization]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction is missing several references (e.g., “software packages like computational fluid dynamics..”, sentences containing things that aren’t common knowledge, performance claims, etc.)&lt;br /&gt;
# Avoid discussion involving finer details of subject methods in this section. &lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. Same applies to box of content!&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Properly cite the CFD package, don’t just include a link. &lt;br /&gt;
# Properly label the figure with a figure number.&lt;br /&gt;
# Consider removing white space between isolated sentences to improve readability. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# If you’ve already defined an abbreviation (CFD), there is no need to define it again. Just use the abbreviation.&lt;br /&gt;
# Avoid pronouns such as “we” or “they”.&lt;br /&gt;
# Phrases like “under the following” need to be followed by a colon.&lt;br /&gt;
# Properly label the figure with a figure number and consider making them larger to improve visibility. Call the reader&#039;s attention to the figures in text by referencing the figure number.&lt;br /&gt;
# “As seen in the video below” is stated yet there are only images present and it may be initially unclear to the reader which figure is being referenced here. &lt;br /&gt;
# Avoid inserting inline citations like “[4] introduces an..”  as it is a bit informal when you don’t explicitly name the subject.&lt;br /&gt;
# Don’t just cite the reference when discussing the problem formulation, explicitly write the model formulation and solution process using LaTex or equation visual editor.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Some characters are randomly capitalized in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# These variables should be defined before the conclusion section, they are out of place here. Also, please use normal text when explaining variables except for the variable symbol. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
==  [[Interior-point method for NLP|Interior point method for NLP]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Primal-Dual formulation and comparison to the Barrier Method is not discussed.&lt;br /&gt;
# Include brief discussion about big O convergence rates.&lt;br /&gt;
# Need discussion about the concept of “central path” and the notion of self concordance&lt;br /&gt;
# Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Graphs and images are incorrectly formatted to the page. Consider proper alignment with respect to the text body.&lt;br /&gt;
# Use explicitly typed Latex equations instead of images to represent math programs and equations.&lt;br /&gt;
# Fix typo “optimisation”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xi ”, “μ”, etc.).&lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# There are formatting issues with figures 2,3. Please make sure to embed them within their respective sections. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section &lt;br /&gt;
# Minor character code typos in the conclusion.&lt;br /&gt;
# Also, please add more discussion in this section. Future research directions is a good start.&lt;br /&gt;
# There is a box &amp;quot;􏰐&amp;quot;&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[AdaGrad|Adagrad]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Include discussion on its variants (most important is AdaDelta).&lt;br /&gt;
# Include disadvantages of Adagrad, since this provides motivation for the discussion on the variants and improvements of Adagrad&lt;br /&gt;
# Include comparisons to other popular optimizers (particularly important is comparisons to regular SGD and Adam)&lt;br /&gt;
# Different convergence rates are possible depending on the setting where Adagrad is used, but this is not mentioned on the page currently. As such the regret bound section should be more thoroughly explained.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the first sentence, “..take the following numerical example” should be followed by a colon. &lt;br /&gt;
# Fix typo “trayectory”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is too short; include specific applications in which input features are sparse and Adagrad excels.&lt;br /&gt;
# Add reference to the claim “Mainly, it is a good choice for deep learning models with sparse input features”.&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References &lt;br /&gt;
&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources (even if the base algorithm itself comes from a singular paper)&lt;br /&gt;
&lt;br /&gt;
==  [[McCormick envelopes|McCormick Envelopes]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list: OK but I suggest removing NetID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# First sentence is hard to read. Please consider keeping sentences below 25-30 words. &lt;br /&gt;
# No references provided. Please cite all sources. &lt;br /&gt;
# Figure 1 is provided in the middle between two sections. Please include in the introduction section. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# When using mathematical expressions and symbols, please use the equation editor. (e.g., x*y, exy + y, sin (x+y) - x2)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please add a few sentences to show the transition from problem to solution. &lt;br /&gt;
# For the sample GAMS code, please place it in a code box&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each. &lt;br /&gt;
# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section: &lt;br /&gt;
* References&lt;br /&gt;
# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please follow the standard reference style - the current format is incorrect.&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4754</id>
		<title>2021 Cornell Optimization Open Textbook Feedback</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=2021_Cornell_Optimization_Open_Textbook_Feedback&amp;diff=4754"/>
		<updated>2021-12-05T01:07:52Z</updated>

		<summary type="html">&lt;p&gt;Asa273: /* Adagrad */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[Lagrangean duality|Lagrangian duality]] ==&lt;br /&gt;
* Author list, sections and TOC&lt;br /&gt;
# Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor and avoid HTML formatting on the section titles.&lt;br /&gt;
# Remove cornell ID from Author list&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes sentences on constructing the dual problem and is referred to as Lagrangian relaxation (LR). This is incorrect, please fix the definition of LR.&lt;br /&gt;
# Definitions of LR and its relation to duality should be double checked and re-written.&lt;br /&gt;
# Only one reference is present in this section. Please add more relevant references by expanding this section.&lt;br /&gt;
# Consider merging the “introduction” and “history” sections.&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The Lagrangian variables associated with equality constraints h(x) are unbounded but the Lagrangian dual problem states them as non-negative. Please fix the same.&lt;br /&gt;
# Also to construct a dual, we do not change minimization to maximization directly. We observed such things in the examples in lecture notes due to simplification. The lagrangian dual problem would be minimize (,).&lt;br /&gt;
# Adding to the previous point, the Lagrangian is a lower bound on the original objective; the solution to the primal and dual or only equivalent if the duality gap is 0. You reference this in one section, but this is after your statement “Hence, solving the dual problem, which is a function of the Lagrangian multipliers (𝜆*) yields the same solution as the primal problem, which is a function of the original variables (x*). “. Please clarify the specific conditions that must hold for the solution of the dual to be equal to the primal’s.&lt;br /&gt;
# You refer to the “Complementary Slackness Theorem”, but don’t actually write the mathematical representation of complementary slackness. Please fix this. Also consider including the derivation of the complementary slackness condition, as it is both easy and short. Boyd is a good reference for this.&lt;br /&gt;
# Last step of the “process” subsection also needs updating according to the previous comments.&lt;br /&gt;
# The inline notations should also be typed using LaTex.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Only one dual variable is associated with each constraint. The numerical example uses two for the first and second constraint which is unnecessary. Please update it accordingly for both constraints. This particular example will only have two dual variables instead of the five dual variables used currently.&lt;br /&gt;
# All consecutive steps need to be updated since the dual variables would be updated.&lt;br /&gt;
# After substitution the nonlinear function should be further simplified. The current expression reads like a highly nonlinear function but can be easily simplified.&lt;br /&gt;
# Similar to the comments in the methodology section, inverting minimize to maximize is incorrect. Please update the dual objective function accordingly.&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Bullet points could be used to state the last four real-world examples that explain the physical meaning of the primal and dual problems.&lt;br /&gt;
# Add references for the last set of applications. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# This section contains a few typos. Please fix the same.&lt;br /&gt;
* References&lt;br /&gt;
# Some citations&#039; hyperlinks are displaying.&lt;br /&gt;
&lt;br /&gt;
== [[Disjunctive inequalities|Disjunctive Inequalities]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section and semester&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# No citations are present in this section.&lt;br /&gt;
# “mixed-integer programming (MIP)” should be used instead of “multiple integer programming (MIP)”. Please fix this error.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The abbreviation MILP is not previously defined. Please fix this issue.&lt;br /&gt;
# You consistently use the negative sign instead of the NOT operator for y (-y instead of ¬y). &lt;br /&gt;
# Some inconsistencies with the spacing of variables, constraints, etc., under the “General” section that need to be fixed.&lt;br /&gt;
# Typo in “This is shown below by M1, M2, y1, and y1:” where y1 needs to be changed to y2. Why use two different Big-M variables here? Elsewhere in the Wiki you only use one so this could lead to confusion with a general audience. Also if this was taken from the lecture notes then it needs to be cited.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please reformulate and solve a complete numerical example rather than just reformulating a general example. Demonstrate the use of Big-M and Convex Hull formulation in an optimization problem that provides details such as individual steps in the problem solving process and final results.&lt;br /&gt;
# Add space between vee (V) operator and brackets in first line of Latex&lt;br /&gt;
# Please format variables correctly, for example, use x1 instead of x1.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please format the equations appropriately either by using latex code or the visual editor. These images are NOT acceptable!&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# There is no conclusion presented in this section at all.&lt;br /&gt;
* References&lt;br /&gt;
# The included references have NOT been used anywhere in the Wiki. Add references for sentences that are not common knowledge and please link them appropriately with the text in Wiki. If the figures used here were not original works, you must also cite them. &lt;br /&gt;
# There are many papers on this topic. A simple Google (Scholar) search could provide you with sufficient references to cite. &lt;br /&gt;
# Many important references of this topic are missing.&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
==[[Stochastic programming|Stochastic Programming]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell IDs&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
# This section only includes two sentences on Stochastic programming (SP), while the rest gives examples of uncertainty. Please discuss the need for SP in the presence of uncertainty. Also, discussion on robust optimization and its limitations should be removed since it is out of place.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please avoid direct inline linkbacks to Wikipedia.&lt;br /&gt;
# The symbol “xi” in the methodology subsection should be explained.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Copying a numerical example &amp;quot;entirely&amp;quot; from a textbook is inappropriate. Your team should come up with a &amp;quot;numerical&amp;quot; case.&lt;br /&gt;
# No specific application context is needed for a numerical example.&lt;br /&gt;
# The inline notations (`x1`, `s1`) should also be typed using LaTex.&lt;br /&gt;
# Label all tables with a table number for better readability. &lt;br /&gt;
# Properly format the solution table with the label attached rather than the following sentence. The solution table looks different from the others, please fix this for consistency. &lt;br /&gt;
* A section to discuss and/or illustrate the applications;&lt;br /&gt;
# I suggest eliminating citing the last name of the first author (i.e. Zhou et al.)&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# URLs of some citations are not properly formatted (not showing the hyperlinks).&lt;br /&gt;
&lt;br /&gt;
== [[Exponential transformation|Exponential Transformation]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Missing course section&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction.&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Last sentence with 51 words is hard to read. &lt;br /&gt;
# Second Sentence: please change the word “they” as it could make the meaning ambiguous&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
# If you use abbreviations, please introduce them (e.g. NLP,MINLP)&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please explain the transformation in words along with equations&lt;br /&gt;
# Terms like posynomial should be described in detail.&lt;br /&gt;
# Please move the numerical example to the section below&lt;br /&gt;
# The “(eq 1)” is not needed here.&lt;br /&gt;
# Please expand this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the third equation of the numerical example, it is confusing to have coefficients after numbers. Some readers may read it as an exponent.&lt;br /&gt;
# Last equation in this section after “further linearization” is incorrect. This equation cannot be further linearized, please fix this.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Missing part of text: “Proof of convexity of with positive definite test of Hessian…”&lt;br /&gt;
# Applications are not numerical examples. Please refer to this link for example of applications: [[Duality|https://optimization.cbe.cornell.edu/index.php?title=Duality]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
# The section current applications is redundant&lt;br /&gt;
# Please use the LaTex code or equation editor for min, s.t., etc.&lt;br /&gt;
# Under current applications, do not just use a hyperlink to describe an application. Actually describe it. And properly inline citation style should be used instead of the hyperlink. &lt;br /&gt;
# The convexification application of MINLP can be further simplified for binary variables. Please refer to the lecture slides for more information.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references by using this as Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Citation 7 is missing in current applications&lt;br /&gt;
&lt;br /&gt;
== [[Sparse Reconstruction with Compressed Sensing|Sparse reconstruction with Compressed Sensing]]  ==&lt;br /&gt;
This Wiki needs a significant rewrite. Please go through the comments for details.&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction section should include information about the problem and its implications presented briefly. Please use full sentences to write this Wiki. You may use tools like Grammarly to check sentence formation and grammar.&lt;br /&gt;
# This section includes several typos like “sub modual”. Please fix them throughout the wiki and delete them if not required.&lt;br /&gt;
# Many abbreviations are used before previously defining them. Please define these abbreviations before using them in the text.&lt;br /&gt;
# This section is incomprehensible in its current form. Please rewrite with proper comprehension.&lt;br /&gt;
# Equations and math symbols need proper reformatting. The current version reads like text (along with equations) copy-pasted from a specific source.&lt;br /&gt;
# Try to place the figure at the top of the Wiki between the main text.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# I suggest the use of more formal abstract illustrations. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Equations and symbols need proper reformatting.&lt;br /&gt;
# Lemmas and theorems are not expected for this Wiki. Sparse reconstruction is a straightforward concept but is unnecessarily complicated here. Please refer to other Wiki examples to get an idea of what the Wiki should convey.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Numerical example is missing.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Having a list is not enough. Please explain at least three applications in a few sentences each.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion section is missing.&lt;br /&gt;
* References&lt;br /&gt;
# The current reference list is not correctly formatted. References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Portfolio optimization|Portfolio Optimization]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell id&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introductory sentence should be rephrased. The action of minimizing the risks does not inherently maximize the gains, rather PO aims to maximize gains whilst minimizing risks. &lt;br /&gt;
# Amount of whitespace can be reduced by changing the orientation of Figure 1 and the sentences in this section.&lt;br /&gt;
# Define terms such as risk, return, portfolio, etc., when you introduce them. Assume that the reader may not know much about finance. This goes for all other sections as well. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# A brief mention of modern portfolio theory (i.e.. Markowitz) would be appropriate in this section. &lt;br /&gt;
# Several grammatical errors here involving sentence structure and clarity. Some questionable semantics (e.g., “The portfolio optimization mainly assumes two directions.”) and syntax (phrases such as “.. is as follows” should be followed by a colon). Misuse of commas and missing commas in this section. Two sentences introducing E(rp) and w should be combined into one.&lt;br /&gt;
# Use LaTex to distinguish variables written within a sentence, such as m and n. &lt;br /&gt;
# Rephrase “Cut the relevant information and conditions in the portfolio optimization, as well as the final requirements into the relevant variables, constraints and linear functions of the linear programming problem.”&lt;br /&gt;
# An explanation of a few common constraints would be helpful, rather than just including a table. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# All tables need to be labeled.&lt;br /&gt;
# Include figure number in label for consistency. &lt;br /&gt;
# Fix misspelling “dolling decision variables”. &lt;br /&gt;
# Use LaTex for all variables, equations, and constraints here.&lt;br /&gt;
# Example 2 table is hard to read, so making it bigger would help. &lt;br /&gt;
# Remove the “Using excel as the solver” part from the sentence before the solution discussion. &lt;br /&gt;
# Some grammatical errors here (phrases such as “.. is as follows” should be followed by a colon). &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Rephrase “Portfolio optimization can be used to screen investment projects that meet investors, rationally allocate investment amounts, etc.”&lt;br /&gt;
# Not sure “relevant” is the correct word choice here. &lt;br /&gt;
# You need more specific examples with the utility of portfolio optimization, this section is quite general as is. Some more detail and focus on real-world applications in the financial industry that relate to retirement planning, financial security, economic stability, etc., would be helpful. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Need some commas here.&lt;br /&gt;
# The sentence “Linear programming has been around since the 1940’s and has such a wide base of applications” is not necessary. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider linking the references as demonstrated in the Wiki tutorial on Canvas and in this template,  [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove white space between end of sentences and reference numbers.&lt;br /&gt;
&lt;br /&gt;
== [[Chance-constraint method|Chance constraint method]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please consider correcting a few grammatical errors: “pre-planned for”, “god”, “certain levels of feasibility is guaranteed in what are”, and “Performance of a system”&lt;br /&gt;
# In “Chance-constraint”, it is capitalized randomly throughout the introduction. Please correct.   &lt;br /&gt;
# Please use technical language to briefly introduce chance-constrained programming. Words like “acts of god”, “cost of doing business” are not appropriate for a  technical Wiki.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Xi is an uncertainty/randomness variable. It is better to use clear language. &lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others.&lt;br /&gt;
# Theory is insufficient. Please expand and explain different approaches. &lt;br /&gt;
# Please add pros and cons explicitly as a list. &lt;br /&gt;
# Explain the physical meaning for examples of chance constraints along with all the notations used.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Please use the mathematical editor for adding explanations in the text. Using “ x is a decision variable” is hard to read. Same for f(x) and others. &lt;br /&gt;
# Please change the table format so as not to confuse the reader. &lt;br /&gt;
# Multiple instances of [Chart to be added] are missing.&lt;br /&gt;
# Example is incomplete. &lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please connect several grammatical and spelling errors: “real life application”, Energy creation, particularly in renewable sources, have high variabilities”, and others&lt;br /&gt;
# “Zhao, Xue, Cao, and Zhang”. No need to list all authors within the article. Provide a reference is sufficient. If authors must be mentioned, (Zhao et al.) should be ok.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Uniqueness and universality earlier are not clear to me. If they are not discussed earlier in the application, it would be better not to introduce new discussions in the conclusion.&lt;br /&gt;
# If you cite an example on the page, as in the last sentence, please provide a link to move the reader to the section/subsection. &lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Bayesian Optimization | Bayesian Optimization]]  ==&lt;br /&gt;
&lt;br /&gt;
* Contents: Subheadings for EI and the algorithm should not be bolded, Random words should not be capitalized.&lt;br /&gt;
* Author list: Remove cornell ID, Please check names&lt;br /&gt;
* Introduction&lt;br /&gt;
# The introduction is too general and not substantial enough. For example, simply saying BayesOpt is useful when the objective function is unknown obscures exactly HOW it is useful (namely, computational efficiency in applications where ground truth sampling is expensive). Discussion on applications should be moved to a separate section.&lt;br /&gt;
# Machine learning rarely includes black-box functions to be optimized. Bayesian optimization is almost never used for optimizing ML loss functions but can instead be used for hyperparameter optimization. Please update such claims in this section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Captions need reformatting.&lt;br /&gt;
# Consider italicizing keywords rather than bolding.&lt;br /&gt;
# Please add a citation to the first sentence. &lt;br /&gt;
# Discussion on acquisition functions should include comparisons, tradeoffs, and reasons to use one over the other. Should also note that expected improvement is the most widely used in practice, and explain.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Please write equations in the Wiki instead of attaching images for equations.&lt;br /&gt;
# Acquisition function figure could be made larger and clearer to improve readability.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any references to functions or methods in code ‘e.g. fmin’ should be properly formatted as code-stylized text.&lt;br /&gt;
# Please use the equation editor for min, st., etc.&lt;br /&gt;
# Avoid including a figure of the code for this example and explicitly describe the steps to the modeling and solution process instead. &lt;br /&gt;
# Avoid pronouns such as “our” and “we”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please do not use brackets to enclose lists.&lt;br /&gt;
# Some claims here should be supported by references. Please cite each source after its sentence. &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to “pop” machine learning blogs where anyone can be an author. (e.g. towardsdatascience)&lt;br /&gt;
&lt;br /&gt;
Notes on grammar: Needs some work. Several instances where colons are inappropriately inserted mid sentence or in subheadings. Explanations are not terse. Several instances of switching between personal and impersonal style of writing, which is distracting.&lt;br /&gt;
&lt;br /&gt;
== [[Conjugate gradient methods|Conjugate gradient methods ]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Introduction&lt;br /&gt;
# All inline notations (e.g., `x`, `A`) should be typed using LaTex.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Is Gauss-Newton no longer referenced?&lt;br /&gt;
# Theorems listed in the first section should be accompanied with high level explanation, not just a list of the theorems themselves. The page should read like an article, with proper flow.&lt;br /&gt;
# Please indent equation blocks.&lt;br /&gt;
# Please properly format pseudocode.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Steps should be accompanied with explanation, or reference to the corresponding step in the pseudocode.&lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
# Consider including 2 additional examples of applications&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Consider adding future research directions&lt;br /&gt;
* References&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
# Too few references.&lt;br /&gt;
&lt;br /&gt;
== [[Geometric programming|Geometric Programming]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Examples of applications in this section use the same reference. Please cite their individual sources.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The symbol denoting the domain in the definition of a monomial is unclear. Please clarify it or fix this if it is incorrect.&lt;br /&gt;
# Definition of posynomial refers to section 2.1 which is missing from the Wiki (sections are not numbered in the main text).&lt;br /&gt;
# In the generalized posynomial subsection, bullet points do not tell us why h(x) is posynomial. Either provide reasons or simply state that h(x) is posynomial. Also explain why h3 is a generalized posynomial.&lt;br /&gt;
# Additional theory on the feasibility analysis could be provided in this section.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the transformation example, the last two constraints could also be simplified by applying a natural logarithm on both sides. Please update them as well.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The figure in this section needs to be labeled. &lt;br /&gt;
# The figure needs to be resized and perhaps aligned to the center.  &lt;br /&gt;
* A conclusion section:&lt;br /&gt;
# Please avoid vague language such as: “This makes”.&lt;br /&gt;
# Please avoid opinionated statements: “one of the best ways”.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Adam|Adam]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Some grammatical errors here, mostly related to the need for commas in certain places (e.g., “Before Adam..”).&lt;br /&gt;
# Some minor errors with parts of speech throughout the section, need to revisit phrases such as “which has broader scope in future for”, etc. &lt;br /&gt;
# Try splitting up some of the longer sentences in this section, a couple are hard to read.&lt;br /&gt;
# Avoid definitive statements about Adam being the best or always better solver, as this is simply not true (the choice of the “best” optimizer is setting-dependent). Use language such as “Research has shown that Adam has demonstrated superior experimental performance over..” and then cite academic references to back this claim. &lt;br /&gt;
# What does adam stand for? Introduction is insufficient. Please expand. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Revise grammar here, noticing some missing commas and uncapitalized word after period.&lt;br /&gt;
# Rephrase “second one is to update the old position with the updated position”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section, and actual subscripts instead of “m_t”, etc. &lt;br /&gt;
# Avoid inserting inline citations after words like “According to..” or “This article..” as it is a bit informal. This could be rephrased or changed to something like “According to author,^[2] …” with author name inserted. &lt;br /&gt;
# Remove white space before the period in RMSP discussion.&lt;br /&gt;
# Please provide a pseudocode. &lt;br /&gt;
# Please use list the two methods here “Adam is a combination of two gradient descent methods which are explained below”&lt;br /&gt;
# Please expand the theory section significantly. Theoretical convergence properties should be discussed, even if briefly.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Same comment as before, consider replacing inline citations after words like “According to..”. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted, not just hyperlinks. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Try to avoid references to blogs and use peer-reviewed academic references instead. &lt;br /&gt;
# Too few references.&lt;br /&gt;
&lt;br /&gt;
== [[A-star algorithm|a* algorithm]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic:&lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. &lt;br /&gt;
# Please consider correcting a few grammatical errors: “Optimal path”, “cross country”, missing period at end of first paragraph, other random capitalizations, etc.&lt;br /&gt;
# There are no citations in the introduction. Please cite every source.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please add the mathematical description of the algorithm.&lt;br /&gt;
# Reference style varies in sentences. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Please fix grammatical and spelling errors as (“from current position to the goal”, “There are a lot of discussions”, etc). Also, many hyphens are missing as “non playable”.&lt;br /&gt;
# In algorithms, it is a standard to add high-level description (i.e. pseudocode or flowchart). Please incorporate it. &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section (e.g., “f(n)...”, “h(n)..”, etc.). This goes for other sections as well.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The numerical example does not show the full computations the algorithm performs. Please show the computation on a smaller example.&lt;br /&gt;
# Instead of writing things like “The above image..”, label each figure and use the figure number to refer to it in text. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# No references in the applications. Please cite every source &lt;br /&gt;
# Preferably, add at least an additional application.  &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Conclusion should summarize descriptions. Please modify it to provide a summary.  &lt;br /&gt;
# Please pay attention to the length and structure of sentences here and in the full page. First sentence is hard to read.&lt;br /&gt;
* References&lt;br /&gt;
# References seem to vary in format and are not linked correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Job shop scheduling|Job-Shop Scheduling Problem]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The current introduction to the jobshop scheduling problem has only two sentences in addition to the parameter description. Introduction typically contains information about the problem, its importance in the real-world, and some information about the solution techniques and their types to solve the problem. Please add some information that covers the above.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# It is unclear whether the assumptions stated in this section are required to apply the following solution techniques. Please clarify the same. Also use complete sentences to state them.&lt;br /&gt;
# The branch and bounds method described in this section only discusses the solution technique for problems with one machines. However, branch and bound is a general technique that can be applied to any MILP problems with varying scales. Please update the “methods” section to be as general as possible.&lt;br /&gt;
# Since this Wiki focuses on jobshop scheduling, at least two methods are expected. Branch and bound is a general MILP technique, so, it is recommended to add a tailored technique that can only solve specific jobshop scheduling problems. Solving the numerical example with this technique is not necessary.&lt;br /&gt;
# Reference to the branch and bound technique described in this section is a “youtube” video. Please add references in literature that describe this method in detail. The method used in this video is highly tailored for a single machine application. This is also an incorrect way to cite a reference. Please keep this section as general as possible.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables in this section and all other sections as well.&lt;br /&gt;
# Check grammar in this section. For example, phrases like “are as follows” need to be followed by a colon and not a period. &lt;br /&gt;
# Consider rewriting the assumptions as a list in this section. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# The example used in this section is exactly the same as the one in the youtube video. Please use a modification of this example or choose another example/method to demonstrate the solution technique.&lt;br /&gt;
# The figure in this section is not numbered when all others are. Relabel this figure for consistency and its number to refer to it in-text.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section should only focus on real-world applications of the jobshop scheduling problem. But currently, this section includes additional information on solution techniques/complexity that is appropriate for the Introduction section. Please discuss the applications of the problem in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# The meaning of  “Operations applications” is unclear. Please explain or update if necessary.&lt;br /&gt;
# The current conclusion section does not properly summarize the problem. Please refer to other Wiki examples for an idea to update the section accordingly.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Please reference media sources like reference 5 appropriately.&lt;br /&gt;
&lt;br /&gt;
== [[Optimization in game theory|Optimization in game theory]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list: remove cornell IDs. &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Please edit references.&lt;br /&gt;
# Add a mathematical description of the problem and a pseudocode/flowchart for the Lemke-Howson algorithm.  &lt;br /&gt;
# Rephrase “This algorithm utilizes iterated pivoting much like the simplex algorithm used in the simplex algorithm used in linear programming”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please organize the last part in a more readable format. Questions may be in bold and numbered, answers are more direct, etc.&lt;br /&gt;
# Remember to cite all images and tables. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Very good, link the reference and cite all sources. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summarizing especially from theory sentences and avoid long sentences. &lt;br /&gt;
* References&lt;br /&gt;
# Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Reference primary sources rather than Wikipedia&lt;br /&gt;
&lt;br /&gt;
== [[Trust-region methods|Trust-region methods]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list:&lt;br /&gt;
# Remove cornell IDs. Author is also spelled incorrectly. &lt;br /&gt;
# Add the course section.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# References are not linked. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]] &lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xk”, “f`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “we”. This goes for all other sections as well.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Organization of ideas in this section needs work.&lt;br /&gt;
# You have not defined explicitly why the Cauchy point is important to compute beyond a vague allusion to performance improvements, which is also wrong (it is useful because of its guarantees for convergence, not performance) It is also misspelled.&lt;br /&gt;
# Each approach should have accompanying explanation and motivation for why it is being discussed. It is not enough to outline the algorithm.&lt;br /&gt;
# Please make sure symbols are properly subscripted and superscripted (e.g. “pk” should be “p_k”&lt;br /&gt;
# Please format the algorithm in proper algorithmic pseudocode format.&lt;br /&gt;
# Little to no discussion on global convergence guarantees&lt;br /&gt;
# Please include discussion about the advantages and disadvantages of the algorithm&lt;br /&gt;
# Fix typo “couchy point”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Any code functions (uminfunc) should have proper text formatting.&lt;br /&gt;
# The graph needs a better caption explaining how the axes are labeled and what data points are being shown.&lt;br /&gt;
# Please increase the quality of the figure. It is hard to see the red line. &lt;br /&gt;
# Add citation to “The Rosenbrock function is a non-convex function, introduced by Howard H. Rosenbrock in 1960, which is often used as a performance test problem for optimization algorithms.”&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# The content in this section as it is currently does NOT describe applications, but rather different approaches within the trust region methodology. Please provide specific applications (e.g. TRPO in reinforcement learning).&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please add more summary, future research directions for example is a good start.&lt;br /&gt;
* References&lt;br /&gt;
# Please consider having the references as this Wiki template, &amp;lt;nowiki&amp;gt;https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
There are numerous misspellings, grammatical errors, and incorrect claims. Please fix these.&lt;br /&gt;
&lt;br /&gt;
== [[Momentum|Momentum]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Apart from an explanation on momentum, it is necessary to briefly point out the limitations of SGD and why momentum could help with these limitations. Please update it accordingly.&lt;br /&gt;
# Remove bold on “Momentum”.&lt;br /&gt;
# Place references after the period at the end of each sentence. This goes for all the sections in the wiki. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# It is important to use technical language for this Wiki. Although a layman’s explanation is appreciated, it would be better to skip using words like “zig zagging”. Try to explain all concepts in a technical language with few simplifications but NOT vice versa.&lt;br /&gt;
# The definition of the update rule for SGD with momentum looks incorrect, specifically the first expression. Please fix it and also explain all the parameters used.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “W”, “V`”, etc.) in this section and all other sections as well.&lt;br /&gt;
# Avoid pronouns such as “you”.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please try to label the plots that explains what each line color means.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please use correct terminology like “optimizing non-convex functions” and not “training non-convex models”.&lt;br /&gt;
# Adam, Adadelta, and RMSprop are variants of SGD that already use momentum. Please double check the writing and update if necessary.&lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Please refrain from using words like “zig zag” effects.&lt;br /&gt;
* References&lt;br /&gt;
# Almost all references used are URLs. Please try to add journal/conference articles or books for references, instead of directly citing the URLs.&lt;br /&gt;
&lt;br /&gt;
==  [[Stochastic dynamic programming|Stochastic Dynamic programming]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list&lt;br /&gt;
# Remove cornell ID&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Discussion on applications should be moved to a separate section.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions &lt;br /&gt;
# Remove the grey box background of equations.&lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Outer-approximation (OA)|Outer-approximation]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic &lt;br /&gt;
# See formatting guideline below&lt;br /&gt;
# Avoid opinionated statements such as “MINLP problems are usually the hardest to solve”.&lt;br /&gt;
# Rearrange the text such that the MINLP formulation is in the theory section and keep the introduction in words only.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Consider left aligning equations and optimization problem formulations by the “=”. See [[Stochastic programming|https://optimization.cbe.cornell.edu/index.php?title=Stochastic_programming]] for an example&lt;br /&gt;
# The sentence “The Outer-Approximation (OA) algorithm was first proposed by Duran and and Grossmann in 1986 to solve MINLP problems.” needs a reference. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# “Minimize” and “subject to” should be “min” and “s.t.” in MathType&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Does not explicitly point out why OA is applicable (and/or preferred) in these applications, rather than other MINLP approaches (show that the problem formulations are amenable to a solution approach through OA)&lt;br /&gt;
# The sentence “... an active research area and there exists a vast number of applications in fields such as engineering, computational chemistry, and finance.” needs references. &lt;br /&gt;
# Place GAMS code in a single code box or remove it.&lt;br /&gt;
# Consider reformatting to make steps more readable. Inserting spaces and breaking down steps would help. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Too short. Consider discussion on future research direction and discussion on uncertainty&lt;br /&gt;
# Please review abbreviations throughout the page. Why is MINLP redefined here? “Outer-Approximation is a well known efficient approach for solving convex mixed-integer nonlinear programs (MINLP)”. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# Remove &amp;quot;Template:Reflist&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==  [[Unit commitment problem|Unit commitment problem]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Please expand the introduction and avoid discussions of examples or specific applications in this section.&lt;br /&gt;
# The sentence “Nonlinear, Non-convex programming optimization problem.” doesn’t make sense by itself and Non-convex shouldn’t be capitalized.  &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Figure/image format should be revised to better display the content.&lt;br /&gt;
# Uppercase characters are used randomly (e.g., “non-convex transmission Constraints”) . Please follow correct language conventions for sentence structure.&lt;br /&gt;
# Avoid inserting inline citations after words like “written in matrix form as equation [3]..” or “presented in [3]...” as it is a bit informal when you don’t explicitly name the subject. Also these two sentences are grammatically incorrect and appear to be missing an ending period and comma, respectively. &lt;br /&gt;
# Don’t say “written in matrix form as equation..” and just cite the reference, actually write out the equation. &lt;br /&gt;
# Properly label the figure in this section with a figure number and improve visibility by making it larger. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Label the figures in this section properly with figure numbers.&lt;br /&gt;
# Fix typo “while minimize” to “while minimizing”. &lt;br /&gt;
# Avoid pronouns such as “we”. &lt;br /&gt;
# Use the equation editor when typing equations. &lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# I suggest changing the order of the subtitles here. For example, Single-Period Unit Commitment. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
==  [[Frank-Wolfe|Frank-Wolfe]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list: &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# I suggest highlighting disadvantages along with advantages. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# “[n x 1] matrix” please use the equation editor to express mathematical descriptions and symbols (p,b, etc)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Every iteration should be clearly presented, and solved &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# Please show at least a few iterations. Even for smaller examples if needed. Report the final solution. &lt;br /&gt;
# Please use the LaTex code or equation editor for min and include s.t., etc.&lt;br /&gt;
* A section to discuss and/or illustrate the applications: &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Same as the introduction. Pros and cons should be evaluated together!&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
==  [[Line search methods|Line Search Method]] ==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# Expand the introduction and avoid discussion on some of the specific steps in the solution process. &lt;br /&gt;
# Provide references here. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The phrase “are as follows” in the steepest descent method discussion needs to be followed by a colon. &lt;br /&gt;
# Rephrase “has a nice convergence theory” and cite a reference for this claim.&lt;br /&gt;
# Avoid pronouns such as “we”.&lt;br /&gt;
# Add citation after “.. proposed by Phillip Wolfe in 1969.”&lt;br /&gt;
# Figure 1 is between two sections. Please fix this issue. &lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# Add some space between iterations or subsection break&lt;br /&gt;
* A section to discuss and/or illustrate the applications:&lt;br /&gt;
# Too few references in this section. &lt;br /&gt;
# Last paragraph makes some claims without references. &lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References&lt;br /&gt;
# References should be properly formatted. Refer to the link below for an example: [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
# More references should be added. A simple Google Scholar search would give you many references.&lt;br /&gt;
&lt;br /&gt;
== [[Piecewise linear approximation|Piecewise Linear Approximation]]==&lt;br /&gt;
&lt;br /&gt;
* Author list &lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The content of this section is good, but there are some issues with sentence clarity and some other grammatical errors. Please revisit this section and make changes accordingly. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Fix typo “to force the x’ values become associated with”. &lt;br /&gt;
* At least one numerical example &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Please aim for a maximum average sentence length of ~25 words. Some of these longer sentences are hard to read. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# Expand the conclusion section to be longer than one sentence. The conclusion section to include a brief summary of what was discussed above, an emphasis on it’s significance, and a brief discussion of future extensions and research direction if applicable.&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to sources when possible.&lt;br /&gt;
&lt;br /&gt;
==  [[Mathematical programming with equilibrium constraints|Mathematical Programming with Equilibrium constraints]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# This section includes several terms like variational inequalities, constraint qualifications that were not discussed in the class. Please add a sentence to explain them before using them.&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# The meaning of parameter vector x is unclear. Please add more information or update if necessary.&lt;br /&gt;
# Equations and symbols in the PIPA subsection are not formatted correctly. Please use the same formatting for all equations, so they read as mathematical equations and not text. This goes for all other sections as well.&lt;br /&gt;
# Use equations instead of images to represent math programs and equations in the Implicit Descent and SQP subsection.&lt;br /&gt;
# Apart from the steps for each solution technique, please also add a few sentences that describe each method.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# Please define the terms like NCP, MP before abbreviating them. Also try not to unnecessarily abbreviate simple terms.&lt;br /&gt;
# Equations should be typed by LaTex. Images for equations are unacceptable.&lt;br /&gt;
# GAMS code is strongly discouraged. Please solve the problem &amp;quot;step-by-step&amp;quot;.&lt;br /&gt;
# The selected numerical example is fine but is directly solved with the MPEC solver in GAMS. Try to solve it manually like the homework/in-class problems step by step using the steps described in the previous section by choosing any of the methods.&lt;br /&gt;
# Avoid using figures in the equations (subject to etc)&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Add references to “power management, highway pricing, chemical process engineering, and traffic planning.”&lt;br /&gt;
* A conclusion section&lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
== [[Wing shape optimization|Wing shape Optimization]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list: Remove cornell ID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
# The introduction is missing several references (e.g., “software packages like computational fluid dynamics..”, sentences containing things that aren’t common knowledge, performance claims, etc.)&lt;br /&gt;
# Avoid discussion involving finer details of subject methods in this section. &lt;br /&gt;
# In the titles, please change the font from bold to normal to have consistent formatting in the site. Same applies to box of content!&lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Properly cite the CFD package, don’t just include a link. &lt;br /&gt;
# Properly label the figure with a figure number.&lt;br /&gt;
# Consider removing white space between isolated sentences to improve readability. &lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# If you’ve already defined an abbreviation (CFD), there is no need to define it again. Just use the abbreviation.&lt;br /&gt;
# Avoid pronouns such as “we” or “they”.&lt;br /&gt;
# Phrases like “under the following” need to be followed by a colon.&lt;br /&gt;
# Properly label the figure with a figure number and consider making them larger to improve visibility. Call the reader&#039;s attention to the figures in text by referencing the figure number.&lt;br /&gt;
# “As seen in the video below” is stated yet there are only images present and it may be initially unclear to the reader which figure is being referenced here. &lt;br /&gt;
# Avoid inserting inline citations like “[4] introduces an..”  as it is a bit informal when you don’t explicitly name the subject.&lt;br /&gt;
# Don’t just cite the reference when discussing the problem formulation, explicitly write the model formulation and solution process using LaTex or equation visual editor.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# Some characters are randomly capitalized in this section. &lt;br /&gt;
* A conclusion section&lt;br /&gt;
# These variables should be defined before the conclusion section, they are out of place here. Also, please use normal text when explaining variables except for the variable symbol. &lt;br /&gt;
* References&lt;br /&gt;
# Include hyperlinks to references if possible. Please consider having the references appear as in this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
&lt;br /&gt;
==  [[Interior-point method for NLP|Interior point method for NLP]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Primal-Dual formulation and comparison to the Barrier Method is not discussed.&lt;br /&gt;
# Include brief discussion about big O convergence rates.&lt;br /&gt;
# Need discussion about the concept of “central path” and the notion of self concordance&lt;br /&gt;
# Please consider proper formatting of the algorithm as pseudocode. Algorithms also must be accompanied with high level summary and discussion on its most important high level ideas.&lt;br /&gt;
# Graphs and images are incorrectly formatted to the page. Consider proper alignment with respect to the text body.&lt;br /&gt;
# Use explicitly typed Latex equations instead of images to represent math programs and equations.&lt;br /&gt;
# Fix typo “optimisation”.&lt;br /&gt;
# Use LaTex code or equation editor to display all equations and variables (e.g., “xi ”, “μ”, etc.).&lt;br /&gt;
* At least one numerical example:&lt;br /&gt;
# There are formatting issues with figures 2,3. Please make sure to embed them within their respective sections. &lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
* A conclusion section &lt;br /&gt;
# Minor character code typos in the conclusion.&lt;br /&gt;
# Also, please add more discussion in this section. Future research directions is a good start.&lt;br /&gt;
# There is a box &amp;quot;􏰐&amp;quot;&lt;br /&gt;
* References&lt;br /&gt;
&lt;br /&gt;
== [[AdaGrad|Adagrad]] ==&lt;br /&gt;
&lt;br /&gt;
* An introduction of the topic: &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
# Include discussion on its variants (most important is AdaDelta).&lt;br /&gt;
# Include disadvantages of Adagrad, since this provides motivation for the discussion on the variants and improvements of Adagrad&lt;br /&gt;
# Include comparisons to other popular optimizers (particularly important is comparisons to regular SGD and Adam)&lt;br /&gt;
# Different convergence rates are possible depending on the setting where Adagrad is used, but this is not mentioned on the page currently. As such the regret bound section should be more thoroughly explained.&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
# In the first sentence, “..take the following numerical example” should be followed by a colon. &lt;br /&gt;
# Fix typo “trayectory”.&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
# This section is too short; include specific applications in which input features are sparse and Adagrad excels.&lt;br /&gt;
# Add reference to the claim “Mainly, it is a good choice for deep learning models with sparse input features”.&lt;br /&gt;
* A conclusion section &lt;br /&gt;
* References &lt;br /&gt;
&lt;br /&gt;
# Too few references overall, you should aggregate information from multiple sources (even if the base algorithm itself comes from a singular paper)&lt;br /&gt;
&lt;br /&gt;
==  [[McCormick envelopes|McCormick Envelopes]]  ==&lt;br /&gt;
&lt;br /&gt;
* Author list: OK but I suggest removing NetID&lt;br /&gt;
* Sections: Section titles should not be &amp;quot;bold&amp;quot;. Please double check using source editor to avoid weird format of the TOC.&lt;br /&gt;
* An introduction of the topic&lt;br /&gt;
*# First sentence is hard to read. Please consider keeping sentences below 25-30 words. &lt;br /&gt;
*# No references provided. Please cite all sources. &lt;br /&gt;
*# Figure 1 is provided in the middle between two sections. Please include in the introduction section. &lt;br /&gt;
* Theory, methodology, and/or algorithmic discussions&lt;br /&gt;
*# References are not linked or expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
*# When using mathematical expressions and symbols, please use the equation editor. (e.g., x*y, exy + y, sin (x+y) - x2)&lt;br /&gt;
* At least one numerical example&lt;br /&gt;
*# Please add a few sentences to show the transition from problem to solution. &lt;br /&gt;
*# For the sample GAMS code, please place it in a code box&lt;br /&gt;
* A section to discuss and/or illustrate the applications&lt;br /&gt;
*# Having a list is not enough. Please explain at least three applications in a few sentences each. &lt;br /&gt;
*# This section should be at least a paragraph to discuss relevant applications. Each application should be explicitly linked to the page topic. A few keywords do not meet the requirement at all.&lt;br /&gt;
* A conclusion section: &lt;br /&gt;
* References&lt;br /&gt;
*# References are not expressed correctly. Please consider having the references as this Wiki template, [[Quantum computing for optimization|https://optimization.cbe.cornell.edu/index.php?title=Quantum_computing_for_optimization]]&lt;br /&gt;
*# Please follow the standard reference style - the current format is incorrect.&lt;/div&gt;</summary>
		<author><name>Asa273</name></author>
	</entry>
</feed>