strictness - определение. Что такое strictness
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое strictness - определение

Strictness Analysis
Найдено результатов: 79
Strictness      
·noun Quality or state of being strict.
Strictness analysis         
In computer science, strictness analysis refers to any algorithm used to prove that a function in a non-strict functional programming language is strict in one or more of its arguments. This information is useful to compilers because strict functions can be compiled more efficiently.
Strictly         
MATHEMATICAL PROPERTY EXCLUDING EQUALITY
Strictly
·adv In a strict manner; closely; precisely.
strict         
MATHEMATICAL PROPERTY EXCLUDING EQUALITY
Strictly
¦ adjective
1. demanding that rules concerning behaviour are obeyed.
(of a rule) demanding total compliance; rigidly enforced.
2. following rules or beliefs exactly.
3. not allowing deviation or relaxation.
Derivatives
strictness noun
Origin
ME (in the sense 'restricted in space or extent'): from L. strictus, stringere 'tighten'.
strict         
MATHEMATICAL PROPERTY EXCLUDING EQUALITY
Strictly
(stricter, strictest)
Frequency: The word is one of the 3000 most common words in English.
1.
A strict rule or order is very clear and precise or severe and must always be obeyed completely.
The officials had issued strict instructions that we were not to get out of the jeep...
French privacy laws are very strict...
All your replies will be treated in the strictest confidence...
ADJ
strictly
The acceptance of new members is strictly controlled.
ADV: ADV with v
2.
If a parent or other person in authority is strict, they regard many actions as unacceptable and do not allow them.
My parents were very strict.
...a few schools selected for their high standards and their strict discipline.
ADJ
strictly
My own mother was brought up very strictly and correctly.
ADV
3.
If you talk about the strict meaning of something, you mean the precise meaning of it.
It's not quite peace in the strictest sense of the word, rather the absence of war.
ADJ: ADJ n
strictly
Actually, that is not strictly true...
Strictly speaking, it is not one house at all, but three houses joined together.
ADV: ADV adj
see also strict
4.
You use strict to describe someone who never does things that are against their beliefs.
Four million Britons are now strict vegetarians...
ADJ: ADJ n
Strict         
MATHEMATICAL PROPERTY EXCLUDING EQUALITY
Strictly
In mathematical writing, the term strict refers to the property of excluding equality and equivalence and often occurs in the context of inequality and monotonic functions. It is often attached to a technical term to indicate that the exclusive meaning of the term is to be understood.
strictly         
MATHEMATICAL PROPERTY EXCLUDING EQUALITY
Strictly
¦ adverb
1. in a strict way.
2. with exact or rigid application of words or rules: coconut is not strictly a spice.
with no exceptions; completely or absolutely.
no more than; purely.
strict         
MATHEMATICAL PROPERTY EXCLUDING EQUALITY
Strictly
adj.
1) strict about, concerning, in
2) strict towards, with
Strict         
MATHEMATICAL PROPERTY EXCLUDING EQUALITY
Strictly
·adj Tense; not relaxed; as, a strict fiber.
II. Strict ·adj Strained; drawn close; tight; as, a strict embrace; a strict ligature.
III. Strict ·adj Upright, or straight and narrow;
- said of the shape of the plants or their flower clusters.
IV. Strict ·adj Exact; accurate; precise; rigorously nice; as, to keep strict watch; to pay strict attention.
V. Strict ·adj Rigidly; interpreted; exactly limited; confined; restricted; as, to understand words in a strict sense.
VI. Strict ·adj Governed or governing by exact rules; observing exact rules; severe; rigorous; as, very strict in observing the Sabbath.
strictly         
MATHEMATICAL PROPERTY EXCLUDING EQUALITY
Strictly
You use strictly to emphasize that something is of one particular type, or intended for one particular thing or person, rather than any other.
This session was strictly for the boys.
= purely
ADV: ADV group [emphasis]

Википедия

Strictness analysis

In computer science, strictness analysis refers to any algorithm used to prove that a function in a non-strict functional programming language is strict in one or more of its arguments. This information is useful to compilers because strict functions can be compiled more efficiently. Thus, if a function is proven to be strict (using strictness analysis) at compile time, it can be compiled to use a more efficient calling convention without changing the meaning of the enclosing program.

Note that a function f is said to diverge if it returns { } {\displaystyle \{\bot \}} : operationally, that would mean that f either causes abnormal termination of the enclosing program (e.g., failure with an error message) or that it loops infinitely. The notion of "divergence" is significant because a strict function is one that always diverges when given an argument that diverges, whereas a lazy (or non-strict) function is one that may or may not diverge when given such an argument. Strictness analysis attempts to determine the "divergence properties" of functions, which thus identifies some functions that are strict.