awesome-repositories.com
博客
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目关于排名机制媒体报道MCP 服务器
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 个仓库

Awesome GitHub RepositoriesRecursion Depth Limits

Mechanisms to restrict the nesting level of recursive operations to prevent stack overflows.

Distinct from Recursion Depth Limits: The candidates are too specific to filesystems, search crawlers, or deserialization; this is a general architectural constraint for any recursive data processing.

Explore 4 awesome GitHub repositories matching software engineering & architecture · Recursion Depth Limits. Refine with filters or upvote what's useful.

Awesome Recursion Depth Limits GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • cppcheck-opensource/cppcheckcppcheck-opensource 的头像

    cppcheck-opensource/cppcheck

    6,660在 GitHub 上查看↗

    Cppcheck 是一个用于 C 和 C++ 源代码的静态分析工具和检查器,旨在在不执行程序的情况下检测编程错误、内存泄漏和安全违规。它作为一个错误检测引擎和质量保证工具,用于识别并发问题、类型转换错误以及对安全编码标准的合规性。 该项目提供了一个用于选择文件和审查错误的图形用户界面,以及一个用于强制执行命名约定和编码标准的检查器。它支持使用正则表达式创建自定义分析规则,以识别特定的编码模式。 该工具包括增量分析、警告抑制和文件排除功能,以管理大型代码库。它还具有 HTML 报告生成功能,并与 VS Code 等编辑器集成,以便在开发过程中提供错误识别。

    Adjusts recursion limits for template and function analysis to balance thoroughness and speed.

    C++
    在 GitHub 上查看↗6,660
  • sebastianbergmann/recursion-contextsebastianbergmann 的头像

    sebastianbergmann/recursion-context

    6,574在 GitHub 上查看↗

    recursion-context is a set of PHP utilities for traversing and modifying deep data hierarchies. It provides a recursive variable processor designed to apply transformations across nested arrays and objects while maintaining stability. The project distinguishes itself through a recursion depth controller and reference tracking to prevent infinite loops and memory exhaustion when processing circular data structures. It monitors the level of nesting during traversal to avoid stack overflows. These tools cover hierarchical data transformation and nested data processing, allowing for stateful vis

    Provides a mechanism to terminate processing once a maximum nesting depth threshold is reached to prevent stack overflows.

    PHP
    在 GitHub 上查看↗6,574
  • princeton-nlp/tree-of-thought-llmP

    princeton-nlp/tree-of-thought-llm

    6,007在 GitHub 上查看↗

    Note: https://github.com/kyegomez/tree-of-thoughts CANNOT replicate paper results.

    Configures maximum step counts to prevent infinite loops during multi-step reasoning exploration.

    Python
    在 GitHub 上查看↗6,007
  • sentient-agi/opendeepsearchsentient-agi 的头像

    sentient-agi/OpenDeepSearch

    3,829在 GitHub 上查看↗

    OpenDeepSearch is an autonomous research platform and search orchestration engine that connects large language models with live web data. It functions as an agentic information retrieval tool designed to automate the gathering, structuring, and synthesis of web information to resolve complex queries. The system differentiates itself through iterative multi-hop querying, which allows the agent to execute sequences of dependent searches where previous results refine subsequent requests. It features a semantic reranking pipeline that uses embedding models to prioritize the most relevant content

    Implements configurable recursion limits to toggle between fast retrieval and high-accuracy iterative research.

    Python
    在 GitHub 上查看↗3,829
  1. Home
  2. Software Engineering & Architecture
  3. Recursion Depth Limits

探索子标签

  • Agent Recursion LimitsConfigurable depth limits for autonomous agent reasoning cycles to balance accuracy and latency. **Distinct from Recursion Depth Limits:** Specific to AI agent reasoning loops rather than general software stack overflow prevention.
  • Reasoning Step LimitsControls search depth via a configurable maximum step count, preventing infinite loops in multi-step reasoning. **Distinct from Recursion Depth Limits:** Distinct from Recursion Depth Limits: applies to reasoning step counts in LLM tree search, not general recursion or filesystem traversal.