Embedded Conic Solver in R. This is an R wrapper around the ecos project on GitHub which describes ECOS as below.
ECOS is a numerical software for solving convex second-order cone programs (SOCPs) of type
$$
\mbox{Minimize } c'x \mbox{ such that } {\mathbf Ax} = {\mathbf b} \mbox{ and } {\mathbf G \mathbf x},, \leq_{\mathbf K},, {\mathbf h}
$$
where the last inequality is generalized, that is,
ECOS supports the positive orthant
with
where
The cone
$$ {\mathbf K} = {\mathbf R}+ \times {\mathbf Q}{n_1} \times \cdots \times {\mathbf Q}_{n_N} \times {\mathbf K}_e \times \cdots \times {\mathbf K}_e. $$
Note that the ECOS C language sources are included here. Changes to the original source are clearly delineated for easy reference.