paper-with-me

홈 › Papers

Research Re: search & Re-search

2024-03-20 · Aske Plaat

Search algorithms are often categorized by their node expansion strategy. One option is the depth-first strategy, a simple backtracking strategy that traverses the search space in the order in which successor nodes are generated. An alternative is the best-first strategy, which was designed to make it possible to use domain-specific heuristic information. By exploring promising parts of the search space first, best-first algorithms are usually more efficient than depth-first algorithms. In programs that play minimax games such as chess and checkers, the efficiency of the search is of crucial importance. Given the success of best-first algorithms in other domains, one would expect them to be used for minimax games too. However, all high-performance game-playing programs are based on a depth-first algorithm. This study takes a closer look at a depth-first algorithm, AB, and a best-first algorithm, SSS. The prevailing opinion on these algorithms is that SSS offers the potential for a more efficient search, but that its complicated formulation and exponential memory requirements render it impractical. The theoretical part of this work shows that there is a surprisingly straightforward link between the two algorithms -- for all practical purposes, SSS is a special case of AB. Subsequent empirical evidence proves the prevailing opinion on SSS to be wrong: it is not a complicated algorithm, it does not need too much memory, and it is also not more efficient than depth-first search.

📄 PDF Abstract BibTeX arXiv:2403.13705

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

To Vibe Research or Not to Vibe Research? Generative AI in Qualitative Research

2026-04-30 · Katja Karhu, Kari Smolander, Jussi Kasurinen arxiv

There has been intense debate among qualitative researchers about whether generative AI is suitable for qualitative research. In this paper, we summarize the broader ongoing discussion of generative AI in qualitative res…

AI-Empowered Human Research Integrating Brain Science and Social Sciences Insights

2024-11-16 · Feng Xiong, Xinguo Yu, Hon Wai Leong

This paper explores the transformative role of artificial intelligence (AI) in enhancing scientific research, particularly in the fields of brain science and social sciences. We analyze the fundamental aspects of human r…

Ethical Research Protocols for Social Media Health Research

2017-04-01 · WS 2017 4 · Adrian Benton, Glen Coppersmith, Mark Dredze

Social media have transformed data-driven research in political science, the social sciences, health, and medicine. Since health research often touches on sensitive topics that relate to ethics of treatment and patient p…

Decision MakingEthics

DeepResearch Arena: The First Exam of LLMs' Research Abilities via Seminar-Grounded Tasks

2025-09-01 · Haiyuan Wan, Chen Yang, Junchi Yu, Meiqi Tu 외 arxiv

Deep research agents have attracted growing attention for their potential to orchestrate multi-stage research workflows, spanning literature synthesis, methodological design, and empirical verification. Despite these str…

OpenResearcher: Unleashing AI for Accelerated Scientific Research

2024-08-13 · Yuxiang Zheng, Shichao Sun, Lin Qiu, Dongyu Ru 외

The rapid growth of scientific literature imposes significant challenges for researchers endeavoring to stay updated with the latest advancements in their fields and delve into new areas. We introduce OpenResearcher, an …

RAGRetrievalRetrieval-augmented Generation