Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.
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
525 changes: 21 additions & 504 deletions LICENSE

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/invrs_opt/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""invrs_opt - Optimization algorithms for inverse design.

Copyright (c) 2023 The INVRS-IO authors.
Copyright (c) 2025 invrs.io LLC
"""

__version__ = "v0.11.0"
Expand Down
2 changes: 1 addition & 1 deletion src/invrs_opt/experimental/client.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Defines basic client optimizers for use with an optimization service.

Copyright (c) 2023 The INVRS-IO authors.
Copyright (c) 2025 invrs.io LLC
"""

import json
Expand Down
2 changes: 1 addition & 1 deletion src/invrs_opt/experimental/labels.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Defines labels and messages used in the context of an optimization service.

Copyright (c) 2023 The INVRS-IO authors.
Copyright (c) 2025 invrs.io LLC
"""

VALUE = "value"
Expand Down
2 changes: 1 addition & 1 deletion src/invrs_opt/optimizers/base.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Base objects and datatypes for optimization algorithms.
Copyright (c) 2023 The INVRS-IO authors.
Copyright (c) 2025 invrs.io LLC
"""

import dataclasses
Expand Down
2 changes: 1 addition & 1 deletion src/invrs_opt/optimizers/lbfgsb.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Defines a jax-style wrapper for scipy's L-BFGS-B algorithm.

Copyright (c) 2023 The INVRS-IO authors.
Copyright (c) 2025 invrs.io LLC
"""

import dataclasses
Expand Down
2 changes: 1 addition & 1 deletion src/invrs_opt/optimizers/wrapped_optax.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Defines a wrapper for optax optimizers.

Copyright (c) 2023 The INVRS-IO authors.
Copyright (c) 2025 invrs.io LLC
"""

import dataclasses
Expand Down
2 changes: 1 addition & 1 deletion src/invrs_opt/parameterization/base.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Base types for density parameterizations.

Copyright (c) 2023 The INVRS-IO authors.
Copyright (c) 2025 invrs.io LLC
"""

import dataclasses
Expand Down
2 changes: 1 addition & 1 deletion src/invrs_opt/parameterization/filter_project.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Defines filter-and-project density parameterization.

Copyright (c) 2023 The INVRS-IO authors.
Copyright (c) 2025 invrs.io LLC
"""

import dataclasses
Expand Down
2 changes: 1 addition & 1 deletion src/invrs_opt/parameterization/gaussian_levelset.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Defines Gaussian radial basis function levelset parameterization.

Copyright (c) 2023 The INVRS-IO authors.
Copyright (c) 2025 invrs.io LLC
"""

import dataclasses
Expand Down
2 changes: 1 addition & 1 deletion src/invrs_opt/parameterization/pixel.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Defines the direct pixel parameterization for density arrays.

Copyright (c) 2023 The INVRS-IO authors.
Copyright (c) 2025 invrs.io LLC
"""

import dataclasses
Expand Down
2 changes: 1 addition & 1 deletion src/invrs_opt/parameterization/transforms.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Defines transforms for custom types and bare jax arrays.

Copyright (c) 2023 The INVRS-IO authors.
Copyright (c) 2025 invrs.io LLC
"""

from typing import Tuple, Union
Expand Down
2 changes: 1 addition & 1 deletion tests/optimizers/test_algos.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Defines tests across all optimization algorithms.

Copyright (c) 2023 The INVRS-IO authors.
Copyright (c) 2025 invrs.io LLC
"""

import itertools
Expand Down
2 changes: 1 addition & 1 deletion tests/optimizers/test_lbfgsb.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Defines tests for the `lbfgsb.lbfgsb` module.

Copyright (c) 2023 The INVRS-IO authors.
Copyright (c) 2025 invrs.io LLC
"""

import copy
Expand Down
2 changes: 1 addition & 1 deletion tests/optimizers/test_wrapped_optax.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Defines tests for the `wrapped_optax.wrapped_optax` module.

Copyright (c) 2023 The INVRS-IO authors.
Copyright (c) 2025 invrs.io LLC
"""

import copy
Expand Down
2 changes: 1 addition & 1 deletion tests/parameterization/test_gaussian_levelset.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Defines tests for the Gaussian levelset parameterization.

Copyright (c) 2023 The INVRS-IO authors.
Copyright (c) 2025 invrs.io LLC
"""

import itertools
Expand Down
2 changes: 1 addition & 1 deletion tests/parameterization/test_parameterizations.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Defines tests across all density parameterizations.

Copyright (c) 2023 The INVRS-IO authors.
Copyright (c) 2025 invrs.io LLC
"""

import itertools
Expand Down
2 changes: 1 addition & 1 deletion tests/parameterization/test_transforms.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Tests for `transforms`.

Copyright (c) 2023 The INVRS-IO authors.
Copyright (c) 2025 invrs.io LLC
"""

import dataclasses
Expand Down