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
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,5 @@ out/
.DS_Store

.venv/
__pycache__/uv.lock
__pycache__/
uv.lock
6 changes: 3 additions & 3 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,9 @@ Hessian computes weighted sum: `obj_w * H_obj + sum(lambda_i * H_constraint_i)`,
3. Implement: `forward`, `jacobian_init`, `eval_jacobian`, `eval_wsum_hess` (optional), `free_type_data` (if needed)
4. Add Python binding header in `python/atoms/`
5. Register in `python/bindings.c` (both include and method table)
6. Add converter entry in `src/dnlp_diff_engine/__init__.py` `ATOM_CONVERTERS` dict
7. Rebuild: `pip install -e .`
8. Add tests in `tests/` (C) and `tests/python/` (Python)
6. Export in `src/dnlp_diff_engine/__init__.py` `__all__` list
7. Rebuild: `uv pip install -e .`
8. Add tests in `tests/` (C, register in `tests/all_tests.c`) and `python/tests/` (Python)

## Known Limitations

Expand Down
Loading