김현우

finished for visual studio 2017

Showing 28 changed files with 24 additions and 5 deletions
1  constellation_main.cpp 1  constellation_main.cpp
2 - constellation.vcxproj -> C:\Users\bomm\Desktop\0509_team2\constellation\Debug\constellation.exe 2 + evaluate.cpp
3 + myMatrix.cpp
4 +c:\users\현우\desktop\0509_team2\constellation\constellation\mymatrix.cpp(29): warning C4101: 'temp' :참조되지 않은 지역 변수입니다.
5 + receiver.cpp
6 +c:\users\현우\desktop\0509_team2\constellation\constellation\receiver.cpp(19): warning C4244: '=': 'double'에서 'float'(으)로 변환하면서 데이터가 손실될 수 있습니다.
7 +c:\users\현우\desktop\0509_team2\constellation\constellation\receiver.cpp(20): warning C4244: '=': 'double'에서 'float'(으)로 변환하면서 데이터가 손실될 수 있습니다.
8 +c:\users\현우\desktop\0509_team2\constellation\constellation\receiver.cpp(32): warning C4244: '=': 'double'에서 'float'(으)로 변환하면서 데이터가 손실될 수 있습니다.
9 +c:\users\현우\desktop\0509_team2\constellation\constellation\receiver.cpp(33): warning C4244: '=': 'double'에서 'float'(으)로 변환하면서 데이터가 손실될 수 있습니다.
10 + sender.cpp
11 +c:\users\현우\desktop\0509_team2\constellation\constellation\sender.cpp(37): warning C4244: '=': 'double'에서 'float'(으)로 변환하면서 데이터가 손실될 수 있습니다.
12 +c:\users\현우\desktop\0509_team2\constellation\constellation\sender.cpp(40): warning C4244: '=': 'double'에서 'float'(으)로 변환하면서 데이터가 손실될 수 있습니다.
13 +c:\users\현우\desktop\0509_team2\constellation\constellation\sender.cpp(41): warning C4244: '=': 'double'에서 'float'(으)로 변환하면서 데이터가 손실될 수 있습니다.
14 +c:\users\현우\desktop\0509_team2\constellation\constellation\sender.cpp(42): warning C4244: '=': 'double'에서 'float'(으)로 변환하면서 데이터가 손실될 수 있습니다.
15 +c:\users\현우\desktop\0509_team2\constellation\constellation\sender.cpp(45): warning C4305: '=': 'double'에서 'float'(으)로 잘립니다.
16 +c:\users\현우\desktop\0509_team2\constellation\constellation\sender.cpp(46): warning C4305: '=': 'double'에서 'float'(으)로 잘립니다.
17 + channel.cpp
18 +c:\users\현우\desktop\0509_team2\constellation\constellation\channel.cpp(22): warning C4244: '=': 'double'에서 'float'(으)로 변환하면서 데이터가 손실될 수 있습니다.
19 + 코드를 생성하고 있습니다...
20 + constellation.vcxproj -> C:\Users\현우\Desktop\0509_team2\constellation\Debug\constellation.exe
......
1 -#TargetFrameworkVersion=v4.0:PlatformToolSet=v142:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0 1 +#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.16299.0
2 -Debug|Win32|C:\Users\bomm\Desktop\0509_team2\constellation\| 2 +Debug|Win32|C:\Users\현우\Desktop\0509_team2\constellation\|
......
This diff is collapsed. Click to expand it.
...@@ -21,13 +21,13 @@ ...@@ -21,13 +21,13 @@
21 <PropertyGroup Label="Globals"> 21 <PropertyGroup Label="Globals">
22 <ProjectGuid>{6FF25C27-45BF-4502-A1F8-0EFB069E1515}</ProjectGuid> 22 <ProjectGuid>{6FF25C27-45BF-4502-A1F8-0EFB069E1515}</ProjectGuid>
23 <RootNamespace>constellation</RootNamespace> 23 <RootNamespace>constellation</RootNamespace>
24 - <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion> 24 + <WindowsTargetPlatformVersion>10.0.16299.0</WindowsTargetPlatformVersion>
25 </PropertyGroup> 25 </PropertyGroup>
26 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 26 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
27 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 27 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
28 <ConfigurationType>Application</ConfigurationType> 28 <ConfigurationType>Application</ConfigurationType>
29 <UseDebugLibraries>true</UseDebugLibraries> 29 <UseDebugLibraries>true</UseDebugLibraries>
30 - <PlatformToolset>v142</PlatformToolset> 30 + <PlatformToolset>v141</PlatformToolset>
31 <CharacterSet>MultiByte</CharacterSet> 31 <CharacterSet>MultiByte</CharacterSet>
32 </PropertyGroup> 32 </PropertyGroup>
33 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> 33 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
......
1 #ifndef __SENDER 1 #ifndef __SENDER
2 #define __SENDER 2 #define __SENDER
3 #include <cmath> 3 #include <cmath>
4 +#include <ctime>
4 #include "variables.h" 5 #include "variables.h"
5 class Csender { 6 class Csender {
6 public: 7 public:
......