LCOV - differential code coverage report
Current view: top level - src/backend/optimizer/geqo - geqo_copy.c (source / functions) Coverage Total Hit CBC
Current: Differential Code Coverage 16@8cea358b128 vs 17@8cea358b128 Lines: 100.0 % 5 5 5
Current Date: 2024-04-14 14:21:10 Functions: 100.0 % 1 1 1
Baseline: 16@8cea358b128 Branches: 100.0 % 2 2 2
Baseline Date: 2024-04-14 14:21:09 Line coverage date bins:
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed (240..) days: 100.0 % 5 5 5
Function coverage date bins:
(240..) days: 100.0 % 1 1 1
Branch coverage date bins:
(240..) days: 100.0 % 2 2 2

 Age         Owner                    Branch data    TLA  Line data    Source code
                                  1                 :                : /*------------------------------------------------------------------------
                                  2                 :                :  *
                                  3                 :                :  * geqo_copy.c
                                  4                 :                :  *
                                  5                 :                :  * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
                                  6                 :                :  * Portions Copyright (c) 1994, Regents of the University of California
                                  7                 :                :  *
                                  8                 :                :  * src/backend/optimizer/geqo/geqo_copy.c
                                  9                 :                :  *
                                 10                 :                :  *-------------------------------------------------------------------------
                                 11                 :                :  */
                                 12                 :                : 
                                 13                 :                : /* contributed by:
                                 14                 :                :    =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=
                                 15                 :                :    *  Martin Utesch              * Institute of Automatic Control      *
                                 16                 :                :    =                             = University of Mining and Technology =
                                 17                 :                :    *  utesch@aut.tu-freiberg.de  * Freiberg, Germany                   *
                                 18                 :                :    =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=
                                 19                 :                :  */
                                 20                 :                : 
                                 21                 :                : /* this is adopted from D. Whitley's Genitor algorithm */
                                 22                 :                : 
                                 23                 :                : /*************************************************************/
                                 24                 :                : /*                                                           */
                                 25                 :                : /*  Copyright (c) 1990                                       */
                                 26                 :                : /*  Darrell L. Whitley                                       */
                                 27                 :                : /*  Computer Science Department                              */
                                 28                 :                : /*  Colorado State University                                */
                                 29                 :                : /*                                                           */
                                 30                 :                : /*  Permission is hereby granted to copy all or any part of  */
                                 31                 :                : /*  this program for free distribution.   The author's name  */
                                 32                 :                : /*  and this copyright notice must be included in any copy.  */
                                 33                 :                : /*                                                           */
                                 34                 :                : /*************************************************************/
                                 35                 :                : 
                                 36                 :                : #include "postgres.h"
                                 37                 :                : #include "optimizer/geqo_copy.h"
                                 38                 :                : 
                                 39                 :                : /* geqo_copy
                                 40                 :                :  *
                                 41                 :                :  *   copies one gene to another
                                 42                 :                :  *
                                 43                 :                :  */
                                 44                 :                : void
 5386 tgl@sss.pgh.pa.us          45                 :CBC         576 : geqo_copy(PlannerInfo *root, Chromosome *chromo1, Chromosome *chromo2,
                                 46                 :                :           int string_length)
                                 47                 :                : {
                                 48                 :                :     int         i;
                                 49                 :                : 
 9716 bruce@momjian.us           50         [ +  + ]:           3456 :     for (i = 0; i < string_length; i++)
                                 51                 :           2880 :         chromo1->string[i] = chromo2->string[i];
                                 52                 :                : 
                                 53                 :            576 :     chromo1->worth = chromo2->worth;
 9916 scrappy@hub.org            54                 :            576 : }
        

Generated by: LCOV version 2.1-beta2-3-g6141622