Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions CITATION.bib
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
@article{shin2024accelerating,
title={Accelerating optimal power flow with {GPU}s: {SIMD} abstraction of nonlinear programs and condensed-space interior-point methods},
author={Shin, Sungho and Anitescu, Mihai and Pacaud, Fran{\c{c}}ois},
journal={Electric Power Systems Research},
volume={236},
pages={110651},
year={2024},
publisher={Elsevier}
@misc{shin2026examodels,
title = {{ExaModels.jl}: An Algebraic Modeling System for Nonlinear Programming on {GPUs}},
author = {Shin, Sungho and Schanen, Michel and Pacaud, Fran\c{c}ois and Montoison, Alexis and Anitescu, Mihai},
year = {2026},
eprint = {2608.16265},
archivePrefix = {arXiv},
primaryClass = {math.OC},
doi = {10.48550/arXiv.2608.16265}
}
21 changes: 12 additions & 9 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cff-version: 1.2.0
identifiers:
- description: arXiv preprint
type: other
value: 'arXiv:2307.16830'
value: 'arXiv:2608.16265'
keywords:
- Nonlinear Optimization
- Julia
Expand All @@ -26,19 +26,22 @@ message: >-
preferred-citation:
type: article
title: >-
Accelerating optimal power flow with GPUs: SIMD abstraction of
nonlinear programs and condensed-space interior-point methods
ExaModels.jl: An Algebraic Modeling System for Nonlinear
Programming on GPUs
authors:
- family-names: Shin
given-names: Sungho
- family-names: Anitescu
given-names: Mihai
- family-names: Schanen
given-names: Michel
- family-names: Pacaud
given-names: François
journal: Electric Power Systems Research
volume: '236'
year: 2024
doi: 10.1016/j.epsr.2024.110651
- family-names: Montoison
given-names: Alexis
- family-names: Anitescu
given-names: Mihai
year: 2026
doi: 10.48550/arXiv.2608.16265
url: 'https://arxiv.org/abs/2608.16265'
repository-code: 'https://github.com/madsuite-org/ExaModels.jl'
title: >-
ExaModels.jl: An algebraic modeling and automatic differentiation
Expand Down
17 changes: 9 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
[![build](https://github.com/madsuite-org/ExaModels.jl/actions/workflows/test.yml/badge.svg)](https://github.com/madsuite-org/ExaModels.jl/actions/workflows/test.yml)
[![codecov](https://codecov.io/gh/madsuite-org/ExaModels.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/madsuite-org/ExaModels.jl)
[![release](https://img.shields.io/github/v/release/madsuite-org/ExaModels.jl)](https://github.com/madsuite-org/ExaModels.jl/releases)
[![arXiv](https://img.shields.io/badge/arXiv-2608.16265-b31b1b.svg)](https://arxiv.org/abs/2608.16265)

## Overview

Expand Down Expand Up @@ -58,14 +59,14 @@ reference implementation:
If you use ExaModels.jl in your research, please cite:

```bibtex
@article{shin2024accelerating,
title = {Accelerating optimal power flow with {GPUs}: {SIMD} abstraction of nonlinear programs and condensed-space interior-point methods},
author = {Shin, Sungho and Anitescu, Mihai and Pacaud, Fran\c{c}ois},
journal = {Electric Power Systems Research},
volume = {236},
pages = {110651},
year = {2024},
doi = {10.1016/j.epsr.2024.110651}
@misc{shin2026examodels,
title = {{ExaModels.jl}: An Algebraic Modeling System for Nonlinear Programming on {GPUs}},
author = {Shin, Sungho and Schanen, Michel and Pacaud, Fran\c{c}ois and Montoison, Alexis and Anitescu, Mihai},
year = {2026},
eprint = {2608.16265},
archivePrefix = {arXiv},
primaryClass = {math.OC},
doi = {10.48550/arXiv.2608.16265}
}
```

Expand Down
Loading