نتایج جستجو برای: constraint

تعداد نتایج: 77929  

Journal: :iranian rehabilitation journal 0
seyed mohammad sadegh hosseini hamadan university of medical sciences, hamadan, iran. hossein sourtiji isfahan university of medical sciences, esfahan, iran. atefeh taghizadeh pediatric neurorehabilitation research center, university social welfare and rehabilitation sciences, tehran, iran.

objectives: hemiplegia is a non-progressive damage in premature growing brain which causes movement disorders in one side of the body. the objective of present research is to study the method of modified constraints induced movement therapy (cimt) which can be appropriate on unimanual and bimanual functions of children with hemiplegia. methods: this single-blinded, randomized, control trial stu...

Journal: :iranian economic review 0
homa esfahanian department of economics, university of essex, england

this paper argues that a risk averse of workers after-tax reservation wage the difference between her reservation wage and the tax needed to fund the unemployment insurance system when liquidity constraint binds exists and it is unique. the optimality of unemployment insurance based on the responsiveness of reservation wage to unemployment benefit shows the disincentive effect, i.e. higher unem...

Journal: :the international journal of humanities 2014
faezeh farazandeh-pour aliyeh kord zafaranlu kambuziya

this paper aims at describing the mechanism of german loanwords adaptation with respect to constraints of persian language and within ot framework. consequently the adaptation of consonant clusters and diphthongs as well as the phonemes substituted in loanwords will be examined. prince and smolensky’s (1993) optimality theory with its key notions of faithfulness and markedness constraints is su...

Journal: :مهندسی صنایع 0
ابوالفضل کاظمی استادیار دانشگاه آزاد اسلامی واحد قزوین- دانشکده صنایع و مکانیک محمدرضا ملکیان کارشناس ارشد دانشگاه آزاد اسلامی واحد قزوین- دانشکده صنایع و مکانیک کیوان صرافها کارشناس ارشد دانشگاه آزاد اسلامی واحد قزوین- باشگاه پژوهشگران جوان

inventory control problem is one of the problems in decision making and management that contains non-crisp parameters in real world. economic production quantity (epq) model in fuzzy environment has been studied so far by many researchers. one of the main assumptions in all previous researches was neglecting the inventory shortage. in this research, a new multi-item epq model with fuzzy random ...

Journal: :journal of optimization in industrial engineering 0
hossein barghi jond young researchers and elite club, ahar branch, islamic azad university, ahar, iran vasif v. nabiyev department of computer engineering, karadeniz technical university, trabzon, turkey rifat benveniste department of electrical and electronic engineering, avrasya university, trabzon, turkey

the trajectory planning, which is known as a movement from starting to end point by satisfying the constraints along the path is an essential part of robot motion planning. a common way to create trajectories is to deal with polynomials which have independent coefficients. this paper presents a trajectory formulation as well as a procedure to arrange the suitable trajectories for applications. ...

Journal: :Journal of Logic and Computation 2023

Abstract The AllDifferent constraint is a fundamental tool in Constraint Programming. It naturally arises many problems, from puzzles to scheduling and routing applications. Such popularity has prompted an extensive literature on filtering propagation for this constraint. This paper investigates the use of General Processing Units (GPUs) accelerate propagation. In particular, presents efficient...

Journal: :journal of industrial engineering, international 2006
e jahangiri f ghassemi-tari

nonlinear knapsack problems (nkp) are the alternative formulation for the multiple-choice knapsack problems. a powerful approach for solving nkp is dynamic programming which may obtain the global op-timal solution even in the case of discrete solution space for these problems. despite the power of this solu-tion approach, it computationally performs very slowly when the solution space of the pr...

2007
Ugo Montanari Francesca Rossi

Recently constraint satisfaction has been embedded in various high-level declarative programming environments, like the Constraint Logic Programming framework, and even more recently such environments have been extended with concurrency, like in the Concurrent Constraint Programming paradigm. The merging of diierent areas of research is always an exciting event, and proliic of new ideas. We bel...

Journal: :مهندسی صنایع 0
محمّد رضائی ملک دانشجوی دکتری مهندسی صنایع پردیس دانشکده‏های فنی دانشگاه تهران رضا توکلی مقدم استاد دانشکدة مهندسی صنایع پردیس دانشکده‏های فنی دانشگاه تهران فرشید عوض آبادیان کارشناس ارشد مهندسی صنایع پردیس دانشکده‏های فنی دانشگاه تهران

this paper presents a new bi-objective mathematical model for a permutation flowshop scheduling problem with availability constraint in case of preventive maintenance operations on machines. in this paper, preventive maintenance is flexible and there is not a certain time for the maintenance operation; however, time between two consecutive maintenance operations for each machine should not be g...

نمودار تعداد نتایج جستجو در هر سال

با کلیک روی نمودار نتایج را به سال انتشار فیلتر کنید

function paginate(evt) { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term pg=parseInt(evt.target.text) var data={ "year":filter_year, "term":term, "pgn":pg } filtered_res=post_and_fetch(data,url) window.scrollTo(0,0); } function update_search_meta(search_meta) { meta_place=document.getElementById("search_meta_data") term=search_meta.term active_pgn=search_meta.pgn num_res=search_meta.num_res num_pages=search_meta.num_pages year=search_meta.year meta_place.dataset.term=term meta_place.dataset.page=active_pgn meta_place.dataset.num_res=num_res meta_place.dataset.num_pages=num_pages meta_place.dataset.year=year document.getElementById("num_result_place").innerHTML=num_res if (year !== "unfilter"){ document.getElementById("year_filter_label").style="display:inline;" document.getElementById("year_filter_place").innerHTML=year }else { document.getElementById("year_filter_label").style="display:none;" document.getElementById("year_filter_place").innerHTML="" } } function update_pagination() { search_meta_place=document.getElementById('search_meta_data') num_pages=search_meta_place.dataset.num_pages; active_pgn=parseInt(search_meta_place.dataset.page); document.getElementById("pgn-ul").innerHTML=""; pgn_html=""; for (i = 1; i <= num_pages; i++){ if (i===active_pgn){ actv="active" }else {actv=""} pgn_li="
  • " +i+ "
  • "; pgn_html+=pgn_li; } document.getElementById("pgn-ul").innerHTML=pgn_html var pgn_links = document.querySelectorAll('.mypgn'); pgn_links.forEach(function(pgn_link) { pgn_link.addEventListener('click', paginate) }) } function post_and_fetch(data,url) { showLoading() xhr = new XMLHttpRequest(); xhr.open('POST', url, true); xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8'); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { var resp = xhr.responseText; resp_json=JSON.parse(resp) resp_place = document.getElementById("search_result_div") resp_place.innerHTML = resp_json['results'] search_meta = resp_json['meta'] update_search_meta(search_meta) update_pagination() hideLoading() } }; xhr.send(JSON.stringify(data)); } function unfilter() { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":"unfilter", "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } function deactivate_all_bars(){ var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(bar) { bar.dataset.active = false bar.style = "stroke:#71a3c5;" }) } year_chart.on("created", function() { var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(check) { check.addEventListener('click', checkIndex); }) }); function checkIndex(event) { var yrchart = document.querySelectorAll('.ct-bar'); var year_bar = event.target if (year_bar.dataset.active == "true") { unfilter_res = unfilter() year_bar.dataset.active = false year_bar.style = "stroke:#1d2b3699;" } else { deactivate_all_bars() year_bar.dataset.active = true year_bar.style = "stroke:#e56f6f;" filter_year = chart_data['labels'][Array.from(yrchart).indexOf(year_bar)] url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":filter_year, "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } } function showLoading() { document.getElementById("loading").style.display = "block"; setTimeout(hideLoading, 10000); // 10 seconds } function hideLoading() { document.getElementById("loading").style.display = "none"; } -->