Considering this non-standard linear program:
\begin{equation} \begin{matrix} \displaystyle \min_x & c^T x \\ \textrm{s.t.} & A x & = & b \\ & x_i & \geq & 0 & & \forall i \\ & x_i & \leq & d_i & & \forall i \end{matrix} \end{equation}
Where $x_i$ denotes the i-th component of vector $x$.
Regarding the solution $x^*$, what are the values of its non-basic components?
For a standard form LP they would be 0 but in this case the constraints $x_i\leq d_i$ make such statement not valid.
Can the simplex method be used in such scenario without transforming the problem in a standard one and if yes, what is the formulation for the reduced costs?
I apologize for the possible incorrect notation but I'm pretty new to linear programming.