亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? solve.c

?? 利用空間表示的rcc8模型進行空間推理
?? C
?? 第 1 頁 / 共 3 頁
字號:
/***************************************************************************//***                                                                     ***//***                   solve.c   (Version 2.0)                           ***//***                                                                     ***//***       Jochen Renz, Ronny Fehling, Bernhard Nebel  - July 1999       ***//***                                                                     ***//***         fehling, nebel, renz@informatik.uni-freiburg.de             ***//***                                                                     ***//***          http://www.informatik.uni-freiburg.de/~sppraum             ***//***                                                                     ***//***                      Institut fuer Informatik                       ***//***                     Albert-Ludwigs-Universitaet                     ***//***                           Am Flughafen 17                           ***//***                       79110 Freiburg, Germany                       ***//***                                                                     ***//***************************************************************************//*solve [-bdefnpqrsv] [-w[v]] [-z[p]] [-m[f] number] [-g number] [-ctx file] [-o file [number]] [-h[a|A file] order] [-li <file>] [-le <file>] [file1 file2 ...]      solves RCC8 CSPs.  solve [-bdefnpqrsvwz] [-m number] [-ctx file] [-o file [number]] [-h[a|A file] order] [file1 file2 ...]         solves RCC8 CSPs.    options are:    -b    return brief summary info on stdout (even if -q)    -c <file> use the coverage info in file to split relations    -d    give debugging info on stderr    -e    use environment constrainedness to select next node (van Beek)    -f    fixed ordering of variables     -g <number>  solve only instances larger than <number>     -h[a|A <file>]  <order>  use the orthogonal combination of the different                     heuristic methods. (a = always run all methods, the maximal                    number of visited nodes of following methods is restricted                    by the number required by the previously best method;                     A = run all methods and write output in <file>)                     <order> specifies the order of the methods.                     1=H^/dyn/loc, 2=H^/dyn/glo/, 3=H^/sta/loc, 4=H^/sta/glo,                     A=B^/dyn/loc, B=B^/dyn/glo/, C=B^/sta/loc, D=B^/sta/glo,                    a=B/dyn/loc, b=B/dyn/glo/, c=B/sta/loc, d=B/sta/glo,                    s=C/dyn/loc, t=C/dyn/glo/, u=C/sta/loc, v=C/sta/glo, 		    S=Q/dyn/loc, T=Q/dyn/glo/, U=Q/sta/loc, V=Q/sta/glo,                    i=I/dyn/loc, j=I/dyn/glo/, k=I/sta/loc, l=I/sta/glo,                    <order>=2B4a means that the order is 2,B,4 and finally a.                    NOTE: It is assumed that the files hornsplit,        	            closebasesplit, c8split, q8split and intersplit exist.                     This option overrides the options -c <file>, -f, and -e.      -li <file>   Include all headers of the logfile <file>    -le <file>   Exclude all headers of the logfile <file>                 NOTE: `-li <file>' must be given before `-le <file>'.     -m[f] <number> maximal number of nodes to visit (default NV_UPPER_LIMIT)                   if -mf is set (f=factor), then the maximal number of nodes                    to visit is the instance size multiplicated by <number>     -n    restrict summary to negative (inconsistent) cases    -o <file> <number> solve only those CSP that are tagged with [-1,0,1]                        (default -1) (should be a log-file)    -p    restrict summary to positive (consistent) cases    -q    return 0 if (last) CSP was consistent (suppresses -v)     -r    use random variable ordering     -s    return summary info on stdout (even if -q)    -t <file> print return summary to file after typeid changes    -v    give verbose output on stderr after solving a CSP    -w[v] use weighted queue scheme for computing path-consistency           (v = van Beek)    -x <file> print CSPs that could not been solved to file    -z[p] compute path-consistency only (p=print path-consistent CSP to stdout)    file[i] are CSP-input files. If none specified, solve uses stdin.     More than one CSP can be specified in each file (each must be     terminated by a point '.').    Format of the CSP should be <node1> <node2> '(' <relations> ')'.    First line of CSP should contain maximum node id and typeid (string).";*/const char *usagestring = "\usage: solve [-bdefnpqrsv] [-w[v]] [-z[p]] [-m[f] number] [-g number] [-ctx file] [-o file [number]] [-h[a|A file] order] [-li <file>] [-le <file>] [file1 file2 ...]      solves RCC8 CSPs.    options are:    -b    return brief summary info on stdout (even if -q)    -c <file> use the coverage info in file to split relations    -d    give debugging info on stderr    -e    use environment constrainedness to select next node (van Beek)    -f    fixed ordering of variables     -g <number>  solve only instances larger than <number>     -h[a|A <file>]  <order>  use the orthogonal combination of the different                     heuristic methods. (a = always run all methods, the maximal                    number of visited nodes of following methods is restricted                    by the number required by the previously best method;                     A = run all methods and write output in <file>)                     <order> specifies the order of the methods.                     1=H^/dyn/loc, 2=H^/dyn/glo/, 3=H^/sta/loc, 4=H^/sta/glo,                     A=B^/dyn/loc, B=B^/dyn/glo/, C=B^/sta/loc, D=B^/sta/glo,                    a=B/dyn/loc, b=B/dyn/glo/, c=B/sta/loc, d=B/sta/glo,                    s=C/dyn/loc, t=C/dyn/glo/, u=C/sta/loc, v=C/sta/glo, 		    S=Q/dyn/loc, T=Q/dyn/glo/, U=Q/sta/loc, V=Q/sta/glo,                    i=I/dyn/loc, j=I/dyn/glo/, k=I/sta/loc, l=I/sta/glo,                    <order>=2B4a means that the order is 2,B,4 and finally a.                    NOTE: It is assumed that the files hornsplit,        	            closebasesplit, c8split, q8split and intersplit exist.                     This option overrides the options -c <file>, -f, and -e.      -li <file>   Include all headers of the logfile <file>    -le <file>   Exclude all headers of the logfile <file>                  NOTE: `-li <file>' must be given before `-le <file>'.     -m[f] <number> maximal number of nodes to visit (default NV_UPPER_LIMIT)                   if -mf is set (f=factor), then the maximal number of nodes                    to visit is the instance size multiplicated by <number>     -n    restrict summary to negative (inconsistent) cases    -o <file> <number> solve only those CSP that are tagged with [-1,0,1]                        (default -1) (should be a log-file)    -p    restrict summary to positive (consistent) cases    -q    return 0 if (last) CSP was consistent (suppresses -v)     -r    use random variable ordering     -s    return summary info on stdout (even if -q)    -t <file> print return summary to file after typeid changes    -v    give verbose output on stderr after solving a CSP    -w[v] use weighted queue scheme for computing path-consistency           (v = van Beek)    -x <file> print CSPs that could not been solved to file    -z[p] compute path-consistency only (p=print path-consistent CSP to stdout)    file[i] are CSP-input files. If none specified, solve uses stdin.     More than one CSP can be specified in each file (each must be     terminated by a point '.').    Format of the CSP should be <node1> <node2> '(' <relations> ')'.    First line of CSP should contain maximum node id and typeid (string).";#define HARD_NODES 	10000#include "rcc8.h"#include "rcc8io.h"#include "rcc8op.h"#include <stdlib.h>#include <stdio.h>#include <string.h>#include <sys/times.h>#include <sys/types.h>#include <sys/resource.h>#include <sys/time.h>/* should be in stdlib.h ! */void srand48(long seedval);/* should be in resource.h ! */ int getrusage(int who, struct rusage *rusage);/* switches */int swhard;int swdebug;int swverbose;int swquiet;int swsummary;int swbrief;int swpositive;int swnegative;int swposneg;int swsplitinfo;int swrandomorder;int swwqueue;int swenvcons;int swfixed;int swsolveonly;int swonlypathcons;int swpcprint;int swtesting;int swmaxvisit;int swfactor;int sworthogonal;int swallorthogonal; int swheuristicout;int swheader;int swminsize;/* statistical info */int taggedwith =5;int maxnodeid;char csptype[100];char lasttype[100];int consistent;int cntconsistent;int pathconsistent;int cntpathconsistent;int pcops;int pcits;int nodesvisited;int searchdepth;int maxdepth;double cputicks;double cpumicro;int trial;int rectrial;long int tpcops[MAXTRIAL];long int tpcits[MAXTRIAL];long int tnodesvisited[MAXTRIAL];int tmaxdepth[MAXTRIAL];double tcputicks[MAXTRIAL];int tconsistent[MAXTRIAL];double cumcputicks;double cumcpumicro;int cntsize;int size;int maxnodes=NV_UPPER_LIMIT;int minsize=0; struct header headers[MAXHEADER]; /* int maxheader;  */RELTYPE splitinfo[MAXSET][9];RELTYPE horninfo[MAXSET][9];RELTYPE c8info[MAXSET][9];RELTYPE q8info[MAXSET][9];RELTYPE closebaseinfo[MAXSET][9];RELTYPE intersectinfo[MAXSET][9];#if defined(DYNAMIC)RELTYPE **csp;struct entry **entry;char **mark;int **consval;int prevmax=0;#else RELTYPE csp[MAXCSP][MAXCSP];struct entry entry[MAXWT][MAXCSP*MAXCSP];char mark[MAXCSP][MAXCSP];int consval[MAXCSP][MAXCSP];#endif/* files */FILE *infile;char infilename[200];FILE *splitfile;char splitfilename[200];FILE *solveonlyfile;char solveonlyname[200];FILE *summaryfile;char summaryname[200];FILE *hardfile;char hardfilename[200];FILE *heuristicfile;char heuristicfilename[200];FILE *headerfile;char headerfilename[200];/* timing info */struct tms local_before, local_after, global_before, global_after;struct rusage rus_glb_before,rus_glb_after,rus_lcl_before,rus_lcl_after;/* random variable */unsigned int randomseed = 0;void initrand(unsigned int seed){  if (seed == 0)    randomseed = time(NULL);  else    randomseed = seed;  srand48(randomseed);}int path_cons(csp, maxnodeid, node1, node2)     int       maxnodeid, node1, node2;#if defined(DYNAMIC)      RELTYPE   **csp;#else      RELTYPE csp[MAXCSP][MAXCSP];#endif{  if (swwqueue==1)     return(path_cons_wq(csp,maxnodeid,node1,node2));  else if(swwqueue==2)    return(path_cons_vb(csp,maxnodeid,node1,node2));  else    return(path_cons1(csp,maxnodeid,node1,node2));}void usage(){  fprintf(stderr,"%s\n",usagestring);  exit(-1);}int int_compare(const void *p1, const void *p2){  const long int *i1=p1, *i2=p2;  return(((*i1 < *i2) ? -1 	  : ((*i1 == *i2) ? 0 : 1)));}int double_compare( const void *p1, const void *p2){  const double *i1=p1, *i2=p2;  return(((*i1 < *i2) ? -1 	  : ((*i1 == *i2) ? 0 : 1)));}void init_statistics(){  trial = 0;  rectrial = 0;  cntpathconsistent = 0;  cntconsistent = 0;  cntsize = 0; }void heuristic_summary(int minnodes, char *order, char first, int *ordernode, FILE *file){  int i=0;  char name[20];  fprintf(file,"%s cons: %i nodes: %i method: %c\n",csptype,consistent,minnodes,first);   while(order[i]!='\0') {    if(ordernode[i]==0) {      i++;      continue;    }    switch(order[i]) {    case '1': strcpy(name,"H^/dyn/loc");break;    case '2': strcpy(name,"H^/dyn/glo");break;    case '3': strcpy(name,"H^/sta/loc");break;    case '4': strcpy(name,"H^/sta/glo");break;    case 'A': strcpy(name,"B^/dyn/loc");break;    case 'B': strcpy(name,"B^/dyn/glo");break;    case 'C': strcpy(name,"B^/sta/loc");break;    case 'D': strcpy(name,"B^/sta/glo");break;    case 'a': strcpy(name,"B/dyn/loc");break;    case 'b': strcpy(name,"B/dyn/glo");break;    case 'c': strcpy(name,"B/sta/loc");break;    case 'd': strcpy(name,"B/sta/glo");break;    case 'S': strcpy(name,"Q/dyn/loc");break;    case 'T': strcpy(name,"Q/dyn/glo");break;    case 'U': strcpy(name,"Q/sta/loc");break;    case 'V': strcpy(name,"Q/sta/glo");break;    case 's': strcpy(name,"C/dyn/loc");break;    case 't': strcpy(name,"C/dyn/glo");break;    case 'u': strcpy(name,"C/sta/loc");break;    case 'v': strcpy(name,"C/sta/glo");break;    case 'i': strcpy(name,"I/dyn/loc");break;    case 'j': strcpy(name,"I/dyn/glo");break;    case 'k': strcpy(name,"I/sta/loc");break;    case 'l': strcpy(name,"I/sta/glo");break;    default: strcpy(name,"unknown");    }    fprintf(file,"%s: %i\n",name,ordernode[i]);    i++;  }  fflush(file);}void print_summary(int brief, char *lasttype, FILE *file){  float sum, avg, med, seventy, ninety, ninetynine, hundred;  register int i;  sum = 0.0;  for (i = 0; i < trial; i++)    sum += (float)(tcputicks[i]);  if(!swtesting && !brief) {    fprintf(file,"time used:\n");    fprintf(file,"global: %f sec\n",cumcputicks);    fprintf(file,"local:  %f sec\n",sum);    fprintf(file,"number: %d\n",trial);  }  if (!brief) fprintf(file,"SUMMARY INFORMATION:\n");  if (trial < 1) {    fprintf(file,"  No CSP given.\n");    return;  }  if (brief) fprintf(file,"%s \n",lasttype);  else     fprintf(file,"  CSP size=%5.1f (%s), last type=%s\n",	   ((float)cntsize)/((float)(trial)),	   ((size == 0) ? "avg." : "all"),	   lasttype);  if(swonlypathcons)    fprintf(file,"  Only checked path-consistency\n");  if (brief){      fprintf(file," %5.2f (path) %5.2f (global) ",		    (((float)cntpathconsistent)/((float)trial))*100.0,		    (((float)cntconsistent)/((float)trial))*100.0);  }  else{      fprintf(file,"  Consistent: path=%6.2f%%, global=%6.2f%%\n",	      (((float)cntpathconsistent)/((float)trial))*100.0,	      (((float)cntconsistent)/((float)trial))*100.0);  }  if (swpositive) {    if (brief) fprintf(file,"C \n");    else fprintf(file,"  Statistics on CONSISTENT cases only:\n");  }  else if (swnegative) {    if (brief) fprintf(file,"I \n");    else fprintf(file,"  Statistics on INCONSISTENT cases only:\n");  }  else if (brief) fprintf(file,"\n");  trial = rectrial;  if (trial <= 0) {    if (brief) fprintf(file," -------\n");    else fprintf(file,"  *** no cases\n");    return;  }  if(!brief)    fprintf(file,"\n\t    average  percentile:   (50)\t   (70)\t   (90)\t   (99)\t  (100)\n");  avg = sum/((float)trial);  qsort(tcputicks,trial,sizeof(double),&double_compare);  if (trial == 1) {    med = (float)tcputicks[0];    seventy = (float)tcputicks[0];    ninety = (float)tcputicks[0];    ninetynine = (float)tcputicks[0];    hundred = (float)tcputicks[0];  } else {    med = ((float)(tcputicks[(trial/2)-1]+tcputicks[trial/2]))/2.0;    seventy = ((float)(tcputicks[((trial*7)/10)-1]+		       tcputicks[((trial*7)/10)]))/2.0;    ninety = ((float)(tcputicks[((trial*9)/10)-1]+		       tcputicks[((trial*9)/10)]))/2.0;    ninetynine = ((float)(tcputicks[((trial*99)/100)-1]+		       tcputicks[((trial*99)/100)]))/2.0;    hundred = (float) tcputicks[trial-1];  }  if (brief)    fprintf(file," %6.5f %6.5f %6.5f %6.5f %6.5f %6.5f (cpu)\n",avg,med,seventy,ninety,ninetynine, hundred);  else    fprintf(file,"  CPU time: %6.5f\t\t%6.5f %6.5f %6.5f %6.5f %6.5f\n",	   avg, med, seventy, ninety, ninetynine, hundred);  if (!brief) {    avg = 0.0;    for (i = 0; i < trial; i++)      avg += (float)(tpcops[i]);    avg = avg/((float)trial);    qsort(tpcops,trial,sizeof(long int),&int_compare);    if (trial == 1) {      med = (float)tpcops[0];      seventy = (float)tpcops[0];      ninety = (float)tpcops[0];      ninetynine = (float)tpcops[0];      hundred = (float)tpcops[0];    } else {      med = ((float)(tpcops[(trial/2)-1]+tpcops[trial/2]))/2.0;      seventy = ((float)(tpcops[((trial*7)/10)-1]+			 tpcops[((trial*7)/10)]))/2.0;      ninety = ((float)(tpcops[((trial*9)/10)-1]+			tpcops[((trial*9)/10)]))/2.0;      ninetynine = ((float)(tpcops[((trial*99)/100)-1]+			    tpcops[((trial*99)/100)]))/2.0;      hundred = (float) tpcops[trial-1];    }      fprintf(file,"  PC ops:   %7.0f\t\t%7.0f %7.0f %7.0f %7.0f %7.0f\n",	      avg, med, seventy, ninety, ninetynine, hundred);       avg = 0.0;      for (i = 0; i < trial; i++)	avg += (float)(tpcits[i]);      avg = avg/((float)trial);      qsort(tpcits,trial,sizeof(long int),&int_compare);      if (trial == 1) {	med = (float)tpcits[0];	seventy = (float)tpcits[0];	ninety = (float)tpcits[0];	ninetynine = (float)tpcits[0];	hundred = (float)tpcits[0];      } else {	med = ((float)(tpcits[(trial/2)-1]+tpcits[trial/2]))/2.0;	seventy = ((float)(tpcits[((trial*7)/10)-1]+			   tpcits[((trial*7)/10)]))/2.0;	ninety = ((float)(tpcits[((trial*9)/10)-1]+			  tpcits[((trial*9)/10)]))/2.0;	ninetynine = ((float)(tpcits[((trial*99)/100)-1]+			      tpcits[((trial*99)/100)]))/2.0; 	hundred = (float) tpcits[trial-1];      }      fprintf(file,"  PC its:   %7.1f\t\t%7.1f %7.1f %7.1f %7.1f %7.1f\n",	      avg, med, seventy, ninety, ninetynine, hundred);  }  avg = 0.0;  for (i = 0; i < trial; i++)    avg += (float)(tnodesvisited[i]);  avg = avg/((float)trial);  qsort(tnodesvisited,trial,sizeof(long int),&int_compare);    if (trial == 1) {    med = (float)tnodesvisited[0];    seventy = (float)tnodesvisited[0];    ninety = (float)tnodesvisited[0];    ninetynine = (float)tnodesvisited[0];    hundred = (float)tnodesvisited[0];  } else {    med = ((float)(tnodesvisited[(trial/2)-1]+tnodesvisited[trial/2]))/2.0;    seventy = ((float)(tnodesvisited[((trial*7)/10)-1]+		       tnodesvisited[((trial*7)/10)]))/2.0;    ninety = ((float)(tnodesvisited[((trial*9)/10)-1]+		       tnodesvisited[((trial*9)/10)]))/2.0;    ninetynine = ((float)(tnodesvisited[((trial*99)/100)-1]+		       tnodesvisited[((trial*99)/100)]))/2.0;    hundred = (float) tnodesvisited[trial-1];  }  if (brief)    fprintf(file," %6.5f %6.5f %6.5f %6.5f %6.5f %6.5f (nv)\n",	   avg, med, seventy, ninety, ninetynine, hundred);  else

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美精品一二三| 天天色图综合网| 亚洲aaa精品| av资源网一区| 日韩欧美一二三四区| 亚洲夂夂婷婷色拍ww47 | 亚洲永久精品国产| 精品一二三四区| 欧美性感一类影片在线播放| 国产精品欧美一级免费| 久久精品国产亚洲a| 在线观看免费一区| 中文字幕五月欧美| 国产激情视频一区二区在线观看| 欧美理论片在线| 一区二区在线观看视频在线观看| 成人一区在线观看| 欧美成人午夜电影| 日本vs亚洲vs韩国一区三区 | 色综合久久天天| 亚洲国产成人午夜在线一区| 韩国三级在线一区| 日韩精品中文字幕在线一区| 日韩国产在线观看一区| 一本大道av伊人久久综合| 久久久久久**毛片大全| 狠狠色狠狠色综合系列| 精品免费视频.| 日本美女一区二区| 日韩午夜在线影院| 美日韩一级片在线观看| 日韩欧美成人一区| 免费在线欧美视频| 日韩一区二区免费高清| 免费观看一级欧美片| 91精品国产综合久久蜜臀| 日韩影院免费视频| 欧美一区二区三区免费视频 | 国产三级三级三级精品8ⅰ区| 精品综合久久久久久8888| 日韩一区二区三区免费观看| 久久er精品视频| 2欧美一区二区三区在线观看视频| 国内精品久久久久影院色| 精品国产一区久久| 国产露脸91国语对白| 国产农村妇女毛片精品久久麻豆| 国产成人综合亚洲网站| 中文字幕一区在线观看视频| 色视频成人在线观看免| 日韩电影在线观看电影| 精品国免费一区二区三区| 国产乱码一区二区三区| 一区在线中文字幕| 欧美日韩一本到| 韩国三级中文字幕hd久久精品| 国产三级欧美三级日产三级99| 成人av免费在线| 亚洲bdsm女犯bdsm网站| 26uuu国产在线精品一区二区| 波多野结衣在线一区| 一卡二卡欧美日韩| 精品久久久久久久久久久久包黑料| 国产激情视频一区二区三区欧美| 亚洲精品国产一区二区精华液| 欧美福利视频一区| 国产精品亚洲第一| 亚洲一区二区三区小说| 精品剧情在线观看| 色综合天天综合网天天狠天天| 免费视频一区二区| 欧美国产乱子伦| 欧美性做爰猛烈叫床潮| 国产不卡视频在线播放| 亚洲成a人片在线观看中文| 久久久91精品国产一区二区精品| 色伊人久久综合中文字幕| 精品一区二区三区香蕉蜜桃| 亚洲天堂免费在线观看视频| 久久综合色综合88| 欧美天堂一区二区三区| 成人免费观看视频| 青青草精品视频| 亚洲人成伊人成综合网小说| 欧美mv日韩mv| 欧美性色欧美a在线播放| 国产传媒日韩欧美成人| 人妖欧美一区二区| 亚洲综合激情另类小说区| 国产亚洲欧美日韩俺去了| 7777精品伊人久久久大香线蕉的 | 日韩精品资源二区在线| 欧美午夜一区二区三区| av中文字幕亚洲| 国产一区二区精品在线观看| 亚洲网友自拍偷拍| 玉米视频成人免费看| 中文字幕精品在线不卡| 欧美一区二区在线视频| 欧美一a一片一级一片| 国产成人av一区二区三区在线 | 国产福利91精品一区| 日本不卡免费在线视频| 亚洲午夜久久久久中文字幕久| 中文字幕一区二区日韩精品绯色| 国产亚洲成aⅴ人片在线观看| 欧美大白屁股肥臀xxxxxx| 欧美日韩免费在线视频| 色哟哟日韩精品| 色乱码一区二区三区88| 99精品桃花视频在线观看| 成人高清在线视频| 欧美一区二区三区四区五区| 午夜精品视频一区| 亚洲国产精品天堂| 亚洲一卡二卡三卡四卡无卡久久 | 在线日韩一区二区| 99久久精品情趣| jlzzjlzz欧美大全| 91影视在线播放| 91在线云播放| 欧美中文字幕亚洲一区二区va在线| 91亚洲午夜精品久久久久久| 日本精品视频一区二区三区| 欧美亚洲另类激情小说| 欧美日韩aaaaa| 宅男在线国产精品| 欧美成人在线直播| 国产亚洲精品超碰| 综合激情网...| 一区二区三区小说| 亚洲成人av一区二区| 日韩电影网1区2区| 激情综合色播激情啊| 国产精品一区二区男女羞羞无遮挡 | 美国十次综合导航| 国产乱人伦精品一区二区在线观看 | 欧美性色黄大片| 制服丝袜在线91| 日韩欧美的一区| 日本一区二区三区四区在线视频| 亚洲欧美影音先锋| 亚洲成人一区二区在线观看| 日本在线不卡一区| 国产在线视频不卡二| 波多野结衣中文字幕一区| 欧美日韩一区不卡| 91精品国产入口在线| 亚洲国产精品v| 亚洲午夜久久久久中文字幕久| 欧美日韩你懂得| 久久久一区二区三区捆绑**| 亚洲欧洲精品成人久久奇米网| 亚洲一级不卡视频| 国产精品综合二区| 欧美午夜免费电影| 欧美激情一区二区三区全黄| 亚洲午夜精品17c| 国产二区国产一区在线观看| 欧美日韩一区二区三区高清| 久久久五月婷婷| 亚洲成人在线免费| 成人性视频免费网站| 欧美日韩一区成人| 国产精品午夜在线| 日本亚洲免费观看| 99综合影院在线| 日韩精品一区二区三区三区免费| 亚洲丝袜制服诱惑| 久久国产精品色| 欧美午夜精品免费| 中文成人av在线| 久久99久久精品| 欧美日韩一区二区三区四区五区| 中文字幕视频一区二区三区久| 九色综合国产一区二区三区| 欧美日韩一区二区三区视频| 亚洲欧美另类综合偷拍| 国产精品亚洲一区二区三区在线| 7777精品伊人久久久大香线蕉超级流畅 | 7878成人国产在线观看| 国产精品人成在线观看免费| 久久精品国产久精国产| 欧美挠脚心视频网站| 亚洲精品国产一区二区精华液| 成人小视频免费观看| 精品国产成人在线影院| 亚洲影视在线观看| 色视频一区二区| 亚洲色图视频网站| av在线一区二区| 国产无人区一区二区三区| 久久精品国产精品青草| 欧美久久久一区| 亚洲午夜精品网| 欧美日韩激情一区二区三区| 一级女性全黄久久生活片免费| 91看片淫黄大片一级在线观看| 国产精品丝袜一区| 成人黄色在线网站|