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

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

1992

Parallelism can be exploited to handle the enormous computational requirements of many vision applications. However, the computational power oered by multiprocessor architectures cannot be fully harnessed to achieve the desired speedup. This is primarily due to the unbalanced distribution of computational load among the processors of a parallel architecture. Furthermore, in parallel implementat...

2000
W. P. Crowley C. P. Hendrickson T. E. Rudy

in Multilisp) and rely on sophisticated runtime system support ; they don't attempt to be extensible or portable. The Lisp-based system most closely resembling ours is STING [20, 21], a concurrent dialect of Scheme speci-cally intended as a substrate for building higher-level parallel computing environments. STING's basic data types are threads and virtual processors; the system provides ex-ibi...

Journal: :international journal of industrial mathematics 2009
f hosseinzadeh lot a. a. noora h. nikoomaram m. alimardani m modi

in many real applications, the data of production processes can't be precisely measured.we develop some fuzzy versions of the classical dea models (in particular, the ccrmodel) by using some ranking methods based on the comparison of cuts. our approachescan be seen as an extension of the dea methodology. the provides users and practitionerswith models which represent some real life processes mo...

A. A. Noora F Hosseinzadeh Lot H. Nikoomaram M Modi M. Alimardani

In many real applications, the data of production processes can't be precisely measured.We develop some fuzzy versions of the classical DEA models (in particular, the CCRmodel) by using some ranking methods based on the comparison of cuts. Our approachescan be seen as an extension of the DEA methodology. The provides users and practitionerswith models which represent some real life processes mo...

Here‎, ‎we aim to develop a new algorithm for solving a multiobjective linear programming problem‎. ‎The algorithm is to obtain a solution which approximately meets the decision maker's preferences‎. ‎It is proved that the proposed algorithm always converges to a weak efficient solution and at times converges to an efficient solution‎. ‎Numerical examples and a simulation study are used to illu...

2013
David A Plaisted David Plaisted

We analyze the search e ciency of a number of common refutational theorem proving strategies for rst order logic Search e ciency is concerned with the total number of proofs and partial proofs generated rather than with the sizes of the proofs We show that most common strategies produce search spaces of exponential size even on simple sets of clauses or else are not sensitive to the goal Howeve...

2001
Mário Amado Alves

"The web is bad; really bad."--observed Jakob Nielsen three years ago about The Web Usage Paradox [1]. The true paradox today is that science and technology institutions have bad sites! Programrnes devoted to the information socioty itself have bad sites!! Hopefully this international conference will make a difference. At least show Nielsen and myself are not just fools on the hill" and, hopefu...

1999
Mansour Jamzad Amirali Foroughnassiraei Ehsan Chiniforooshan Reza Ghorbani Moslem Kazemi Hamid Reza Chitsaz Farid Mobasser Sayyed Bashir Sadjad

Arvand is a robot specially designed and constructed for playing soccer according to RoboCup rules and regulations for the medium size robots This robot consists of three main parts mechanics motion and kicker hardware image acquisition processing and control unit and software image process ing motion control and decision making The motion mechanism is based on a drive unit a steer unit and a c...

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

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

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"; } -->