[G1-Sync] Manual knowledge update

This commit is contained in:
Antigravity Agent
2026-04-30 22:42:02 +09:00
parent 0bd4f19e38
commit c36c0644a1
4888 changed files with 18470 additions and 18602 deletions
+5 -5
View File
@@ -1,8 +1,8 @@
---
id: P-REINFORCE-AUTO-INCM-001
id: [[P-Reinforce]]-AUTO-INCM-001
category: "10_Wiki/💡 Topics/AI"
confidence_score: 0.95
tags: [auto-reinforced, incremental-computation, algorithms, efficiency, dynamic-programming, synchronization, caching]
tags: [auto-reinforced, incremental-computation, algorithms, [[Efficiency]], [[Dynamic-Programming]], synchronization, caching]
last_reinforced: 2026-04-20
---
@@ -15,12 +15,12 @@ last_reinforced: 2026-04-20
증분 계산(Incremental-Computation)은 입력의 작은 변화에 대해 출력을 효율적으로 업데이트하는 기법입니다.
1. **핵심 메커니즘**:
* **Dependency Tracking**: 어떤 계산 정책 결과가 어떤 입력 데이터 정책에 의존 정책하는지 그래프로 관리. (DAG-Dependency-Management와 연결)
* **Dependency Tracking**: 어떤 계산 정책 결과가 어떤 입력 데이터 정책에 의존 정책하는지 그래프로 관리. ([[DAG-Dependency-Management]]와 연결)
* **Memoization/Caching**: 이전 계산 정책 결과 정책을 저장 정책해 두었다가 재사용. (Efficiency와 연결)
* **Change Propagation**: 변경된 입력 정책과 연결된 노드들만 선별적으로 재계산 정책.
2. **활용 사례**:
* **Build Systems**: 수정된 파일만 다시 컴파일 (Bazel, Make).
* **Database Views**: 원본 테이블에 데이터가 추가될 때 뷰(View)를 전체 갱신하지 않고 증분 반영. (Entity-Relationship-Modeling와 연결)
* **Build[[ system]]s**: 수정된 파일만 다시 컴파일 (Bazel, Make).
* **Database Views**: 원본 테이블에 데이터가 추가될 때 뷰(View)를 전체 갱신하지 않고 증분 반영. ([[Entity-Relationship-Modeling]]와 연결)
* **Excel**: 특정 셀의 값을 바꿨을 때 연결된 수식들만 실시간 업데이트.
## ⚠️ 모순 및 업데이트 (Contradictions & RL Update)