awesome-repositories.com
المدونة
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم 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

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • cppcheck-opensource/cppcheckالصورة الرمزية لـ cppcheck-opensource

    cppcheck-opensource/cppcheck

    6,660عرض على GitHub↗

    Cppcheck هو أداة تحليل ثابت ومُدقق (linter) لكود C وC++ المصدري مصمم لاكتشاف أخطاء البرمجة، وتسريبات الذاكرة، وانتهاكات الأمان دون تنفيذ البرنامج. يعمل كمحرك لاكتشاف الأخطاء وأداة لضمان الجودة لتحديد مشكلات التزامن، وأخطاء تحويل النوع، والامتثال لمعايير البرمجة الآمنة. يوفر المشروع واجهة مستخدم رسومية لاختيار الملفات ومراجعة الأخطاء، إلى جانب مُدقق لفرض اصطلاحات التسمية ومعايير البرمجة. يدعم إنشاء قواعد تحليل مخصصة باستخدام التعبيرات النمطية لتحديد أنماط برمجة محددة. تتضمن الأداة قدرات للتحليل التزايدي، وقمع التحذيرات، واستبعاد الملفات لإدارة قواعد الكود الكبيرة. كما تتميز بإنشاء تقارير HTML والتكامل مع محررات مثل VS Code لتوفير تحديد الأخطاء أثناء التطوير.

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

    C++
    عرض على GitHub↗6,660
  • sebastianbergmann/recursion-contextالصورة الرمزية لـ sebastianbergmann

    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/opendeepsearchالصورة الرمزية لـ sentient-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.