I hereby claim:
- I am tasseff on github.
- I am tasseff (https://keybase.io/tasseff) on keybase.
- I have a public key whose fingerprint is 6A1C FD24 9A9A E94C C132 0B8C 6E9E 0BBD F621 B867
To claim this, I am signing this object:
| function power(base, exponent) { | |
| if (exponent == 0) | |
| return 1; | |
| else | |
| return base * power(base, exponent - 1); | |
| } |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env python | |
| import argparse | |
| import geojson | |
| import shapely.geometry.point | |
| def write_circle_geojson(centers, radii, output_path): | |
| centers = zip(centers[0::2], centers[1::2]) | |
| feature_array = [] |
This is a guide detailing the compilation of Ipopt with SPRAL as a linear solver. It was developed assuming a standard installation of Ubuntu 18.04 LTS. To begin, first, compile the LANL ANSI version of SPRAL using the compilation suggestions described therein.
First, create a directory where Ipopt will be compiled from source (not via coinbrew), e.g.,
mkdir -p ${HOME}/SoftwareThe remainder of this guide assumes such a directory has been created.