Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add link in 4.67 #483

Merged
merged 1 commit into from Aug 12, 2020
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 6 additions & 3 deletions resources/lang/en/exercises/4_67.php
Expand Up @@ -2,9 +2,12 @@

return [
'title' => "The query system loop detector",
'description' =>
"Devise a way to install a loop detector in the query system so as to avoid the kinds of simple loops illustrated in the text and in exercise 4.64. " .
"The general idea is that the system should maintain some sort of history of its current chain of deductions and should not begin processing a query that it is already working on. " .
'description' => [
'1' =>
"Devise a way to install a loop detector in the query system so as to avoid the kinds of simple loops illustrated in the text and in exercise ",
'2' =>
". The general idea is that the system should maintain some sort of history of its current chain of deductions and should not begin processing a query that it is already working on. " .
"Describe what kind of information (patterns and frames) is included in this history, and how the check should be made. " .
"(After you study the details of the query-system implementation in section 4.4.4, you may want to modify the system to include your loop detector.)",
],
];
9 changes: 6 additions & 3 deletions resources/lang/ru/exercises/4_67.php
Expand Up @@ -2,9 +2,12 @@

return [
'title' => "Детектор циклов запросной системы",
'description' =>
"Придумайте, как в запросную систему можно вставить детектор циклов, который избегает простых зацикливаний, вроде показанных в тексте и в упражнении 4.64. " .
"Общая идея состоит в том, что система должна хранить в каком-то виде историю текущей цепи рассуждений и не начинать обработку запроса, если она уже над ним работает. " .
'description' => [
'1' =>
"Придумайте, как в запросную систему можно вставить детектор циклов, который избегает простых зацикливаний, вроде показанных в тексте и в упражнении ",
'2' =>
". Общая идея состоит в том, что система должна хранить в каком-то виде историю текущей цепи рассуждений и не начинать обработку запроса, если она уже над ним работает. " .
"Опишите, информация какого вида (образцы и кадры) включается в историю и как можно проводить проверку. " .
"(После того, как Вы изучите в деталях реализацию запросной системы из раздела 4.4.4, Вы можете захотеть изменить систему и включить в нее свой детектор циклов.)",
],
];
3 changes: 2 additions & 1 deletion resources/views/exercise/listing/4_67.blade.php
@@ -1 +1,2 @@
<p>{{ __('exercises/4_67.description') }}</p>
<p>{{ __('exercises/4_67.description.1') }}<a href="{{ route('exercises.show', getExercise('4.64')) }}">4.64</a>
{{ __('exercises/4_67.description.2') }}</p>