Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 899 Bytes

POEM_021.md

File metadata and controls

32 lines (23 loc) · 899 Bytes

POEM ID: 021
Title: _post_configure moved to public API
authors: robfalck (Rob Falck)
Competing POEMs: N/A
Related POEMs: N/A
Associated implementation PR: N/A

Status:

  • Active
  • Requesting decision
  • Accepted
  • Rejected
  • Integrated

Motivation

The _post_configure method is needed for components in which inputs and outputs are not directly added, such as BalanceComp and AddSubtractComp. For instance, if bal.add_balance(...) is called during configure, the component must be able to respond accordingly.

Description

The _post_configure method is being moved to the public API (renamed post_configure).

Rejection Rationale

This POEM is being rejected. After further consideration the development team has decided to go a different way. _post_configure further complicates an already complex setup stack.